chain-registry 2.0.87 → 2.0.88
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 +31 -0
- 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 +31 -0
- package/esm/mainnet/ethereum/asset-list.js +23 -0
- 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/terra2/asset-list.js +59 -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/mainnet/atomone/ibc-data.js +31 -0
- 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 +31 -0
- package/mainnet/ethereum/asset-list.js +23 -0
- 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/terra2/asset-list.js +59 -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
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chainName: 'daodiseotestnet',
|
|
4
|
+
chainType: 'cosmos',
|
|
5
|
+
chainId: 'ithaca-1',
|
|
6
|
+
prettyName: 'DAODISEO Testnet',
|
|
7
|
+
status: 'live',
|
|
8
|
+
networkType: 'testnet',
|
|
9
|
+
website: 'https://daodiseo.money',
|
|
10
|
+
bech32Prefix: 'odiseo',
|
|
11
|
+
daemonName: 'achillesd',
|
|
12
|
+
nodeHome: '.achillesd',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'uodis',
|
|
18
|
+
fixedMinGasPrice: 0.025,
|
|
19
|
+
lowGasPrice: 0.01,
|
|
20
|
+
averageGasPrice: 0.025,
|
|
21
|
+
highGasPrice: 0.04
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'uodis'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
apis: {
|
|
30
|
+
rpc: [
|
|
31
|
+
{
|
|
32
|
+
address: 'https://odiseo-testnet-rpc.polkachu.com:443',
|
|
33
|
+
provider: 'Polkachu'
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
address: 'https://rpc-testnet-daodiseo.nodeist.net:443',
|
|
37
|
+
provider: 'Nodeist'
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
address: 'https://daodiseo-testnet-rpc.stakerhouse.com',
|
|
41
|
+
provider: 'StakerHouse'
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
address: 'https://odiseo-testnet-rpc.bonynode.online',
|
|
45
|
+
provider: 'BonyNode'
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
address: 'https://odiseo_testnet_rpc.chain.whenmoonwhenlambo.money',
|
|
49
|
+
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
address: 'https://odiseo-testnet.rpc.stakevillage.net:443',
|
|
53
|
+
provider: 'Stake Village'
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
address: 'https://rpc.odiseo-testnet.irynamcc.co.uk:443 ',
|
|
57
|
+
provider: 'Iryna'
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
address: 'https://daodiseo-testnet.rpc.mrsml.fun:443',
|
|
61
|
+
provider: 'Mrs_ml'
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
address: 'https://odiseo-testnet.rpc.sbgid.com:443',
|
|
65
|
+
provider: 'SbGid'
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
address: 'https://rpc-daodiseo.dnsarz.xyz',
|
|
69
|
+
provider: 'dnsarz'
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
address: 'https://rpc-test.odiseo.vinjan.xyz',
|
|
73
|
+
provider: 'Vinjan.Inc'
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
address: 'https://rpc.odiseo-testnet.liora.fun:443',
|
|
77
|
+
provider: 'Monika'
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
address: 'https://odiseo-rpctest.codeblocklabs.com',
|
|
81
|
+
provider: 'CodeBlockLabs'
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
address: 'https://testnet-rpc.daodiseo.chaintools.tech:443',
|
|
85
|
+
provider: 'ChainTools'
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
address: 'https://rpc.odiseo-t.nodevism.com',
|
|
89
|
+
provider: 'Nodevism'
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
address: 'https://odiseo.blocksync.me/rpc',
|
|
93
|
+
provider: 'BlockSync'
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
rest: [
|
|
97
|
+
{
|
|
98
|
+
address: 'https://odiseo-testnet-api.polkachu.com:443',
|
|
99
|
+
provider: 'Polkachu'
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
address: 'https://daodiseo-testnet-rest.stakerhouse.com',
|
|
103
|
+
provider: 'StakerHouse'
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
address: 'https://odiseo-testnet-api.bonynode.online',
|
|
107
|
+
provider: 'BonyNode'
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
address: 'https://odiseo_testnet_api.chain.whenmoonwhenlambo.money',
|
|
111
|
+
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
address: 'https://odiseo-testnet.api.stakevillage.net',
|
|
115
|
+
provider: 'Stake Village'
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
address: 'https://api.odiseo-testnet.irynamcc.co.uk',
|
|
119
|
+
provider: 'Iryna'
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
address: 'https://daodiseo-testnet.api.mrsml.fun',
|
|
123
|
+
provider: 'Mrs_ml'
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
address: 'https://odiseo-testnet.api.sbgid.com',
|
|
127
|
+
provider: 'SbGid'
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
address: 'https://api-daodiseo.dnsarz.xyz',
|
|
131
|
+
provider: 'dnsarz'
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
address: 'https://api-test.odiseo.vinjan.xyz',
|
|
135
|
+
provider: 'Vinjan.Inc'
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
address: 'https://api.odiseo-testnet.liora.fun',
|
|
139
|
+
provider: 'Monika'
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
address: 'https://api.odiseo-t.nodevism.com',
|
|
143
|
+
provider: 'Nodevism'
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
address: 'https://odiseo-apitest.codeblocklabs.com',
|
|
147
|
+
provider: 'CodeBlockLabs'
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
address: 'https://testnet-api.daodiseo.chaintools.tech:443',
|
|
151
|
+
provider: 'ChainTools'
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
address: 'https://odiseo.blocksync.me/api',
|
|
155
|
+
provider: 'BlockSync'
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
grpc: [
|
|
159
|
+
{
|
|
160
|
+
address: 'odiseo-testnet-grpc.polkachu.com:31390',
|
|
161
|
+
provider: 'Polkachu'
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
address: 'daodiseo-testnet-grpc.stakerhouse.com:443',
|
|
165
|
+
provider: 'StakerHouse'
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
address: ' grpc.odiseo-testnet.irynamcc.co.uk:443',
|
|
169
|
+
provider: 'Iryna'
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
address: 'odiseo-testnet.grpc.stakevillage.net:443',
|
|
173
|
+
provider: 'Stake Village'
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
address: 'daodiseo-testnet.grpc.mrsml.fun:443',
|
|
177
|
+
provider: 'Mrs_ml'
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
address: 'odiseo-testnet.grpc.sbgid.com:443',
|
|
181
|
+
provider: 'SbGid'
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
address: 'https://grpc.odiseo-testnet.liora.fun:443',
|
|
185
|
+
provider: 'Monika'
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
address: 'grpc-test.odiseo.vinjan.xyz:28090',
|
|
189
|
+
provider: 'Vinjan.Inc'
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
address: 'https://testnet-grpc.daodiseo.chaintools.tech:443',
|
|
193
|
+
provider: 'ChainTools'
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
address: 'https://odiseo.blocksync.me:24090',
|
|
197
|
+
provider: 'BlockSync'
|
|
198
|
+
}
|
|
199
|
+
]
|
|
200
|
+
},
|
|
201
|
+
explorers: [
|
|
202
|
+
{
|
|
203
|
+
kind: 'cosmotracker',
|
|
204
|
+
url: 'https://testnet.cosmotracker.com/daodiseo',
|
|
205
|
+
txPage: 'https://testnet.cosmotracker.com/daodiseo/tx/${txHash}',
|
|
206
|
+
accountPage: 'https://testnet.cosmotracker.com/daodiseo/account/${accountAddress}'
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
kind: 'bony-explorer',
|
|
210
|
+
url: 'https://explorer.bonynode.online/odiseo/staking',
|
|
211
|
+
txPage: 'https://explorer.bonynode.online/odiseo/tx/${txHash}',
|
|
212
|
+
accountPage: 'https://explorer.bonynode.online/odiseo/account/${accountAddress}'
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
kind: 'Stake Village',
|
|
216
|
+
url: 'https://exp.stakevillage.net/odiseo-testnet',
|
|
217
|
+
txPage: 'https://exp.stakevillage.net/odiseo-testnet/txs/${txHash}',
|
|
218
|
+
accountPage: 'https://exp.stakevillage.net/odiseo-testnet/account/${accountAddress}'
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
kind: 'SbGid',
|
|
222
|
+
url: 'https://exp.sbgid.com/odiseo-testnet',
|
|
223
|
+
txPage: 'https://exp.sbgid.com/odiseo-testnet/txs/${txHash}',
|
|
224
|
+
accountPage: 'https://exp.sbgid.com/odiseo-testnet/account/${accountAddress}'
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
kind: 'dnsarz',
|
|
228
|
+
url: 'https://ping.dnsarz.xyz/daodiseo-testnet',
|
|
229
|
+
txPage: 'https://ping.dnsarz.xyz/daodiseo-testnet/txs/${txHash}',
|
|
230
|
+
accountPage: 'https://ping.dnsarz.xyz/daodiseo-testnet/account/${accountAddress}'
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
kind: 'CodeBlockLabs',
|
|
234
|
+
url: 'https://explorer.codeblocklabs.com/odiseo-testnet',
|
|
235
|
+
txPage: 'https://explorer.codeblocklabs.com/odiseo-testnet/txs/${txHash}',
|
|
236
|
+
accountPage: 'https://explorer.codeblocklabs.com/odiseo-testnet/account/${accountAddress}'
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
kind: 'Vinjan.Inc',
|
|
240
|
+
url: 'https://xplorer.vinjan.xyz/odiseo-testnet',
|
|
241
|
+
txPage: 'https://xplorer.vinjan.xyz/odiseo-testnet/txs/${txHash}',
|
|
242
|
+
accountPage: 'https://xplorer.vinjan.xyz/odiseo-testnet/account/${accountAddress}'
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
kind: 'ChainTools',
|
|
246
|
+
url: 'https://testnet.explorer.chaintools.tech/odiseo',
|
|
247
|
+
txPage: 'https://testnet.explorer.chaintools.tech/odiseo/txs/${txHash}',
|
|
248
|
+
accountPage: 'https://testnet.explorer.chaintools.tech/odiseo/account/${accountAddress}'
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
252
|
+
url: 'https://explorer.whenmoonwhenlambo.money/odiseo-testnet',
|
|
253
|
+
txPage: 'https://explorer.whenmoonwhenlambo.money/odiseo-testnet/tx/${txHash}',
|
|
254
|
+
accountPage: 'https://explorer.whenmoonwhenlambo.money/odiseo-testnet/account/${accountAddress}'
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
kind: 'BlockSync Dashboard',
|
|
258
|
+
url: 'https://dashboard.blocksync.me/odiseo',
|
|
259
|
+
txPage: 'https://dashboard.blocksync.me/odiseo/tx/${txHash}',
|
|
260
|
+
accountPage: 'https://dashboard.blocksync.me/odiseo/account/${accountAddress}'
|
|
261
|
+
}
|
|
262
|
+
],
|
|
263
|
+
logoURIs: {
|
|
264
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/daodiseotestnet/images/odiseo.svg'
|
|
265
|
+
}
|
|
266
|
+
};
|
|
267
|
+
export default info;
|
package/esm/testnet/ibc-data.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as _agoricdevnet from './agoricdevnet';
|
|
2
2
|
import * as _archwaytestnet from './archwaytestnet';
|
|
3
|
+
import * as _atomonetestnet from './atomonetestnet';
|
|
3
4
|
import * as _axelartestnet from './axelartestnet';
|
|
4
5
|
import * as _babylontestnet from './babylontestnet';
|
|
5
6
|
import * as _celestiatestnet3 from './celestiatestnet3';
|
|
@@ -50,6 +51,7 @@ import * as _zigchaintestnet from './zigchaintestnet';
|
|
|
50
51
|
const ibcData = [
|
|
51
52
|
..._agoricdevnet.ibcData,
|
|
52
53
|
..._archwaytestnet.ibcData,
|
|
54
|
+
..._atomonetestnet.ibcData,
|
|
53
55
|
..._axelartestnet.ibcData,
|
|
54
56
|
..._babylontestnet.ibcData,
|
|
55
57
|
..._celestiatestnet3.ibcData,
|
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../ibc_data.schema.json',
|
|
6
|
+
chain1: {
|
|
7
|
+
chainName: 'atomone',
|
|
8
|
+
chainId: 'atomone-1',
|
|
9
|
+
clientId: '07-tendermint-38',
|
|
10
|
+
connectionId: 'connection-40'
|
|
11
|
+
},
|
|
12
|
+
chain2: {
|
|
13
|
+
chainName: 'axelar',
|
|
14
|
+
chainId: 'axelar-dojo-1',
|
|
15
|
+
clientId: '07-tendermint-258',
|
|
16
|
+
connectionId: 'connection-252'
|
|
17
|
+
},
|
|
18
|
+
channels: [{
|
|
19
|
+
chain1: {
|
|
20
|
+
channelId: 'channel-10',
|
|
21
|
+
portId: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
chain2: {
|
|
24
|
+
channelId: 'channel-190',
|
|
25
|
+
portId: 'transfer'
|
|
26
|
+
},
|
|
27
|
+
ordering: 'unordered',
|
|
28
|
+
version: 'ics20-1',
|
|
29
|
+
tags: {
|
|
30
|
+
preferred: true,
|
|
31
|
+
status: 'ACTIVE'
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
},
|
|
4
35
|
{
|
|
5
36
|
$schema: '../ibc_data.schema.json',
|
|
6
37
|
chain1: {
|
|
@@ -120,6 +120,37 @@ const info = [
|
|
|
120
120
|
}
|
|
121
121
|
}]
|
|
122
122
|
},
|
|
123
|
+
{
|
|
124
|
+
$schema: '../ibc_data.schema.json',
|
|
125
|
+
chain1: {
|
|
126
|
+
chainName: 'atomone',
|
|
127
|
+
chainId: 'atomone-1',
|
|
128
|
+
clientId: '07-tendermint-38',
|
|
129
|
+
connectionId: 'connection-40'
|
|
130
|
+
},
|
|
131
|
+
chain2: {
|
|
132
|
+
chainName: 'axelar',
|
|
133
|
+
chainId: 'axelar-dojo-1',
|
|
134
|
+
clientId: '07-tendermint-258',
|
|
135
|
+
connectionId: 'connection-252'
|
|
136
|
+
},
|
|
137
|
+
channels: [{
|
|
138
|
+
chain1: {
|
|
139
|
+
channelId: 'channel-10',
|
|
140
|
+
portId: 'transfer'
|
|
141
|
+
},
|
|
142
|
+
chain2: {
|
|
143
|
+
channelId: 'channel-190',
|
|
144
|
+
portId: 'transfer'
|
|
145
|
+
},
|
|
146
|
+
ordering: 'unordered',
|
|
147
|
+
version: 'ics20-1',
|
|
148
|
+
tags: {
|
|
149
|
+
preferred: true,
|
|
150
|
+
status: 'ACTIVE'
|
|
151
|
+
}
|
|
152
|
+
}]
|
|
153
|
+
},
|
|
123
154
|
{
|
|
124
155
|
$schema: '../ibc_data.schema.json',
|
|
125
156
|
chain1: {
|
|
@@ -82,11 +82,14 @@ const info = {
|
|
|
82
82
|
denom: 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729',
|
|
83
83
|
exponent: 0,
|
|
84
84
|
aliases: ['FX']
|
|
85
|
+
}, {
|
|
86
|
+
denom: 'WFX',
|
|
87
|
+
exponent: 18
|
|
85
88
|
}],
|
|
86
89
|
typeAsset: 'ics20',
|
|
87
90
|
base: 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729',
|
|
88
91
|
name: 'Function X',
|
|
89
|
-
display: '
|
|
92
|
+
display: 'WFX',
|
|
90
93
|
symbol: 'FX',
|
|
91
94
|
traces: [{
|
|
92
95
|
type: 'ibc',
|
|
@@ -897,6 +900,52 @@ const info = {
|
|
|
897
900
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.png',
|
|
898
901
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
|
|
899
902
|
}]
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
description: 'Tether Gold bridged via Eureka on Cosmos Hub.',
|
|
906
|
+
denomUnits: [
|
|
907
|
+
{
|
|
908
|
+
denom: 'ibc/A96C4DBCB7E36F8D265E92240510DB0F29F39CE4AAF52DBDE686E448BA447886',
|
|
909
|
+
exponent: 0,
|
|
910
|
+
aliases: ['uxaut']
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
denom: 'xaut',
|
|
914
|
+
exponent: 6
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
denom: 'xaut.atom',
|
|
918
|
+
exponent: 6
|
|
919
|
+
}
|
|
920
|
+
],
|
|
921
|
+
typeAsset: 'ics20',
|
|
922
|
+
base: 'ibc/A96C4DBCB7E36F8D265E92240510DB0F29F39CE4AAF52DBDE686E448BA447886',
|
|
923
|
+
name: 'Eureka Bridged Tether Gold (ATOM)',
|
|
924
|
+
display: 'xaut',
|
|
925
|
+
symbol: 'XAUt',
|
|
926
|
+
traces: [{
|
|
927
|
+
type: 'ibc-bridge',
|
|
928
|
+
counterparty: {
|
|
929
|
+
chainName: 'ethereum',
|
|
930
|
+
baseDenom: '0x68749665ff8d2d112fa859aa293f07a622782f38',
|
|
931
|
+
channelId: 'channel-0'
|
|
932
|
+
},
|
|
933
|
+
chain: {
|
|
934
|
+
channelId: '08-wasm-1369',
|
|
935
|
+
path: 'transfer/08-wasm-1369/0x68749665ff8d2d112fa859aa293f07a622782f38'
|
|
936
|
+
},
|
|
937
|
+
provider: 'Eureka'
|
|
938
|
+
}],
|
|
939
|
+
logoURIs: {
|
|
940
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
|
|
941
|
+
},
|
|
942
|
+
images: [{
|
|
943
|
+
imageSync: {
|
|
944
|
+
chainName: 'ethereum',
|
|
945
|
+
baseDenom: '0x68749665ff8d2d112fa859aa293f07a622782f38'
|
|
946
|
+
},
|
|
947
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
|
|
948
|
+
}]
|
|
900
949
|
}
|
|
901
950
|
]
|
|
902
951
|
};
|
|
@@ -30,35 +30,35 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
gitRepo: 'https://github.com/cosmos/gaia',
|
|
33
|
-
recommendedVersion: '
|
|
34
|
-
compatibleVersions: ['
|
|
33
|
+
recommendedVersion: 'v25.1.1',
|
|
34
|
+
compatibleVersions: ['v25.1.1'],
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
37
|
-
version: 'v0.38.
|
|
37
|
+
version: 'v0.38.19'
|
|
38
38
|
},
|
|
39
39
|
binaries: {
|
|
40
|
-
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/
|
|
41
|
-
"darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/
|
|
42
|
-
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/
|
|
40
|
+
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.1/gaiad-v25.1.1-darwin-amd64',
|
|
41
|
+
"darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.1.1/gaiad-v25.1.1-darwin-arm64',
|
|
42
|
+
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.1/gaiad-v25.1.1-linux-amd64'
|
|
43
43
|
},
|
|
44
44
|
genesis: {
|
|
45
45
|
genesisUrl: 'https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz'
|
|
46
46
|
},
|
|
47
47
|
sdk: {
|
|
48
48
|
type: 'cosmos',
|
|
49
|
-
version: 'v0.
|
|
50
|
-
tag: 'v0.
|
|
49
|
+
version: 'v0.53.3',
|
|
50
|
+
tag: 'v0.53.3'
|
|
51
51
|
},
|
|
52
52
|
ibc: {
|
|
53
53
|
type: 'go',
|
|
54
|
-
version: '
|
|
54
|
+
version: 'v10.3.0'
|
|
55
55
|
},
|
|
56
56
|
cosmwasm: {
|
|
57
|
-
version: 'v0.
|
|
57
|
+
version: 'v0.60.1',
|
|
58
58
|
repo: 'https://github.com/CosmWasm/wasmd',
|
|
59
|
-
tag: 'v0.
|
|
59
|
+
tag: 'v0.60.1'
|
|
60
60
|
},
|
|
61
|
-
tag: '
|
|
61
|
+
tag: 'v25.1.1'
|
|
62
62
|
},
|
|
63
63
|
logoURIs: {
|
|
64
64
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
@@ -32,6 +32,37 @@ const info = [
|
|
|
32
32
|
}
|
|
33
33
|
}]
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
$schema: '../ibc_data.schema.json',
|
|
37
|
+
chain1: {
|
|
38
|
+
chainName: 'dungeon',
|
|
39
|
+
chainId: 'dungeon-1',
|
|
40
|
+
clientId: '07-tendermint-32',
|
|
41
|
+
connectionId: 'connection-8634'
|
|
42
|
+
},
|
|
43
|
+
chain2: {
|
|
44
|
+
chainName: 'neutron',
|
|
45
|
+
chainId: 'neutron-1',
|
|
46
|
+
clientId: '07-tendermint-188',
|
|
47
|
+
connectionId: 'connection-149'
|
|
48
|
+
},
|
|
49
|
+
channels: [{
|
|
50
|
+
chain1: {
|
|
51
|
+
channelId: 'channel-5309',
|
|
52
|
+
portId: 'transfer'
|
|
53
|
+
},
|
|
54
|
+
chain2: {
|
|
55
|
+
channelId: 'channel-7358',
|
|
56
|
+
portId: 'transfer'
|
|
57
|
+
},
|
|
58
|
+
ordering: 'unordered',
|
|
59
|
+
version: 'ics20-1',
|
|
60
|
+
tags: {
|
|
61
|
+
preferred: true,
|
|
62
|
+
status: 'ACTIVE'
|
|
63
|
+
}
|
|
64
|
+
}]
|
|
65
|
+
},
|
|
35
66
|
{
|
|
36
67
|
$schema: '../ibc_data.schema.json',
|
|
37
68
|
chain1: {
|
|
@@ -2089,6 +2089,29 @@ const info = {
|
|
|
2089
2089
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
|
|
2090
2090
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
|
|
2091
2091
|
}]
|
|
2092
|
+
},
|
|
2093
|
+
{
|
|
2094
|
+
description: 'Tether Gold(XAUT)',
|
|
2095
|
+
typeAsset: 'erc20',
|
|
2096
|
+
address: '0x68749665ff8d2d112fa859aa293f07a622782f38',
|
|
2097
|
+
denomUnits: [{
|
|
2098
|
+
denom: '0x68749665ff8d2d112fa859aa293f07a622782f38',
|
|
2099
|
+
exponent: 0
|
|
2100
|
+
}, {
|
|
2101
|
+
denom: 'xaut',
|
|
2102
|
+
exponent: 6
|
|
2103
|
+
}],
|
|
2104
|
+
base: '0x68749665ff8d2d112fa859aa293f07a622782f38',
|
|
2105
|
+
name: 'Tether Gold',
|
|
2106
|
+
display: 'xaut',
|
|
2107
|
+
symbol: 'XAUt',
|
|
2108
|
+
coingeckoId: 'tether-gold',
|
|
2109
|
+
images: [{
|
|
2110
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
|
|
2111
|
+
}],
|
|
2112
|
+
logoURIs: {
|
|
2113
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
|
|
2114
|
+
}
|
|
2092
2115
|
}
|
|
2093
2116
|
]
|
|
2094
2117
|
};
|
|
@@ -295,6 +295,37 @@ const info = [
|
|
|
295
295
|
}
|
|
296
296
|
}]
|
|
297
297
|
},
|
|
298
|
+
{
|
|
299
|
+
$schema: '../ibc_data.schema.json',
|
|
300
|
+
chain1: {
|
|
301
|
+
chainName: 'dungeon',
|
|
302
|
+
chainId: 'dungeon-1',
|
|
303
|
+
clientId: '07-tendermint-32',
|
|
304
|
+
connectionId: 'connection-8634'
|
|
305
|
+
},
|
|
306
|
+
chain2: {
|
|
307
|
+
chainName: 'neutron',
|
|
308
|
+
chainId: 'neutron-1',
|
|
309
|
+
clientId: '07-tendermint-188',
|
|
310
|
+
connectionId: 'connection-149'
|
|
311
|
+
},
|
|
312
|
+
channels: [{
|
|
313
|
+
chain1: {
|
|
314
|
+
channelId: 'channel-5309',
|
|
315
|
+
portId: 'transfer'
|
|
316
|
+
},
|
|
317
|
+
chain2: {
|
|
318
|
+
channelId: 'channel-7358',
|
|
319
|
+
portId: 'transfer'
|
|
320
|
+
},
|
|
321
|
+
ordering: 'unordered',
|
|
322
|
+
version: 'ics20-1',
|
|
323
|
+
tags: {
|
|
324
|
+
preferred: true,
|
|
325
|
+
status: 'ACTIVE'
|
|
326
|
+
}
|
|
327
|
+
}]
|
|
328
|
+
},
|
|
298
329
|
{
|
|
299
330
|
$schema: '../ibc_data.schema.json',
|
|
300
331
|
chain1: {
|
|
@@ -19147,7 +19147,7 @@ const info = {
|
|
|
19147
19147
|
typeAsset: 'ics20',
|
|
19148
19148
|
base: 'ibc/3C85C44DCB6BCC4FFB9D295EE79ED412E1FAD5D775C99E6AA51CCEF5CA32409C',
|
|
19149
19149
|
name: 'Quicksilver Liquid Staked INJ',
|
|
19150
|
-
display: '
|
|
19150
|
+
display: 'qINJ',
|
|
19151
19151
|
symbol: 'qINJ',
|
|
19152
19152
|
traces: [{
|
|
19153
19153
|
type: 'ibc',
|