@@ -95,10 +95,11 @@ type Client struct {
95
95
opts ClientOptions
96
96
cliCtx cliContext.CLIContext
97
97
cdc * codec.Codec
98
+ hrp string
98
99
}
99
100
100
101
// NewClient returns a new Client.
101
- func NewClient (opts ClientOptions , cdc * codec.Codec ) * Client {
102
+ func NewClient (opts ClientOptions , cdc * codec.Codec , hrp string ) * Client {
102
103
httpClient , err := rpchttp .NewWithTimeout (opts .Host .String (), "websocket" , uint (opts .Timeout / time .Second ))
103
104
if err != nil {
104
105
panic (err )
@@ -110,6 +111,7 @@ func NewClient(opts ClientOptions, cdc *codec.Codec) *Client {
110
111
opts : opts ,
111
112
cliCtx : cliCtx ,
112
113
cdc : cdc ,
114
+ hrp : hrp ,
113
115
}
114
116
}
115
117
@@ -155,6 +157,8 @@ func (client *Client) SubmitTx(ctx context.Context, tx account.Tx) error {
155
157
// AccountNonce returns the current nonce of the account. This is the nonce to
156
158
// be used while building a new transaction.
157
159
func (client * Client ) AccountNonce (_ context.Context , addr address.Address ) (pack.U256 , error ) {
160
+ types .GetConfig ().SetBech32PrefixForAccount (client .hrp , client .hrp + "pub" )
161
+
158
162
cosmosAddr , err := types .AccAddressFromBech32 (string (addr ))
159
163
if err != nil {
160
164
return pack.U256 {}, fmt .Errorf ("bad address: '%v': %v" , addr , err )
@@ -171,6 +175,8 @@ func (client *Client) AccountNonce(_ context.Context, addr address.Address) (pac
171
175
172
176
// AccountNumber returns the account number for a given address.
173
177
func (client * Client ) AccountNumber (_ context.Context , addr address.Address ) (pack.U64 , error ) {
178
+ types .GetConfig ().SetBech32PrefixForAccount (client .hrp , client .hrp + "pub" )
179
+
174
180
cosmosAddr , err := types .AccAddressFromBech32 (string (addr ))
175
181
if err != nil {
176
182
return 0 , fmt .Errorf ("bad address: '%v': %v" , addr , err )
0 commit comments