chain-registry 2.0.83 → 2.0.85
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/bitcanna/chain.js +0 -8
- package/esm/mainnet/cosmoshub/ibc-data.js +29 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/noble/ibc-data.js +29 -0
- package/esm/mainnet/osmosis/ibc-data.js +29 -0
- package/esm/mainnet/paxi/ibc-data.js +90 -0
- package/esm/mainnet/paxi/index.js +2 -0
- package/esm/mainnet/planq/chain.js +0 -16
- package/esm/mainnet/routerchain/chain.js +3 -22
- package/esm/mainnet/shentu/chain.js +18 -0
- package/esm/mainnet/sunrise/chain.js +19 -1
- package/esm/testnet/neutrontestnet/asset-list.js +21 -0
- package/mainnet/bitcanna/chain.js +0 -8
- package/mainnet/cosmoshub/ibc-data.js +29 -0
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/noble/ibc-data.js +29 -0
- package/mainnet/osmosis/ibc-data.js +29 -0
- package/mainnet/paxi/ibc-data.d.ts +3 -0
- package/mainnet/paxi/ibc-data.js +92 -0
- package/mainnet/paxi/index.d.ts +1 -0
- package/mainnet/paxi/index.js +3 -1
- package/mainnet/planq/chain.js +0 -16
- package/mainnet/routerchain/chain.js +3 -22
- package/mainnet/shentu/chain.js +18 -0
- package/mainnet/sunrise/chain.js +19 -1
- package/package.json +3 -3
- package/testnet/neutrontestnet/asset-list.js +21 -0
|
@@ -89,10 +89,6 @@ const info = {
|
|
|
89
89
|
address: 'https://bitcanna.rpc.kjnodes.com/',
|
|
90
90
|
provider: 'kjnodes'
|
|
91
91
|
},
|
|
92
|
-
{
|
|
93
|
-
address: 'https://bitcanna-rpc.genznodes.dev/',
|
|
94
|
-
provider: 'genznodes'
|
|
95
|
-
},
|
|
96
92
|
{
|
|
97
93
|
address: 'https://rpc.bitcanna-1.bitcanna.aviaone.com/',
|
|
98
94
|
provider: 'AVIAONE 🟢'
|
|
@@ -257,10 +253,6 @@ const info = {
|
|
|
257
253
|
address: 'https://bitcanna.api.kjnodes.com',
|
|
258
254
|
provider: 'kjnodes'
|
|
259
255
|
},
|
|
260
|
-
{
|
|
261
|
-
address: 'https://bitcanna-api.genznodes.dev',
|
|
262
|
-
provider: 'genznodes'
|
|
263
|
-
},
|
|
264
256
|
{
|
|
265
257
|
address: 'https://api.bitcanna-1.bitcanna.aviaone.com',
|
|
266
258
|
provider: 'AVIAONE 🟢'
|
|
@@ -1470,6 +1470,35 @@ const info = [
|
|
|
1470
1470
|
}
|
|
1471
1471
|
}]
|
|
1472
1472
|
},
|
|
1473
|
+
{
|
|
1474
|
+
$schema: '../ibc_data.schema.json',
|
|
1475
|
+
chain1: {
|
|
1476
|
+
chainName: 'cosmoshub',
|
|
1477
|
+
clientId: '07-tendermint-1442',
|
|
1478
|
+
connectionId: 'connection-1182'
|
|
1479
|
+
},
|
|
1480
|
+
chain2: {
|
|
1481
|
+
chainName: 'paxi',
|
|
1482
|
+
clientId: '07-tendermint-4',
|
|
1483
|
+
connectionId: 'connection-3'
|
|
1484
|
+
},
|
|
1485
|
+
channels: [{
|
|
1486
|
+
chain1: {
|
|
1487
|
+
channelId: 'channel-1566',
|
|
1488
|
+
portId: 'transfer'
|
|
1489
|
+
},
|
|
1490
|
+
chain2: {
|
|
1491
|
+
channelId: 'channel-1',
|
|
1492
|
+
portId: 'transfer'
|
|
1493
|
+
},
|
|
1494
|
+
ordering: 'unordered',
|
|
1495
|
+
version: 'ics20-1',
|
|
1496
|
+
tags: {
|
|
1497
|
+
preferred: true,
|
|
1498
|
+
status: 'ACTIVE'
|
|
1499
|
+
}
|
|
1500
|
+
}]
|
|
1501
|
+
},
|
|
1473
1502
|
{
|
|
1474
1503
|
$schema: '../ibc_data.schema.json',
|
|
1475
1504
|
chain1: {
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -116,6 +116,7 @@ import * as _oraichain from './oraichain';
|
|
|
116
116
|
import * as _osmosis from './osmosis';
|
|
117
117
|
import * as _panacea from './panacea';
|
|
118
118
|
import * as _passage from './passage';
|
|
119
|
+
import * as _paxi from './paxi';
|
|
119
120
|
import * as _persistence from './persistence';
|
|
120
121
|
import * as _planq from './planq';
|
|
121
122
|
import * as _point from './point';
|
|
@@ -288,6 +289,7 @@ const ibcData = [
|
|
|
288
289
|
..._osmosis.ibcData,
|
|
289
290
|
..._panacea.ibcData,
|
|
290
291
|
..._passage.ibcData,
|
|
292
|
+
..._paxi.ibcData,
|
|
291
293
|
..._persistence.ibcData,
|
|
292
294
|
..._planq.ibcData,
|
|
293
295
|
..._point.ibcData,
|
|
@@ -1064,6 +1064,35 @@ const info = [
|
|
|
1064
1064
|
}
|
|
1065
1065
|
}]
|
|
1066
1066
|
},
|
|
1067
|
+
{
|
|
1068
|
+
$schema: '../ibc_data.schema.json',
|
|
1069
|
+
chain1: {
|
|
1070
|
+
chainName: 'noble',
|
|
1071
|
+
clientId: '07-tendermint-188',
|
|
1072
|
+
connectionId: 'connection-181'
|
|
1073
|
+
},
|
|
1074
|
+
chain2: {
|
|
1075
|
+
chainName: 'paxi',
|
|
1076
|
+
clientId: '07-tendermint-8',
|
|
1077
|
+
connectionId: 'connection-4'
|
|
1078
|
+
},
|
|
1079
|
+
channels: [{
|
|
1080
|
+
chain1: {
|
|
1081
|
+
channelId: 'channel-205',
|
|
1082
|
+
portId: 'transfer'
|
|
1083
|
+
},
|
|
1084
|
+
chain2: {
|
|
1085
|
+
channelId: 'channel-2',
|
|
1086
|
+
portId: 'transfer'
|
|
1087
|
+
},
|
|
1088
|
+
ordering: 'unordered',
|
|
1089
|
+
version: 'ics20-1',
|
|
1090
|
+
tags: {
|
|
1091
|
+
preferred: true,
|
|
1092
|
+
status: 'ACTIVE'
|
|
1093
|
+
}
|
|
1094
|
+
}]
|
|
1095
|
+
},
|
|
1067
1096
|
{
|
|
1068
1097
|
$schema: '../ibc_data.schema.json',
|
|
1069
1098
|
chain1: {
|
|
@@ -3482,6 +3482,35 @@ const info = [
|
|
|
3482
3482
|
}
|
|
3483
3483
|
}]
|
|
3484
3484
|
},
|
|
3485
|
+
{
|
|
3486
|
+
$schema: '../ibc_data.schema.json',
|
|
3487
|
+
chain1: {
|
|
3488
|
+
chainName: 'osmosis',
|
|
3489
|
+
clientId: '07-tendermint-3611',
|
|
3490
|
+
connectionId: 'connection-10963'
|
|
3491
|
+
},
|
|
3492
|
+
chain2: {
|
|
3493
|
+
chainName: 'paxi',
|
|
3494
|
+
clientId: '07-tendermint-3',
|
|
3495
|
+
connectionId: 'connection-2'
|
|
3496
|
+
},
|
|
3497
|
+
channels: [{
|
|
3498
|
+
chain1: {
|
|
3499
|
+
channelId: 'channel-107354',
|
|
3500
|
+
portId: 'transfer'
|
|
3501
|
+
},
|
|
3502
|
+
chain2: {
|
|
3503
|
+
channelId: 'channel-0',
|
|
3504
|
+
portId: 'transfer'
|
|
3505
|
+
},
|
|
3506
|
+
ordering: 'unordered',
|
|
3507
|
+
version: 'ics20-1',
|
|
3508
|
+
tags: {
|
|
3509
|
+
preferred: true,
|
|
3510
|
+
status: 'ACTIVE'
|
|
3511
|
+
}
|
|
3512
|
+
}]
|
|
3513
|
+
},
|
|
3485
3514
|
{
|
|
3486
3515
|
$schema: '../ibc_data.schema.json',
|
|
3487
3516
|
chain1: {
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'cosmoshub',
|
|
6
|
+
clientId: '07-tendermint-1442',
|
|
7
|
+
connectionId: 'connection-1182'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'paxi',
|
|
11
|
+
clientId: '07-tendermint-4',
|
|
12
|
+
connectionId: 'connection-3'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain1: {
|
|
16
|
+
channelId: 'channel-1566',
|
|
17
|
+
portId: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain2: {
|
|
20
|
+
channelId: 'channel-1',
|
|
21
|
+
portId: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {
|
|
26
|
+
preferred: true,
|
|
27
|
+
status: 'ACTIVE'
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
$schema: '../ibc_data.schema.json',
|
|
33
|
+
chain1: {
|
|
34
|
+
chainName: 'noble',
|
|
35
|
+
clientId: '07-tendermint-188',
|
|
36
|
+
connectionId: 'connection-181'
|
|
37
|
+
},
|
|
38
|
+
chain2: {
|
|
39
|
+
chainName: 'paxi',
|
|
40
|
+
clientId: '07-tendermint-8',
|
|
41
|
+
connectionId: 'connection-4'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain1: {
|
|
45
|
+
channelId: 'channel-205',
|
|
46
|
+
portId: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain2: {
|
|
49
|
+
channelId: 'channel-2',
|
|
50
|
+
portId: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
ordering: 'unordered',
|
|
53
|
+
version: 'ics20-1',
|
|
54
|
+
tags: {
|
|
55
|
+
preferred: true,
|
|
56
|
+
status: 'ACTIVE'
|
|
57
|
+
}
|
|
58
|
+
}]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
$schema: '../ibc_data.schema.json',
|
|
62
|
+
chain1: {
|
|
63
|
+
chainName: 'osmosis',
|
|
64
|
+
clientId: '07-tendermint-3611',
|
|
65
|
+
connectionId: 'connection-10963'
|
|
66
|
+
},
|
|
67
|
+
chain2: {
|
|
68
|
+
chainName: 'paxi',
|
|
69
|
+
clientId: '07-tendermint-3',
|
|
70
|
+
connectionId: 'connection-2'
|
|
71
|
+
},
|
|
72
|
+
channels: [{
|
|
73
|
+
chain1: {
|
|
74
|
+
channelId: 'channel-107354',
|
|
75
|
+
portId: 'transfer'
|
|
76
|
+
},
|
|
77
|
+
chain2: {
|
|
78
|
+
channelId: 'channel-0',
|
|
79
|
+
portId: 'transfer'
|
|
80
|
+
},
|
|
81
|
+
ordering: 'unordered',
|
|
82
|
+
version: 'ics20-1',
|
|
83
|
+
tags: {
|
|
84
|
+
preferred: true,
|
|
85
|
+
status: 'ACTIVE'
|
|
86
|
+
}
|
|
87
|
+
}]
|
|
88
|
+
}
|
|
89
|
+
];
|
|
90
|
+
export default info;
|
|
@@ -87,10 +87,6 @@ const info = {
|
|
|
87
87
|
address: 'https://rpc.planq.roomit.xyz',
|
|
88
88
|
provider: 'Roomit'
|
|
89
89
|
},
|
|
90
|
-
{
|
|
91
|
-
address: 'https://planq-rpc.genznodes.dev',
|
|
92
|
-
provider: 'genznodes'
|
|
93
|
-
},
|
|
94
90
|
{
|
|
95
91
|
address: 'https://planq.rpc.skynodejs.net',
|
|
96
92
|
provider: 'skynodejs'
|
|
@@ -133,10 +129,6 @@ const info = {
|
|
|
133
129
|
address: 'https://api.planq.roomit.xyz',
|
|
134
130
|
provider: 'Roomit'
|
|
135
131
|
},
|
|
136
|
-
{
|
|
137
|
-
address: 'https://planq-api.genznodes.dev',
|
|
138
|
-
provider: 'genznodes'
|
|
139
|
-
},
|
|
140
132
|
{
|
|
141
133
|
address: 'https://planq.api.skynodejs.net',
|
|
142
134
|
provider: 'skynodejs'
|
|
@@ -191,10 +183,6 @@ const info = {
|
|
|
191
183
|
address: 'https://grpc.planq.hexnodes.co:33090',
|
|
192
184
|
provider: 'Hexnodes'
|
|
193
185
|
},
|
|
194
|
-
{
|
|
195
|
-
address: 'planq-grpc.genznodes.dev:28090',
|
|
196
|
-
provider: 'genznodes'
|
|
197
|
-
},
|
|
198
186
|
{
|
|
199
187
|
address: 'https://planq.grpc.skynodejs.net',
|
|
200
188
|
provider: 'skynodejs'
|
|
@@ -225,10 +213,6 @@ const info = {
|
|
|
225
213
|
address: 'https://jsonrpc.planq.nodexcapital.com',
|
|
226
214
|
provider: 'NodeX Validator'
|
|
227
215
|
},
|
|
228
|
-
{
|
|
229
|
-
address: 'https://planq-rpc-evm.genznodes.dev',
|
|
230
|
-
provider: 'genznodes'
|
|
231
|
-
},
|
|
232
216
|
{
|
|
233
217
|
address: 'https://planq-jsonrpc.stake-town.com',
|
|
234
218
|
provider: 'StakeTown'
|
|
@@ -62,10 +62,6 @@ const info = {
|
|
|
62
62
|
address: 'https://sentry.tm.rpc.routerprotocol.com/',
|
|
63
63
|
provider: 'Router'
|
|
64
64
|
},
|
|
65
|
-
{
|
|
66
|
-
address: 'https://router-rpc.genznodes.dev/',
|
|
67
|
-
provider: 'genznodes'
|
|
68
|
-
},
|
|
69
65
|
{
|
|
70
66
|
address: 'https://router.rpc.nodeshub.online:443',
|
|
71
67
|
provider: 'Nodes Hub 🛡️ 100% Slash Protected 🛡️'
|
|
@@ -88,10 +84,6 @@ const info = {
|
|
|
88
84
|
address: 'https://sentry.lcd.routerprotocol.com/',
|
|
89
85
|
provider: 'Router'
|
|
90
86
|
},
|
|
91
|
-
{
|
|
92
|
-
address: 'https://router-api.genznodes.dev/',
|
|
93
|
-
provider: 'genznodes'
|
|
94
|
-
},
|
|
95
87
|
{
|
|
96
88
|
address: 'https://router.api.nodeshub.online',
|
|
97
89
|
provider: 'Nodes Hub 🛡️ 100% Slash Protected 🛡️'
|
|
@@ -114,10 +106,6 @@ const info = {
|
|
|
114
106
|
address: 'sentry.grpc.routerprotocol.com:9090',
|
|
115
107
|
provider: 'Router'
|
|
116
108
|
},
|
|
117
|
-
{
|
|
118
|
-
address: 'router-grpc.genznodes.dev:3090',
|
|
119
|
-
provider: 'genznodes'
|
|
120
|
-
},
|
|
121
109
|
{
|
|
122
110
|
address: 'router.grpc.nodeshub.online',
|
|
123
111
|
provider: 'Nodes Hub'
|
|
@@ -131,20 +119,13 @@ const info = {
|
|
|
131
119
|
provider: 'NodeStake'
|
|
132
120
|
}
|
|
133
121
|
],
|
|
134
|
-
evmHttpJsonrpc: [
|
|
135
|
-
{
|
|
122
|
+
evmHttpJsonrpc: [{
|
|
136
123
|
address: 'https://sentry.evm.rpc.routerprotocol.com',
|
|
137
124
|
provider: 'Router'
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
address: 'https://router-rpc-evm.genznodes.dev',
|
|
141
|
-
provider: 'genznodes'
|
|
142
|
-
},
|
|
143
|
-
{
|
|
125
|
+
}, {
|
|
144
126
|
address: 'https://routerchain_mainnet_evm.chain.whenmoonwhenlambo.money',
|
|
145
127
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
146
|
-
}
|
|
147
|
-
]
|
|
128
|
+
}]
|
|
148
129
|
},
|
|
149
130
|
explorers: [
|
|
150
131
|
{
|
|
@@ -97,6 +97,10 @@ const info = {
|
|
|
97
97
|
{
|
|
98
98
|
address: 'https://shentu-mainnet-rpc.shazoes.xyz',
|
|
99
99
|
provider: 'Shazoes'
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
address: 'https://rpc-shentu.onenov.xyz',
|
|
103
|
+
provider: 'OneNov'
|
|
100
104
|
}
|
|
101
105
|
],
|
|
102
106
|
rest: [
|
|
@@ -147,6 +151,10 @@ const info = {
|
|
|
147
151
|
{
|
|
148
152
|
address: 'https://shentu-mainnet-api.shazoes.xyz',
|
|
149
153
|
provider: 'Shazoes'
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
address: 'https://api-shentu.onenov.xyz',
|
|
157
|
+
provider: 'OneNov'
|
|
150
158
|
}
|
|
151
159
|
],
|
|
152
160
|
grpc: [
|
|
@@ -189,6 +197,10 @@ const info = {
|
|
|
189
197
|
{
|
|
190
198
|
address: 'shentu-mainnet-grpc.shazoes.xyz:9090',
|
|
191
199
|
provider: 'Shazoes'
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
address: 'grpc-shentu.onenov.xyz:443',
|
|
203
|
+
provider: 'OneNov'
|
|
192
204
|
}
|
|
193
205
|
]
|
|
194
206
|
},
|
|
@@ -255,6 +267,12 @@ const info = {
|
|
|
255
267
|
url: 'https://explorer.node39.top/shentu',
|
|
256
268
|
txPage: 'https://explorer.node39.top/shentu/transactions/${txHash}',
|
|
257
269
|
accountPage: 'https://explorer.node39.top/shentu/accounts/${accountAddress}'
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
kind: 'OneNov Explorer',
|
|
273
|
+
url: 'https://explorer.onenov.xyz/shentu',
|
|
274
|
+
txPage: 'https://explorer.onenov.xyz/shentu/tx/${txHash}',
|
|
275
|
+
accountPage: 'https://explorer.onenov.xyz/shentu/account/${accountAddress}'
|
|
258
276
|
}
|
|
259
277
|
],
|
|
260
278
|
images: [{
|
|
@@ -162,6 +162,10 @@ const info = {
|
|
|
162
162
|
{
|
|
163
163
|
address: 'https://rpc-sunrice.batana.space',
|
|
164
164
|
provider: 'batana'
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
address: 'https://rpc-sunrise.gombezzz.xyz',
|
|
168
|
+
provider: 'GombezzZ'
|
|
165
169
|
}
|
|
166
170
|
],
|
|
167
171
|
rest: [
|
|
@@ -268,6 +272,10 @@ const info = {
|
|
|
268
272
|
{
|
|
269
273
|
address: 'https://api-sunrice.batana.space',
|
|
270
274
|
provider: 'batana'
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
address: 'https://api-sunrise.gombezzz.xyz',
|
|
278
|
+
provider: 'GombezzZ'
|
|
271
279
|
}
|
|
272
280
|
],
|
|
273
281
|
grpc: [
|
|
@@ -320,7 +328,7 @@ const info = {
|
|
|
320
328
|
provider: 'Blockval'
|
|
321
329
|
},
|
|
322
330
|
{
|
|
323
|
-
address: 'https://sunrise-grpc.onenov.xyz:
|
|
331
|
+
address: 'https://sunrise-grpc.onenov.xyz:443',
|
|
324
332
|
provider: 'OneNov'
|
|
325
333
|
},
|
|
326
334
|
{
|
|
@@ -358,6 +366,10 @@ const info = {
|
|
|
358
366
|
{
|
|
359
367
|
address: 'grpc-sunrice.batana.space:443',
|
|
360
368
|
provider: 'batana'
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
address: 'grpc-sunrise.gombezzz.xyz:443',
|
|
372
|
+
provider: 'GombezzZ'
|
|
361
373
|
}
|
|
362
374
|
]
|
|
363
375
|
},
|
|
@@ -492,6 +504,12 @@ const info = {
|
|
|
492
504
|
url: 'https://explorer.batana.space/sunrise-mainnet',
|
|
493
505
|
txPage: 'https://explorer.batana.space/sunrise-mainnet/tx/${txHash}',
|
|
494
506
|
accountPage: 'https://explorer.batana.space/sunrise-mainnet/${accountAddress}'
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
kind: 'GombezzZ explorer',
|
|
510
|
+
url: 'https://explorer.gombezzz.xyz/sunrise-mainnet',
|
|
511
|
+
txPage: 'https://explorer.gombezzz.xyz/sunrise-mainnet/tx/${txHash}',
|
|
512
|
+
accountPage: 'https://explorer.gombezzz.xyz/sunrise-mainnet/${accountAddress}'
|
|
495
513
|
}
|
|
496
514
|
],
|
|
497
515
|
images: [{
|
|
@@ -243,6 +243,27 @@ const info = {
|
|
|
243
243
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/babylontestnet/images/logo.svg'
|
|
244
244
|
}],
|
|
245
245
|
typeAsset: 'sdk.coin'
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
description: 'Drop dTIA token',
|
|
249
|
+
denomUnits: [{
|
|
250
|
+
denom: 'factory/neutron1qex378awvwhsxealmrtuunn70f242u49dagqus6ug423paxyevyqvw9s3t/uTIA',
|
|
251
|
+
exponent: 0
|
|
252
|
+
}, {
|
|
253
|
+
denom: 'dTIA',
|
|
254
|
+
exponent: 6
|
|
255
|
+
}],
|
|
256
|
+
base: 'factory/neutron1qex378awvwhsxealmrtuunn70f242u49dagqus6ug423paxyevyqvw9s3t/uTIA',
|
|
257
|
+
name: 'Drop dTIA testnet',
|
|
258
|
+
display: 'dTIA',
|
|
259
|
+
symbol: 'dTIA',
|
|
260
|
+
logoURIs: {
|
|
261
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
|
|
262
|
+
},
|
|
263
|
+
images: [{
|
|
264
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
|
|
265
|
+
}],
|
|
266
|
+
typeAsset: 'sdk.coin'
|
|
246
267
|
}
|
|
247
268
|
]
|
|
248
269
|
};
|
|
@@ -91,10 +91,6 @@ const info = {
|
|
|
91
91
|
address: 'https://bitcanna.rpc.kjnodes.com/',
|
|
92
92
|
provider: 'kjnodes'
|
|
93
93
|
},
|
|
94
|
-
{
|
|
95
|
-
address: 'https://bitcanna-rpc.genznodes.dev/',
|
|
96
|
-
provider: 'genznodes'
|
|
97
|
-
},
|
|
98
94
|
{
|
|
99
95
|
address: 'https://rpc.bitcanna-1.bitcanna.aviaone.com/',
|
|
100
96
|
provider: 'AVIAONE 🟢'
|
|
@@ -259,10 +255,6 @@ const info = {
|
|
|
259
255
|
address: 'https://bitcanna.api.kjnodes.com',
|
|
260
256
|
provider: 'kjnodes'
|
|
261
257
|
},
|
|
262
|
-
{
|
|
263
|
-
address: 'https://bitcanna-api.genznodes.dev',
|
|
264
|
-
provider: 'genznodes'
|
|
265
|
-
},
|
|
266
258
|
{
|
|
267
259
|
address: 'https://api.bitcanna-1.bitcanna.aviaone.com',
|
|
268
260
|
provider: 'AVIAONE 🟢'
|
|
@@ -1472,6 +1472,35 @@ const info = [
|
|
|
1472
1472
|
}
|
|
1473
1473
|
}]
|
|
1474
1474
|
},
|
|
1475
|
+
{
|
|
1476
|
+
$schema: '../ibc_data.schema.json',
|
|
1477
|
+
chain1: {
|
|
1478
|
+
chainName: 'cosmoshub',
|
|
1479
|
+
clientId: '07-tendermint-1442',
|
|
1480
|
+
connectionId: 'connection-1182'
|
|
1481
|
+
},
|
|
1482
|
+
chain2: {
|
|
1483
|
+
chainName: 'paxi',
|
|
1484
|
+
clientId: '07-tendermint-4',
|
|
1485
|
+
connectionId: 'connection-3'
|
|
1486
|
+
},
|
|
1487
|
+
channels: [{
|
|
1488
|
+
chain1: {
|
|
1489
|
+
channelId: 'channel-1566',
|
|
1490
|
+
portId: 'transfer'
|
|
1491
|
+
},
|
|
1492
|
+
chain2: {
|
|
1493
|
+
channelId: 'channel-1',
|
|
1494
|
+
portId: 'transfer'
|
|
1495
|
+
},
|
|
1496
|
+
ordering: 'unordered',
|
|
1497
|
+
version: 'ics20-1',
|
|
1498
|
+
tags: {
|
|
1499
|
+
preferred: true,
|
|
1500
|
+
status: 'ACTIVE'
|
|
1501
|
+
}
|
|
1502
|
+
}]
|
|
1503
|
+
},
|
|
1475
1504
|
{
|
|
1476
1505
|
$schema: '../ibc_data.schema.json',
|
|
1477
1506
|
chain1: {
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -141,6 +141,7 @@ const _oraichain = __importStar(require("./oraichain"));
|
|
|
141
141
|
const _osmosis = __importStar(require("./osmosis"));
|
|
142
142
|
const _panacea = __importStar(require("./panacea"));
|
|
143
143
|
const _passage = __importStar(require("./passage"));
|
|
144
|
+
const _paxi = __importStar(require("./paxi"));
|
|
144
145
|
const _persistence = __importStar(require("./persistence"));
|
|
145
146
|
const _planq = __importStar(require("./planq"));
|
|
146
147
|
const _point = __importStar(require("./point"));
|
|
@@ -313,6 +314,7 @@ const ibcData = [
|
|
|
313
314
|
..._osmosis.ibcData,
|
|
314
315
|
..._panacea.ibcData,
|
|
315
316
|
..._passage.ibcData,
|
|
317
|
+
..._paxi.ibcData,
|
|
316
318
|
..._persistence.ibcData,
|
|
317
319
|
..._planq.ibcData,
|
|
318
320
|
..._point.ibcData,
|
|
@@ -1066,6 +1066,35 @@ const info = [
|
|
|
1066
1066
|
}
|
|
1067
1067
|
}]
|
|
1068
1068
|
},
|
|
1069
|
+
{
|
|
1070
|
+
$schema: '../ibc_data.schema.json',
|
|
1071
|
+
chain1: {
|
|
1072
|
+
chainName: 'noble',
|
|
1073
|
+
clientId: '07-tendermint-188',
|
|
1074
|
+
connectionId: 'connection-181'
|
|
1075
|
+
},
|
|
1076
|
+
chain2: {
|
|
1077
|
+
chainName: 'paxi',
|
|
1078
|
+
clientId: '07-tendermint-8',
|
|
1079
|
+
connectionId: 'connection-4'
|
|
1080
|
+
},
|
|
1081
|
+
channels: [{
|
|
1082
|
+
chain1: {
|
|
1083
|
+
channelId: 'channel-205',
|
|
1084
|
+
portId: 'transfer'
|
|
1085
|
+
},
|
|
1086
|
+
chain2: {
|
|
1087
|
+
channelId: 'channel-2',
|
|
1088
|
+
portId: 'transfer'
|
|
1089
|
+
},
|
|
1090
|
+
ordering: 'unordered',
|
|
1091
|
+
version: 'ics20-1',
|
|
1092
|
+
tags: {
|
|
1093
|
+
preferred: true,
|
|
1094
|
+
status: 'ACTIVE'
|
|
1095
|
+
}
|
|
1096
|
+
}]
|
|
1097
|
+
},
|
|
1069
1098
|
{
|
|
1070
1099
|
$schema: '../ibc_data.schema.json',
|
|
1071
1100
|
chain1: {
|
|
@@ -3484,6 +3484,35 @@ const info = [
|
|
|
3484
3484
|
}
|
|
3485
3485
|
}]
|
|
3486
3486
|
},
|
|
3487
|
+
{
|
|
3488
|
+
$schema: '../ibc_data.schema.json',
|
|
3489
|
+
chain1: {
|
|
3490
|
+
chainName: 'osmosis',
|
|
3491
|
+
clientId: '07-tendermint-3611',
|
|
3492
|
+
connectionId: 'connection-10963'
|
|
3493
|
+
},
|
|
3494
|
+
chain2: {
|
|
3495
|
+
chainName: 'paxi',
|
|
3496
|
+
clientId: '07-tendermint-3',
|
|
3497
|
+
connectionId: 'connection-2'
|
|
3498
|
+
},
|
|
3499
|
+
channels: [{
|
|
3500
|
+
chain1: {
|
|
3501
|
+
channelId: 'channel-107354',
|
|
3502
|
+
portId: 'transfer'
|
|
3503
|
+
},
|
|
3504
|
+
chain2: {
|
|
3505
|
+
channelId: 'channel-0',
|
|
3506
|
+
portId: 'transfer'
|
|
3507
|
+
},
|
|
3508
|
+
ordering: 'unordered',
|
|
3509
|
+
version: 'ics20-1',
|
|
3510
|
+
tags: {
|
|
3511
|
+
preferred: true,
|
|
3512
|
+
status: 'ACTIVE'
|
|
3513
|
+
}
|
|
3514
|
+
}]
|
|
3515
|
+
},
|
|
3487
3516
|
{
|
|
3488
3517
|
$schema: '../ibc_data.schema.json',
|
|
3489
3518
|
chain1: {
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../ibc_data.schema.json',
|
|
6
|
+
chain1: {
|
|
7
|
+
chainName: 'cosmoshub',
|
|
8
|
+
clientId: '07-tendermint-1442',
|
|
9
|
+
connectionId: 'connection-1182'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'paxi',
|
|
13
|
+
clientId: '07-tendermint-4',
|
|
14
|
+
connectionId: 'connection-3'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain1: {
|
|
18
|
+
channelId: 'channel-1566',
|
|
19
|
+
portId: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain2: {
|
|
22
|
+
channelId: 'channel-1',
|
|
23
|
+
portId: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {
|
|
28
|
+
preferred: true,
|
|
29
|
+
status: 'ACTIVE'
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
$schema: '../ibc_data.schema.json',
|
|
35
|
+
chain1: {
|
|
36
|
+
chainName: 'noble',
|
|
37
|
+
clientId: '07-tendermint-188',
|
|
38
|
+
connectionId: 'connection-181'
|
|
39
|
+
},
|
|
40
|
+
chain2: {
|
|
41
|
+
chainName: 'paxi',
|
|
42
|
+
clientId: '07-tendermint-8',
|
|
43
|
+
connectionId: 'connection-4'
|
|
44
|
+
},
|
|
45
|
+
channels: [{
|
|
46
|
+
chain1: {
|
|
47
|
+
channelId: 'channel-205',
|
|
48
|
+
portId: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
chain2: {
|
|
51
|
+
channelId: 'channel-2',
|
|
52
|
+
portId: 'transfer'
|
|
53
|
+
},
|
|
54
|
+
ordering: 'unordered',
|
|
55
|
+
version: 'ics20-1',
|
|
56
|
+
tags: {
|
|
57
|
+
preferred: true,
|
|
58
|
+
status: 'ACTIVE'
|
|
59
|
+
}
|
|
60
|
+
}]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
$schema: '../ibc_data.schema.json',
|
|
64
|
+
chain1: {
|
|
65
|
+
chainName: 'osmosis',
|
|
66
|
+
clientId: '07-tendermint-3611',
|
|
67
|
+
connectionId: 'connection-10963'
|
|
68
|
+
},
|
|
69
|
+
chain2: {
|
|
70
|
+
chainName: 'paxi',
|
|
71
|
+
clientId: '07-tendermint-3',
|
|
72
|
+
connectionId: 'connection-2'
|
|
73
|
+
},
|
|
74
|
+
channels: [{
|
|
75
|
+
chain1: {
|
|
76
|
+
channelId: 'channel-107354',
|
|
77
|
+
portId: 'transfer'
|
|
78
|
+
},
|
|
79
|
+
chain2: {
|
|
80
|
+
channelId: 'channel-0',
|
|
81
|
+
portId: 'transfer'
|
|
82
|
+
},
|
|
83
|
+
ordering: 'unordered',
|
|
84
|
+
version: 'ics20-1',
|
|
85
|
+
tags: {
|
|
86
|
+
preferred: true,
|
|
87
|
+
status: 'ACTIVE'
|
|
88
|
+
}
|
|
89
|
+
}]
|
|
90
|
+
}
|
|
91
|
+
];
|
|
92
|
+
exports.default = info;
|
package/mainnet/paxi/index.d.ts
CHANGED
package/mainnet/paxi/index.js
CHANGED
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.chain = exports.assetList = void 0;
|
|
6
|
+
exports.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
7
|
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
9
10
|
exports.assetList = asset_list_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
package/mainnet/planq/chain.js
CHANGED
|
@@ -89,10 +89,6 @@ const info = {
|
|
|
89
89
|
address: 'https://rpc.planq.roomit.xyz',
|
|
90
90
|
provider: 'Roomit'
|
|
91
91
|
},
|
|
92
|
-
{
|
|
93
|
-
address: 'https://planq-rpc.genznodes.dev',
|
|
94
|
-
provider: 'genznodes'
|
|
95
|
-
},
|
|
96
92
|
{
|
|
97
93
|
address: 'https://planq.rpc.skynodejs.net',
|
|
98
94
|
provider: 'skynodejs'
|
|
@@ -135,10 +131,6 @@ const info = {
|
|
|
135
131
|
address: 'https://api.planq.roomit.xyz',
|
|
136
132
|
provider: 'Roomit'
|
|
137
133
|
},
|
|
138
|
-
{
|
|
139
|
-
address: 'https://planq-api.genznodes.dev',
|
|
140
|
-
provider: 'genznodes'
|
|
141
|
-
},
|
|
142
134
|
{
|
|
143
135
|
address: 'https://planq.api.skynodejs.net',
|
|
144
136
|
provider: 'skynodejs'
|
|
@@ -193,10 +185,6 @@ const info = {
|
|
|
193
185
|
address: 'https://grpc.planq.hexnodes.co:33090',
|
|
194
186
|
provider: 'Hexnodes'
|
|
195
187
|
},
|
|
196
|
-
{
|
|
197
|
-
address: 'planq-grpc.genznodes.dev:28090',
|
|
198
|
-
provider: 'genznodes'
|
|
199
|
-
},
|
|
200
188
|
{
|
|
201
189
|
address: 'https://planq.grpc.skynodejs.net',
|
|
202
190
|
provider: 'skynodejs'
|
|
@@ -227,10 +215,6 @@ const info = {
|
|
|
227
215
|
address: 'https://jsonrpc.planq.nodexcapital.com',
|
|
228
216
|
provider: 'NodeX Validator'
|
|
229
217
|
},
|
|
230
|
-
{
|
|
231
|
-
address: 'https://planq-rpc-evm.genznodes.dev',
|
|
232
|
-
provider: 'genznodes'
|
|
233
|
-
},
|
|
234
218
|
{
|
|
235
219
|
address: 'https://planq-jsonrpc.stake-town.com',
|
|
236
220
|
provider: 'StakeTown'
|
|
@@ -64,10 +64,6 @@ const info = {
|
|
|
64
64
|
address: 'https://sentry.tm.rpc.routerprotocol.com/',
|
|
65
65
|
provider: 'Router'
|
|
66
66
|
},
|
|
67
|
-
{
|
|
68
|
-
address: 'https://router-rpc.genznodes.dev/',
|
|
69
|
-
provider: 'genznodes'
|
|
70
|
-
},
|
|
71
67
|
{
|
|
72
68
|
address: 'https://router.rpc.nodeshub.online:443',
|
|
73
69
|
provider: 'Nodes Hub 🛡️ 100% Slash Protected 🛡️'
|
|
@@ -90,10 +86,6 @@ const info = {
|
|
|
90
86
|
address: 'https://sentry.lcd.routerprotocol.com/',
|
|
91
87
|
provider: 'Router'
|
|
92
88
|
},
|
|
93
|
-
{
|
|
94
|
-
address: 'https://router-api.genznodes.dev/',
|
|
95
|
-
provider: 'genznodes'
|
|
96
|
-
},
|
|
97
89
|
{
|
|
98
90
|
address: 'https://router.api.nodeshub.online',
|
|
99
91
|
provider: 'Nodes Hub 🛡️ 100% Slash Protected 🛡️'
|
|
@@ -116,10 +108,6 @@ const info = {
|
|
|
116
108
|
address: 'sentry.grpc.routerprotocol.com:9090',
|
|
117
109
|
provider: 'Router'
|
|
118
110
|
},
|
|
119
|
-
{
|
|
120
|
-
address: 'router-grpc.genznodes.dev:3090',
|
|
121
|
-
provider: 'genznodes'
|
|
122
|
-
},
|
|
123
111
|
{
|
|
124
112
|
address: 'router.grpc.nodeshub.online',
|
|
125
113
|
provider: 'Nodes Hub'
|
|
@@ -133,20 +121,13 @@ const info = {
|
|
|
133
121
|
provider: 'NodeStake'
|
|
134
122
|
}
|
|
135
123
|
],
|
|
136
|
-
evmHttpJsonrpc: [
|
|
137
|
-
{
|
|
124
|
+
evmHttpJsonrpc: [{
|
|
138
125
|
address: 'https://sentry.evm.rpc.routerprotocol.com',
|
|
139
126
|
provider: 'Router'
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
address: 'https://router-rpc-evm.genznodes.dev',
|
|
143
|
-
provider: 'genznodes'
|
|
144
|
-
},
|
|
145
|
-
{
|
|
127
|
+
}, {
|
|
146
128
|
address: 'https://routerchain_mainnet_evm.chain.whenmoonwhenlambo.money',
|
|
147
129
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
148
|
-
}
|
|
149
|
-
]
|
|
130
|
+
}]
|
|
150
131
|
},
|
|
151
132
|
explorers: [
|
|
152
133
|
{
|
package/mainnet/shentu/chain.js
CHANGED
|
@@ -99,6 +99,10 @@ const info = {
|
|
|
99
99
|
{
|
|
100
100
|
address: 'https://shentu-mainnet-rpc.shazoes.xyz',
|
|
101
101
|
provider: 'Shazoes'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
address: 'https://rpc-shentu.onenov.xyz',
|
|
105
|
+
provider: 'OneNov'
|
|
102
106
|
}
|
|
103
107
|
],
|
|
104
108
|
rest: [
|
|
@@ -149,6 +153,10 @@ const info = {
|
|
|
149
153
|
{
|
|
150
154
|
address: 'https://shentu-mainnet-api.shazoes.xyz',
|
|
151
155
|
provider: 'Shazoes'
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
address: 'https://api-shentu.onenov.xyz',
|
|
159
|
+
provider: 'OneNov'
|
|
152
160
|
}
|
|
153
161
|
],
|
|
154
162
|
grpc: [
|
|
@@ -191,6 +199,10 @@ const info = {
|
|
|
191
199
|
{
|
|
192
200
|
address: 'shentu-mainnet-grpc.shazoes.xyz:9090',
|
|
193
201
|
provider: 'Shazoes'
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
address: 'grpc-shentu.onenov.xyz:443',
|
|
205
|
+
provider: 'OneNov'
|
|
194
206
|
}
|
|
195
207
|
]
|
|
196
208
|
},
|
|
@@ -257,6 +269,12 @@ const info = {
|
|
|
257
269
|
url: 'https://explorer.node39.top/shentu',
|
|
258
270
|
txPage: 'https://explorer.node39.top/shentu/transactions/${txHash}',
|
|
259
271
|
accountPage: 'https://explorer.node39.top/shentu/accounts/${accountAddress}'
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
kind: 'OneNov Explorer',
|
|
275
|
+
url: 'https://explorer.onenov.xyz/shentu',
|
|
276
|
+
txPage: 'https://explorer.onenov.xyz/shentu/tx/${txHash}',
|
|
277
|
+
accountPage: 'https://explorer.onenov.xyz/shentu/account/${accountAddress}'
|
|
260
278
|
}
|
|
261
279
|
],
|
|
262
280
|
images: [{
|
package/mainnet/sunrise/chain.js
CHANGED
|
@@ -164,6 +164,10 @@ const info = {
|
|
|
164
164
|
{
|
|
165
165
|
address: 'https://rpc-sunrice.batana.space',
|
|
166
166
|
provider: 'batana'
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
address: 'https://rpc-sunrise.gombezzz.xyz',
|
|
170
|
+
provider: 'GombezzZ'
|
|
167
171
|
}
|
|
168
172
|
],
|
|
169
173
|
rest: [
|
|
@@ -270,6 +274,10 @@ const info = {
|
|
|
270
274
|
{
|
|
271
275
|
address: 'https://api-sunrice.batana.space',
|
|
272
276
|
provider: 'batana'
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
address: 'https://api-sunrise.gombezzz.xyz',
|
|
280
|
+
provider: 'GombezzZ'
|
|
273
281
|
}
|
|
274
282
|
],
|
|
275
283
|
grpc: [
|
|
@@ -322,7 +330,7 @@ const info = {
|
|
|
322
330
|
provider: 'Blockval'
|
|
323
331
|
},
|
|
324
332
|
{
|
|
325
|
-
address: 'https://sunrise-grpc.onenov.xyz:
|
|
333
|
+
address: 'https://sunrise-grpc.onenov.xyz:443',
|
|
326
334
|
provider: 'OneNov'
|
|
327
335
|
},
|
|
328
336
|
{
|
|
@@ -360,6 +368,10 @@ const info = {
|
|
|
360
368
|
{
|
|
361
369
|
address: 'grpc-sunrice.batana.space:443',
|
|
362
370
|
provider: 'batana'
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
address: 'grpc-sunrise.gombezzz.xyz:443',
|
|
374
|
+
provider: 'GombezzZ'
|
|
363
375
|
}
|
|
364
376
|
]
|
|
365
377
|
},
|
|
@@ -494,6 +506,12 @@ const info = {
|
|
|
494
506
|
url: 'https://explorer.batana.space/sunrise-mainnet',
|
|
495
507
|
txPage: 'https://explorer.batana.space/sunrise-mainnet/tx/${txHash}',
|
|
496
508
|
accountPage: 'https://explorer.batana.space/sunrise-mainnet/${accountAddress}'
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
kind: 'GombezzZ explorer',
|
|
512
|
+
url: 'https://explorer.gombezzz.xyz/sunrise-mainnet',
|
|
513
|
+
txPage: 'https://explorer.gombezzz.xyz/sunrise-mainnet/tx/${txHash}',
|
|
514
|
+
accountPage: 'https://explorer.gombezzz.xyz/sunrise-mainnet/${accountAddress}'
|
|
497
515
|
}
|
|
498
516
|
],
|
|
499
517
|
images: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.85",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@chain-registry/types": "^2.0.
|
|
32
|
+
"@chain-registry/types": "^2.0.85"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "7e48a29eee5ee6f51efbab6536f7d286b4d80c68"
|
|
43
43
|
}
|
|
@@ -245,6 +245,27 @@ const info = {
|
|
|
245
245
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/babylontestnet/images/logo.svg'
|
|
246
246
|
}],
|
|
247
247
|
typeAsset: 'sdk.coin'
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
description: 'Drop dTIA token',
|
|
251
|
+
denomUnits: [{
|
|
252
|
+
denom: 'factory/neutron1qex378awvwhsxealmrtuunn70f242u49dagqus6ug423paxyevyqvw9s3t/uTIA',
|
|
253
|
+
exponent: 0
|
|
254
|
+
}, {
|
|
255
|
+
denom: 'dTIA',
|
|
256
|
+
exponent: 6
|
|
257
|
+
}],
|
|
258
|
+
base: 'factory/neutron1qex378awvwhsxealmrtuunn70f242u49dagqus6ug423paxyevyqvw9s3t/uTIA',
|
|
259
|
+
name: 'Drop dTIA testnet',
|
|
260
|
+
display: 'dTIA',
|
|
261
|
+
symbol: 'dTIA',
|
|
262
|
+
logoURIs: {
|
|
263
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
|
|
264
|
+
},
|
|
265
|
+
images: [{
|
|
266
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
|
|
267
|
+
}],
|
|
268
|
+
typeAsset: 'sdk.coin'
|
|
248
269
|
}
|
|
249
270
|
]
|
|
250
271
|
};
|