Skip to content

Commit bae592e

Browse files
authored
Merge pull request #49 from renproject/fix/cosmos-chain-prefix
fix: set prefix in cosmos client
2 parents 3774a79 + 591a8ab commit bae592e

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

chain/cosmos/client.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,11 @@ type Client struct {
9595
opts ClientOptions
9696
cliCtx cliContext.CLIContext
9797
cdc *codec.Codec
98+
hrp string
9899
}
99100

100101
// 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 {
102103
httpClient, err := rpchttp.NewWithTimeout(opts.Host.String(), "websocket", uint(opts.Timeout/time.Second))
103104
if err != nil {
104105
panic(err)
@@ -110,6 +111,7 @@ func NewClient(opts ClientOptions, cdc *codec.Codec) *Client {
110111
opts: opts,
111112
cliCtx: cliCtx,
112113
cdc: cdc,
114+
hrp: hrp,
113115
}
114116
}
115117

@@ -155,6 +157,8 @@ func (client *Client) SubmitTx(ctx context.Context, tx account.Tx) error {
155157
// AccountNonce returns the current nonce of the account. This is the nonce to
156158
// be used while building a new transaction.
157159
func (client *Client) AccountNonce(_ context.Context, addr address.Address) (pack.U256, error) {
160+
types.GetConfig().SetBech32PrefixForAccount(client.hrp, client.hrp+"pub")
161+
158162
cosmosAddr, err := types.AccAddressFromBech32(string(addr))
159163
if err != nil {
160164
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
171175

172176
// AccountNumber returns the account number for a given address.
173177
func (client *Client) AccountNumber(_ context.Context, addr address.Address) (pack.U64, error) {
178+
types.GetConfig().SetBech32PrefixForAccount(client.hrp, client.hrp+"pub")
179+
174180
cosmosAddr, err := types.AccAddressFromBech32(string(addr))
175181
if err != nil {
176182
return 0, fmt.Errorf("bad address: '%v': %v", addr, err)

chain/cosmos/tx.go

+2
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ func NewTxBuilder(options TxBuilderOptions, client *Client) account.TxBuilder {
6565
// This transaction is unsigned, and must be signed before submitting to the
6666
// cosmos chain.
6767
func (builder txBuilder) BuildTx(ctx context.Context, from, to address.Address, value, nonce, gasLimit, gasPrice, gasCap pack.U256, payload pack.Bytes) (account.Tx, error) {
68+
types.GetConfig().SetBech32PrefixForAccount(builder.client.hrp, builder.client.hrp+"pub")
69+
6870
fromAddr, err := types.AccAddressFromBech32(string(from))
6971
if err != nil {
7072
return nil, err

chain/terra/terra.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var (
3030

3131
// NewClient returns returns a new Client with Terra codec.
3232
func NewClient(opts ClientOptions) *Client {
33-
return cosmos.NewClient(opts, app.MakeCodec())
33+
return cosmos.NewClient(opts, app.MakeCodec(), "terra")
3434
}
3535

3636
// NewTxBuilder returns an implementation of the transaction builder interface

0 commit comments

Comments
 (0)