@@ -9,21 +9,23 @@ import (
9
9
dkeyring "github.com/99designs/keyring"
10
10
"github.com/cosmos/go-bip39"
11
11
12
+ addresscodec "cosmossdk.io/core/address"
13
+
12
14
"github.com/cosmos/cosmos-sdk/codec"
15
+ "github.com/cosmos/cosmos-sdk/codec/address"
13
16
"github.com/cosmos/cosmos-sdk/codec/types"
14
17
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec"
15
18
"github.com/cosmos/cosmos-sdk/crypto/hd"
16
19
"github.com/cosmos/cosmos-sdk/crypto/keyring"
17
20
sdktypes "github.com/cosmos/cosmos-sdk/types"
18
- "github.com/cosmos/cosmos-sdk/types/bech32"
19
21
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
20
22
21
23
"github.com/ignite/cli/v29/ignite/pkg/errors"
22
24
)
23
25
24
26
const (
25
27
// KeyringServiceName used for the name of keyring in OS backend.
26
- KeyringServiceName = "starport "
28
+ KeyringServiceName = "ignite "
27
29
28
30
// DefaultAccount is the name of the default account.
29
31
DefaultAccount = "default"
@@ -35,6 +37,7 @@ var KeyringHome = os.ExpandEnv("$HOME/.ignite/accounts")
35
37
var ErrAccountExists = errors .New ("account already exists" )
36
38
37
39
const (
40
+ CoinTypeCosmos = sdktypes .CoinType
38
41
AccountPrefixCosmos = "cosmos"
39
42
)
40
43
@@ -59,6 +62,8 @@ type Registry struct {
59
62
homePath string
60
63
keyringServiceName string
61
64
keyringBackend KeyringBackend
65
+ addressCodec addresscodec.Codec
66
+ coinType uint32
62
67
63
68
Keyring keyring.Keyring
64
69
}
@@ -84,12 +89,26 @@ func WithKeyringBackend(backend KeyringBackend) Option {
84
89
}
85
90
}
86
91
92
+ func WithBech32Prefix (prefix string ) Option {
93
+ return func (c * Registry ) {
94
+ c .addressCodec = address .NewBech32Codec (prefix )
95
+ }
96
+ }
97
+
98
+ func WithCoinType (coinType uint32 ) Option {
99
+ return func (c * Registry ) {
100
+ c .coinType = coinType
101
+ }
102
+ }
103
+
87
104
// New creates a new registry to manage accounts.
88
105
func New (options ... Option ) (Registry , error ) {
89
106
r := Registry {
90
107
keyringServiceName : sdktypes .KeyringServiceName (),
91
108
keyringBackend : KeyringTest ,
92
109
homePath : KeyringHome ,
110
+ addressCodec : address .NewBech32Codec (AccountPrefixCosmos ),
111
+ coinType : CoinTypeCosmos ,
93
112
}
94
113
95
114
for _ , apply := range options {
@@ -146,7 +165,13 @@ func (a Account) Address(accPrefix string) (string, error) {
146
165
return "" , err
147
166
}
148
167
149
- return toBech32 (accPrefix , pk .Address ())
168
+ addressCodec := address .NewBech32Codec (accPrefix )
169
+ addr , err := addressCodec .BytesToString (pk .Address ())
170
+ if err != nil {
171
+ return "" , err
172
+ }
173
+
174
+ return addr , nil
150
175
}
151
176
152
177
// PubKey returns a public key for account.
@@ -159,14 +184,6 @@ func (a Account) PubKey() (string, error) {
159
184
return pk .String (), nil
160
185
}
161
186
162
- func toBech32 (prefix string , addr []byte ) (string , error ) {
163
- bech32Addr , err := bech32 .ConvertAndEncode (prefix , addr )
164
- if err != nil {
165
- return "" , err
166
- }
167
- return bech32Addr , nil
168
- }
169
-
170
187
// EnsureDefaultAccount ensures that default account exists.
171
188
func (r Registry ) EnsureDefaultAccount () error {
172
189
_ , err := r .GetByName (DefaultAccount )
@@ -289,11 +306,11 @@ func (r Registry) GetByName(name string) (Account, error) {
289
306
290
307
// GetByAddress returns an account by its address.
291
308
func (r Registry ) GetByAddress (address string ) (Account , error ) {
292
- sdkAddr , err := sdktypes . AccAddressFromBech32 (address )
309
+ sdkAddr , err := r . addressCodec . StringToBytes (address )
293
310
if err != nil {
294
311
return Account {}, err
295
312
}
296
- record , err := r .Keyring .KeyByAddress (sdkAddr )
313
+ record , err := r .Keyring .KeyByAddress (sdktypes . AccAddress ( sdkAddr ) )
297
314
if errors .Is (err , dkeyring .ErrKeyNotFound ) || errors .Is (err , sdkerrors .ErrKeyNotFound ) {
298
315
return Account {}, & AccountDoesNotExistError {address }
299
316
}
@@ -335,7 +352,7 @@ func (r Registry) DeleteByName(name string) error {
335
352
}
336
353
337
354
func (r Registry ) hdPath () string {
338
- return hd .CreateHDPath (sdktypes . CoinType , 0 , 0 ).String ()
355
+ return hd .CreateHDPath (r . coinType , 0 , 0 ).String ()
339
356
}
340
357
341
358
func (r Registry ) algo () (keyring.SignatureAlgo , error ) {
0 commit comments