github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/tm2/pkg/crypto/keys/client/common.go (about)

     1  package client
     2  
     3  type BaseOptions struct {
     4  	Home                  string
     5  	Remote                string
     6  	Quiet                 bool
     7  	InsecurePasswordStdin bool
     8  	Config                string
     9  }
    10  
    11  var DefaultBaseOptions = BaseOptions{
    12  	Home:                  "",
    13  	Remote:                "127.0.0.1:26657",
    14  	Quiet:                 false,
    15  	InsecurePasswordStdin: false,
    16  	Config:                "",
    17  }