github.com/0xPolygon/supernets2-node@v0.0.0-20230711153321-2fe574524eaa/config/types/keystore.go (about) 1 package types 2 3 // KeystoreFileConfig has all the information needed to load a private key from a key store file 4 type KeystoreFileConfig struct { 5 // Path is the file path for the key store file 6 Path string `mapstructure:"Path"` 7 8 // Password is the password to decrypt the key store file 9 Password string `mapstructure:"Password"` 10 }