chain-registry 2.0.87 → 2.0.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/mainnet/atomone/ibc-data.js +62 -0
- package/esm/mainnet/axelar/asset-list.js +1 -2
- package/esm/mainnet/axelar/ibc-data.js +31 -0
- package/esm/mainnet/composable/asset-list.js +1 -1
- package/esm/mainnet/cosmoshub/asset-list.js +50 -1
- package/esm/mainnet/cosmoshub/chain.js +12 -12
- package/esm/mainnet/dungeon/ibc-data.js +62 -0
- package/esm/mainnet/ethereum/asset-list.js +23 -0
- package/esm/mainnet/fandomchain/chain.js +1 -1
- package/esm/mainnet/fandomchain/ibc-data.js +3 -3
- package/esm/mainnet/neutron/ibc-data.js +31 -0
- package/esm/mainnet/oraichain/asset-list.js +1 -1
- package/esm/mainnet/osmosis/asset-list.js +1 -1
- package/esm/mainnet/osmosis/ibc-data.js +3 -3
- package/esm/mainnet/terra2/asset-list.js +59 -2
- package/esm/mainnet/zigchain/asset-list.js +9 -2
- package/esm/testnet/asset-lists.js +2 -0
- package/esm/testnet/atomonetestnet/ibc-data.js +32 -0
- package/esm/testnet/atomonetestnet/index.js +2 -0
- package/esm/testnet/axelartestnet/ibc-data.js +31 -0
- package/esm/testnet/babylontestnet/asset-list.js +4 -4
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/daodiseotestnet/asset-list.js +32 -0
- package/esm/testnet/daodiseotestnet/chain.js +267 -0
- package/esm/testnet/daodiseotestnet/index.js +4 -0
- package/esm/testnet/ibc-data.js +2 -0
- package/esm/testnet/zigchaintestnet/asset-list.js +32 -6
- package/esm/testnet/zigchaintestnet/chain.js +4 -4
- package/mainnet/atomone/ibc-data.js +62 -0
- package/mainnet/axelar/asset-list.js +1 -2
- package/mainnet/axelar/ibc-data.js +31 -0
- package/mainnet/composable/asset-list.js +1 -1
- package/mainnet/cosmoshub/asset-list.js +50 -1
- package/mainnet/cosmoshub/chain.js +12 -12
- package/mainnet/dungeon/ibc-data.js +62 -0
- package/mainnet/ethereum/asset-list.js +23 -0
- package/mainnet/fandomchain/chain.js +1 -1
- package/mainnet/fandomchain/ibc-data.js +3 -3
- package/mainnet/neutron/ibc-data.js +31 -0
- package/mainnet/oraichain/asset-list.js +1 -1
- package/mainnet/osmosis/asset-list.js +1 -1
- package/mainnet/osmosis/ibc-data.js +3 -3
- package/mainnet/terra2/asset-list.js +59 -2
- package/mainnet/zigchain/asset-list.js +9 -2
- package/package.json +3 -3
- package/testnet/asset-lists.js +2 -0
- package/testnet/atomonetestnet/ibc-data.d.ts +3 -0
- package/testnet/atomonetestnet/ibc-data.js +34 -0
- package/testnet/atomonetestnet/index.d.ts +1 -0
- package/testnet/atomonetestnet/index.js +3 -1
- package/testnet/axelartestnet/ibc-data.js +31 -0
- package/testnet/babylontestnet/asset-list.js +4 -4
- package/testnet/chains.js +2 -0
- package/testnet/daodiseotestnet/asset-list.d.ts +3 -0
- package/testnet/daodiseotestnet/asset-list.js +34 -0
- package/testnet/daodiseotestnet/chain.d.ts +3 -0
- package/testnet/daodiseotestnet/chain.js +269 -0
- package/testnet/daodiseotestnet/index.d.ts +2 -0
- package/testnet/daodiseotestnet/index.js +10 -0
- package/testnet/ibc-data.js +2 -0
- package/testnet/zigchaintestnet/asset-list.js +32 -6
- package/testnet/zigchaintestnet/chain.js +4 -4
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../chain.schema.json',
|
|
5
|
+
chainName: 'daodiseotestnet',
|
|
6
|
+
chainType: 'cosmos',
|
|
7
|
+
chainId: 'ithaca-1',
|
|
8
|
+
prettyName: 'DAODISEO Testnet',
|
|
9
|
+
status: 'live',
|
|
10
|
+
networkType: 'testnet',
|
|
11
|
+
website: 'https://daodiseo.money',
|
|
12
|
+
bech32Prefix: 'odiseo',
|
|
13
|
+
daemonName: 'achillesd',
|
|
14
|
+
nodeHome: '.achillesd',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'uodis',
|
|
20
|
+
fixedMinGasPrice: 0.025,
|
|
21
|
+
lowGasPrice: 0.01,
|
|
22
|
+
averageGasPrice: 0.025,
|
|
23
|
+
highGasPrice: 0.04
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
stakingTokens: [{
|
|
28
|
+
denom: 'uodis'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
apis: {
|
|
32
|
+
rpc: [
|
|
33
|
+
{
|
|
34
|
+
address: 'https://odiseo-testnet-rpc.polkachu.com:443',
|
|
35
|
+
provider: 'Polkachu'
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
address: 'https://rpc-testnet-daodiseo.nodeist.net:443',
|
|
39
|
+
provider: 'Nodeist'
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
address: 'https://daodiseo-testnet-rpc.stakerhouse.com',
|
|
43
|
+
provider: 'StakerHouse'
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
address: 'https://odiseo-testnet-rpc.bonynode.online',
|
|
47
|
+
provider: 'BonyNode'
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
address: 'https://odiseo_testnet_rpc.chain.whenmoonwhenlambo.money',
|
|
51
|
+
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
address: 'https://odiseo-testnet.rpc.stakevillage.net:443',
|
|
55
|
+
provider: 'Stake Village'
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
address: 'https://rpc.odiseo-testnet.irynamcc.co.uk:443 ',
|
|
59
|
+
provider: 'Iryna'
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
address: 'https://daodiseo-testnet.rpc.mrsml.fun:443',
|
|
63
|
+
provider: 'Mrs_ml'
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
address: 'https://odiseo-testnet.rpc.sbgid.com:443',
|
|
67
|
+
provider: 'SbGid'
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
address: 'https://rpc-daodiseo.dnsarz.xyz',
|
|
71
|
+
provider: 'dnsarz'
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
address: 'https://rpc-test.odiseo.vinjan.xyz',
|
|
75
|
+
provider: 'Vinjan.Inc'
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
address: 'https://rpc.odiseo-testnet.liora.fun:443',
|
|
79
|
+
provider: 'Monika'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
address: 'https://odiseo-rpctest.codeblocklabs.com',
|
|
83
|
+
provider: 'CodeBlockLabs'
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
address: 'https://testnet-rpc.daodiseo.chaintools.tech:443',
|
|
87
|
+
provider: 'ChainTools'
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
address: 'https://rpc.odiseo-t.nodevism.com',
|
|
91
|
+
provider: 'Nodevism'
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
address: 'https://odiseo.blocksync.me/rpc',
|
|
95
|
+
provider: 'BlockSync'
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
rest: [
|
|
99
|
+
{
|
|
100
|
+
address: 'https://odiseo-testnet-api.polkachu.com:443',
|
|
101
|
+
provider: 'Polkachu'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
address: 'https://daodiseo-testnet-rest.stakerhouse.com',
|
|
105
|
+
provider: 'StakerHouse'
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
address: 'https://odiseo-testnet-api.bonynode.online',
|
|
109
|
+
provider: 'BonyNode'
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
address: 'https://odiseo_testnet_api.chain.whenmoonwhenlambo.money',
|
|
113
|
+
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
address: 'https://odiseo-testnet.api.stakevillage.net',
|
|
117
|
+
provider: 'Stake Village'
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
address: 'https://api.odiseo-testnet.irynamcc.co.uk',
|
|
121
|
+
provider: 'Iryna'
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
address: 'https://daodiseo-testnet.api.mrsml.fun',
|
|
125
|
+
provider: 'Mrs_ml'
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
address: 'https://odiseo-testnet.api.sbgid.com',
|
|
129
|
+
provider: 'SbGid'
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
address: 'https://api-daodiseo.dnsarz.xyz',
|
|
133
|
+
provider: 'dnsarz'
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
address: 'https://api-test.odiseo.vinjan.xyz',
|
|
137
|
+
provider: 'Vinjan.Inc'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
address: 'https://api.odiseo-testnet.liora.fun',
|
|
141
|
+
provider: 'Monika'
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
address: 'https://api.odiseo-t.nodevism.com',
|
|
145
|
+
provider: 'Nodevism'
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
address: 'https://odiseo-apitest.codeblocklabs.com',
|
|
149
|
+
provider: 'CodeBlockLabs'
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
address: 'https://testnet-api.daodiseo.chaintools.tech:443',
|
|
153
|
+
provider: 'ChainTools'
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
address: 'https://odiseo.blocksync.me/api',
|
|
157
|
+
provider: 'BlockSync'
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
grpc: [
|
|
161
|
+
{
|
|
162
|
+
address: 'odiseo-testnet-grpc.polkachu.com:31390',
|
|
163
|
+
provider: 'Polkachu'
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
address: 'daodiseo-testnet-grpc.stakerhouse.com:443',
|
|
167
|
+
provider: 'StakerHouse'
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
address: ' grpc.odiseo-testnet.irynamcc.co.uk:443',
|
|
171
|
+
provider: 'Iryna'
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
address: 'odiseo-testnet.grpc.stakevillage.net:443',
|
|
175
|
+
provider: 'Stake Village'
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
address: 'daodiseo-testnet.grpc.mrsml.fun:443',
|
|
179
|
+
provider: 'Mrs_ml'
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
address: 'odiseo-testnet.grpc.sbgid.com:443',
|
|
183
|
+
provider: 'SbGid'
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
address: 'https://grpc.odiseo-testnet.liora.fun:443',
|
|
187
|
+
provider: 'Monika'
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
address: 'grpc-test.odiseo.vinjan.xyz:28090',
|
|
191
|
+
provider: 'Vinjan.Inc'
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
address: 'https://testnet-grpc.daodiseo.chaintools.tech:443',
|
|
195
|
+
provider: 'ChainTools'
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
address: 'https://odiseo.blocksync.me:24090',
|
|
199
|
+
provider: 'BlockSync'
|
|
200
|
+
}
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
explorers: [
|
|
204
|
+
{
|
|
205
|
+
kind: 'cosmotracker',
|
|
206
|
+
url: 'https://testnet.cosmotracker.com/daodiseo',
|
|
207
|
+
txPage: 'https://testnet.cosmotracker.com/daodiseo/tx/${txHash}',
|
|
208
|
+
accountPage: 'https://testnet.cosmotracker.com/daodiseo/account/${accountAddress}'
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
kind: 'bony-explorer',
|
|
212
|
+
url: 'https://explorer.bonynode.online/odiseo/staking',
|
|
213
|
+
txPage: 'https://explorer.bonynode.online/odiseo/tx/${txHash}',
|
|
214
|
+
accountPage: 'https://explorer.bonynode.online/odiseo/account/${accountAddress}'
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
kind: 'Stake Village',
|
|
218
|
+
url: 'https://exp.stakevillage.net/odiseo-testnet',
|
|
219
|
+
txPage: 'https://exp.stakevillage.net/odiseo-testnet/txs/${txHash}',
|
|
220
|
+
accountPage: 'https://exp.stakevillage.net/odiseo-testnet/account/${accountAddress}'
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
kind: 'SbGid',
|
|
224
|
+
url: 'https://exp.sbgid.com/odiseo-testnet',
|
|
225
|
+
txPage: 'https://exp.sbgid.com/odiseo-testnet/txs/${txHash}',
|
|
226
|
+
accountPage: 'https://exp.sbgid.com/odiseo-testnet/account/${accountAddress}'
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
kind: 'dnsarz',
|
|
230
|
+
url: 'https://ping.dnsarz.xyz/daodiseo-testnet',
|
|
231
|
+
txPage: 'https://ping.dnsarz.xyz/daodiseo-testnet/txs/${txHash}',
|
|
232
|
+
accountPage: 'https://ping.dnsarz.xyz/daodiseo-testnet/account/${accountAddress}'
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
kind: 'CodeBlockLabs',
|
|
236
|
+
url: 'https://explorer.codeblocklabs.com/odiseo-testnet',
|
|
237
|
+
txPage: 'https://explorer.codeblocklabs.com/odiseo-testnet/txs/${txHash}',
|
|
238
|
+
accountPage: 'https://explorer.codeblocklabs.com/odiseo-testnet/account/${accountAddress}'
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
kind: 'Vinjan.Inc',
|
|
242
|
+
url: 'https://xplorer.vinjan.xyz/odiseo-testnet',
|
|
243
|
+
txPage: 'https://xplorer.vinjan.xyz/odiseo-testnet/txs/${txHash}',
|
|
244
|
+
accountPage: 'https://xplorer.vinjan.xyz/odiseo-testnet/account/${accountAddress}'
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
kind: 'ChainTools',
|
|
248
|
+
url: 'https://testnet.explorer.chaintools.tech/odiseo',
|
|
249
|
+
txPage: 'https://testnet.explorer.chaintools.tech/odiseo/txs/${txHash}',
|
|
250
|
+
accountPage: 'https://testnet.explorer.chaintools.tech/odiseo/account/${accountAddress}'
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
254
|
+
url: 'https://explorer.whenmoonwhenlambo.money/odiseo-testnet',
|
|
255
|
+
txPage: 'https://explorer.whenmoonwhenlambo.money/odiseo-testnet/tx/${txHash}',
|
|
256
|
+
accountPage: 'https://explorer.whenmoonwhenlambo.money/odiseo-testnet/account/${accountAddress}'
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
kind: 'BlockSync Dashboard',
|
|
260
|
+
url: 'https://dashboard.blocksync.me/odiseo',
|
|
261
|
+
txPage: 'https://dashboard.blocksync.me/odiseo/tx/${txHash}',
|
|
262
|
+
accountPage: 'https://dashboard.blocksync.me/odiseo/account/${accountAddress}'
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
logoURIs: {
|
|
266
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/daodiseotestnet/images/odiseo.svg'
|
|
267
|
+
}
|
|
268
|
+
};
|
|
269
|
+
exports.default = info;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.chain = exports.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assetList = asset_list_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
package/testnet/ibc-data.js
CHANGED
|
@@ -25,6 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
const _agoricdevnet = __importStar(require("./agoricdevnet"));
|
|
27
27
|
const _archwaytestnet = __importStar(require("./archwaytestnet"));
|
|
28
|
+
const _atomonetestnet = __importStar(require("./atomonetestnet"));
|
|
28
29
|
const _axelartestnet = __importStar(require("./axelartestnet"));
|
|
29
30
|
const _babylontestnet = __importStar(require("./babylontestnet"));
|
|
30
31
|
const _celestiatestnet3 = __importStar(require("./celestiatestnet3"));
|
|
@@ -75,6 +76,7 @@ const _zigchaintestnet = __importStar(require("./zigchaintestnet"));
|
|
|
75
76
|
const ibcData = [
|
|
76
77
|
..._agoricdevnet.ibcData,
|
|
77
78
|
..._archwaytestnet.ibcData,
|
|
79
|
+
..._atomonetestnet.ibcData,
|
|
78
80
|
..._axelartestnet.ibcData,
|
|
79
81
|
..._babylontestnet.ibcData,
|
|
80
82
|
..._celestiatestnet3.ibcData,
|
|
@@ -26,6 +26,14 @@ const info = {
|
|
|
26
26
|
name: 'ZIG',
|
|
27
27
|
display: 'zig',
|
|
28
28
|
symbol: 'ZIG',
|
|
29
|
+
traces: [{
|
|
30
|
+
type: 'test-mintage',
|
|
31
|
+
counterparty: {
|
|
32
|
+
chainName: 'zigchain',
|
|
33
|
+
baseDenom: 'uzig'
|
|
34
|
+
},
|
|
35
|
+
provider: 'ZIGChain'
|
|
36
|
+
}],
|
|
29
37
|
coingeckoId: 'zignaly',
|
|
30
38
|
keywords: [
|
|
31
39
|
'zigchain',
|
|
@@ -36,12 +44,16 @@ const info = {
|
|
|
36
44
|
'defi'
|
|
37
45
|
],
|
|
38
46
|
logoURIs: {
|
|
39
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
40
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
47
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
|
|
48
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
|
|
41
49
|
},
|
|
42
50
|
images: [{
|
|
43
|
-
|
|
44
|
-
|
|
51
|
+
imageSync: {
|
|
52
|
+
chainName: 'zigchain',
|
|
53
|
+
baseDenom: 'uzig'
|
|
54
|
+
},
|
|
55
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
|
|
56
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
|
|
45
57
|
}],
|
|
46
58
|
typeAsset: 'sdk.coin',
|
|
47
59
|
socials: {
|
|
@@ -65,11 +77,25 @@ const info = {
|
|
|
65
77
|
name: 'Staked Zig',
|
|
66
78
|
display: 'stzig',
|
|
67
79
|
symbol: 'STZIG',
|
|
80
|
+
traces: [{
|
|
81
|
+
type: 'test-mintage',
|
|
82
|
+
counterparty: {
|
|
83
|
+
chainName: 'zigchain',
|
|
84
|
+
baseDenom: 'coin.zig109f7g2rzl2aqee7z6gffn8kfe9cpqx0mjkk7ethmx8m2hq4xpe9snmaam2.stzig'
|
|
85
|
+
},
|
|
86
|
+
provider: 'ZIGChain'
|
|
87
|
+
}],
|
|
68
88
|
logoURIs: {
|
|
69
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
89
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/stzig.png',
|
|
90
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/stzig.svg'
|
|
70
91
|
},
|
|
71
92
|
images: [{
|
|
72
|
-
|
|
93
|
+
imageSync: {
|
|
94
|
+
chainName: 'zigchain',
|
|
95
|
+
baseDenom: 'coin.zig109f7g2rzl2aqee7z6gffn8kfe9cpqx0mjkk7ethmx8m2hq4xpe9snmaam2.stzig'
|
|
96
|
+
},
|
|
97
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/stzig.png',
|
|
98
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/stzig.svg'
|
|
73
99
|
}],
|
|
74
100
|
typeAsset: 'sdk.coin',
|
|
75
101
|
socials: {
|
|
@@ -13,8 +13,8 @@ const info = {
|
|
|
13
13
|
daemonName: 'zigchaind',
|
|
14
14
|
nodeHome: '$HOME/.zigchain',
|
|
15
15
|
logoURIs: {
|
|
16
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
17
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
16
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
|
|
17
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
|
|
18
18
|
},
|
|
19
19
|
keyAlgos: ['secp256k1'],
|
|
20
20
|
slip44: 118,
|
|
@@ -109,8 +109,8 @@ const info = {
|
|
|
109
109
|
chainName: 'zigchaintestnet',
|
|
110
110
|
baseDenom: 'uzig'
|
|
111
111
|
},
|
|
112
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
113
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
112
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
|
|
113
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
|
|
114
114
|
}]
|
|
115
115
|
};
|
|
116
116
|
exports.default = info;
|