forked from irisnet/irisnet-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
122 lines (122 loc) · 2.91 KB
/
config.json
File metadata and controls
122 lines (122 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"iris": {
"tx": {
"transfer": {
"type": "transfer",
"prefix": "irishub/bank/Send"
},
"delegate": {
"type": "delegate",
"prefix": "irishub/stake/MsgDelegate"
},
"undelegate": {
"type": "begin_unbonding",
"prefix": "irishub/stake/BeginUnbonding"
},
"redelegate": {
"type": "redelegate",
"prefix": "irishub/stake/BeginRedelegate"
},
"withdrawDelegationRewardsAll": {
"type": "withdraw_delegation_rewards_all",
"prefix": "irishub/distr/MsgWithdrawDelegationRewardsAll"
},
"withdrawDelegationReward": {
"type": "withdraw_delegation_reward",
"prefix": "irishub/distr/MsgWithdrawDelegationReward"
},
"stdTx": {
"type": "",
"prefix": "irishub/bank/StdTx"
}
},
"mode":{
"try": "try",
"normal": "normal"
},
"bech32": {
"accAddr": "iaa",
"valAddr": "iva",
"accPub": "iap"
},
"defaultCoding": "bech32",
"coding": {
"bech32": "bech32",
"hex": "hex"
},
"maxGas": 20000000,
"amino": {
"signature": "tendermint/SignatureSecp256k1",
"pubKey": "tendermint/PubKeySecp256k1"
},
"bip39Path": "44'/118'/0'/0/0",
"keystore": {
"kdf": "pbkdf2",
"cipherAlg": "aes-128-ctr",
"c": 262144
}
},
"cosmos": {
"tx":{
"transfer": {
"type": "transfer",
"prefix": "cosmos-sdk/MsgSend"
},
"delegate": {
"type": "delegate",
"prefix": "cosmos-sdk/MsgDelegate"
},
"undelegate": {
"type": "undelegate",
"prefix": "cosmos-sdk/MsgUndelegate"
},
"beginRedelegate": {
"type": "begin_redelegate",
"prefix": "cosmos-sdk/MsgBeginRedelegate"
},
"setWithdrawAddress": {
"type": "set_withdraw_address",
"prefix": "cosmos-sdk/MsgModifyWithdrawAddress"
},
"withdrawDelegatorReward": {
"type": "withdraw_delegation_reward",
"prefix": "cosmos-sdk/MsgWithdrawDelegationReward"
},
"withdrawValidatorCommission": {
"type": "withdraw_validator_commission",
"prefix": "cosmos-sdk/MsgWithdrawValidatorCommission"
},
"stdTx": {
"type": "stdTx",
"prefix": "auth/StdTx"
}
},
"bech32": {
"accAddr": "cosmos",
"valAddr": "cosmosvaloper",
"accPub": "cosmospub"
},
"defaultCoding": "bech32",
"coding": {
"bech32": "bech32",
"hex": "hex"
},
"maxGas": 20000000,
"amino": {
"signature": "tendermint/SignatureSecp256k1",
"pubKey": "tendermint/PubKeySecp256k1"
},
"bip39Path": "44'/118'/0'/0/0"
},
"language": {
"cn": "chinese_simplified",
"jp": "japanese",
"sp": "spanish",
"en": "english"
},
"chain": {
"iris": "iris",
"ethermint": "ethermint",
"cosmos": "cosmos"
}
}