chain-registry 1.69.44 → 1.69.46
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/beezee/assets.js +40 -0
- package/esm/mainnet/cosmoshub/ibc.js +29 -0
- package/esm/mainnet/dungeon/assets.js +1 -0
- package/esm/mainnet/mantrachain/chain.js +17 -0
- package/esm/mainnet/mantrachain/ibc.js +29 -0
- package/esm/mainnet/neutron/assets.js +32 -0
- package/esm/mainnet/osmosis/assets.js +442 -190
- package/esm/testnet/assets.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/named.js +1 -0
- package/esm/testnet/zenrocktestnet/assets.js +31 -0
- package/esm/testnet/zenrocktestnet/chain.js +58 -0
- package/esm/testnet/zenrocktestnet/index.js +4 -0
- package/mainnet/beezee/assets.js +40 -0
- package/mainnet/cosmoshub/ibc.js +29 -0
- package/mainnet/dungeon/assets.js +1 -0
- package/mainnet/mantrachain/chain.js +17 -0
- package/mainnet/mantrachain/ibc.js +29 -0
- package/mainnet/neutron/assets.js +32 -0
- package/mainnet/osmosis/assets.js +442 -190
- package/package.json +4 -4
- package/testnet/assets.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/named.d.ts +1 -0
- package/testnet/named.js +2 -1
- package/testnet/zenrocktestnet/assets.d.ts +3 -0
- package/testnet/zenrocktestnet/assets.js +33 -0
- package/testnet/zenrocktestnet/chain.d.ts +3 -0
- package/testnet/zenrocktestnet/chain.js +60 -0
- package/testnet/zenrocktestnet/index.d.ts +2 -0
- package/testnet/zenrocktestnet/index.js +10 -0
|
@@ -228,6 +228,46 @@ const info = {
|
|
|
228
228
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
229
229
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
230
230
|
}
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
description: 'The Spice memecoin',
|
|
234
|
+
denom_units: [{
|
|
235
|
+
denom: 'ibc/08EAEAB525E59C611D5BD8FAC4BE65DF65A69E62874377F6889BBD01A33F385F',
|
|
236
|
+
exponent: 0
|
|
237
|
+
}, {
|
|
238
|
+
denom: 'Spice',
|
|
239
|
+
exponent: 6
|
|
240
|
+
}],
|
|
241
|
+
type_asset: 'ics20',
|
|
242
|
+
base: 'ibc/08EAEAB525E59C611D5BD8FAC4BE65DF65A69E62874377F6889BBD01A33F385F',
|
|
243
|
+
name: 'Spice',
|
|
244
|
+
display: 'Spice',
|
|
245
|
+
symbol: 'SPICE',
|
|
246
|
+
logo_URIs: {
|
|
247
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/spice.png'
|
|
248
|
+
},
|
|
249
|
+
images: [{
|
|
250
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/spice.png',
|
|
251
|
+
theme: {
|
|
252
|
+
primary_color_hex: '#e5ba44'
|
|
253
|
+
}
|
|
254
|
+
}],
|
|
255
|
+
keywords: ['meme'],
|
|
256
|
+
socials: {
|
|
257
|
+
twitter: 'https://x.com/spiceoncosmos'
|
|
258
|
+
},
|
|
259
|
+
traces: [{
|
|
260
|
+
type: 'ibc',
|
|
261
|
+
counterparty: {
|
|
262
|
+
chain_name: 'osmosis',
|
|
263
|
+
base_denom: 'factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice',
|
|
264
|
+
channel_id: 'channel-340'
|
|
265
|
+
},
|
|
266
|
+
chain: {
|
|
267
|
+
channel_id: 'channel-0',
|
|
268
|
+
path: 'transfer/channel-0/factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice'
|
|
269
|
+
}
|
|
270
|
+
}]
|
|
231
271
|
}
|
|
232
272
|
]
|
|
233
273
|
};
|
|
@@ -1000,6 +1000,35 @@ const info = [
|
|
|
1000
1000
|
}
|
|
1001
1001
|
}]
|
|
1002
1002
|
},
|
|
1003
|
+
{
|
|
1004
|
+
$schema: '../ibc_data.schema.json',
|
|
1005
|
+
chain_1: {
|
|
1006
|
+
chain_name: 'cosmoshub',
|
|
1007
|
+
client_id: '07-tendermint-1331',
|
|
1008
|
+
connection_id: 'connection-1062'
|
|
1009
|
+
},
|
|
1010
|
+
chain_2: {
|
|
1011
|
+
chain_name: 'mantrachain',
|
|
1012
|
+
client_id: '07-tendermint-3',
|
|
1013
|
+
connection_id: 'connection-3'
|
|
1014
|
+
},
|
|
1015
|
+
channels: [{
|
|
1016
|
+
chain_1: {
|
|
1017
|
+
channel_id: 'channel-1252',
|
|
1018
|
+
port_id: 'transfer'
|
|
1019
|
+
},
|
|
1020
|
+
chain_2: {
|
|
1021
|
+
channel_id: 'channel-3',
|
|
1022
|
+
port_id: 'transfer'
|
|
1023
|
+
},
|
|
1024
|
+
ordering: 'unordered',
|
|
1025
|
+
version: 'ics20-1',
|
|
1026
|
+
tags: {
|
|
1027
|
+
status: 'live',
|
|
1028
|
+
preferred: true
|
|
1029
|
+
}
|
|
1030
|
+
}]
|
|
1031
|
+
},
|
|
1003
1032
|
{
|
|
1004
1033
|
$schema: '../ibc_data.schema.json',
|
|
1005
1034
|
chain_1: {
|
|
@@ -47,6 +47,10 @@ const info = {
|
|
|
47
47
|
{
|
|
48
48
|
address: 'https://mantra-mainnet-rpc.itrocket.net:443',
|
|
49
49
|
provider: 'ITRocket'
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
address: 'https://mantra.rpc.m.stavr.tech',
|
|
53
|
+
provider: '🔥STAVR🔥'
|
|
50
54
|
}
|
|
51
55
|
],
|
|
52
56
|
rest: [
|
|
@@ -69,6 +73,10 @@ const info = {
|
|
|
69
73
|
{
|
|
70
74
|
address: 'https://mantra-mainnet-api.itrocket.net',
|
|
71
75
|
provider: 'ITRocket'
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
address: 'https://mantra.api.m.stavr.tech',
|
|
79
|
+
provider: '🔥STAVR🔥'
|
|
72
80
|
}
|
|
73
81
|
],
|
|
74
82
|
grpc: [
|
|
@@ -91,6 +99,10 @@ const info = {
|
|
|
91
99
|
{
|
|
92
100
|
address: 'mantra-mainnet-grpc.itrocket.net:443',
|
|
93
101
|
provider: 'ITRocket'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
address: 'mantra.grpc.m.stavr.tech:3601',
|
|
105
|
+
provider: '🔥STAVR🔥'
|
|
94
106
|
}
|
|
95
107
|
]
|
|
96
108
|
},
|
|
@@ -103,6 +115,11 @@ const info = {
|
|
|
103
115
|
url: 'https://mainnet.itrocket.net/mantra',
|
|
104
116
|
tx_page: 'https://mainnet.itrocket.net/mantra/transaction/${txHash}',
|
|
105
117
|
account_page: 'https://mainnet.itrocket.net/mantra/account/${accountAddress}'
|
|
118
|
+
}, {
|
|
119
|
+
kind: '🔥STAVR🔥',
|
|
120
|
+
url: 'https://explorer.stavr.tech/Mantra-Mainnet',
|
|
121
|
+
tx_page: 'https://explorer.stavr.tech/Mantra-Mainnet/transaction/${txHash}',
|
|
122
|
+
account_page: 'https://explorer.stavr.tech/Mantra-Mainnet/account/${accountAddress}'
|
|
106
123
|
}],
|
|
107
124
|
keywords: [
|
|
108
125
|
'rwa',
|
|
@@ -1,4 +1,33 @@
|
|
|
1
1
|
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain_1: {
|
|
5
|
+
chain_name: 'cosmoshub',
|
|
6
|
+
client_id: '07-tendermint-1331',
|
|
7
|
+
connection_id: 'connection-1062'
|
|
8
|
+
},
|
|
9
|
+
chain_2: {
|
|
10
|
+
chain_name: 'mantrachain',
|
|
11
|
+
client_id: '07-tendermint-3',
|
|
12
|
+
connection_id: 'connection-3'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain_1: {
|
|
16
|
+
channel_id: 'channel-1252',
|
|
17
|
+
port_id: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain_2: {
|
|
20
|
+
channel_id: 'channel-3',
|
|
21
|
+
port_id: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {
|
|
26
|
+
status: 'live',
|
|
27
|
+
preferred: true
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
2
31
|
{
|
|
3
32
|
$schema: '../ibc_data.schema.json',
|
|
4
33
|
chain_1: {
|
|
@@ -1273,6 +1273,38 @@ const info = {
|
|
|
1273
1273
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xatom.svg'
|
|
1274
1274
|
}],
|
|
1275
1275
|
coingecko_id: 'astrovault-xatom'
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
description: 'The advance token for ATOM denominated vaults on Amulet Protocol',
|
|
1279
|
+
denom_units: [{
|
|
1280
|
+
denom: 'factory/neutron1shwxlkpdjd8h5wdtrykypwd2v62z5glr95yp0etdcspkkjwm5meq82ndxs/amatom',
|
|
1281
|
+
exponent: 0
|
|
1282
|
+
}, {
|
|
1283
|
+
denom: 'amATOM',
|
|
1284
|
+
exponent: 6
|
|
1285
|
+
}],
|
|
1286
|
+
base: 'factory/neutron1shwxlkpdjd8h5wdtrykypwd2v62z5glr95yp0etdcspkkjwm5meq82ndxs/amatom',
|
|
1287
|
+
name: 'amATOM',
|
|
1288
|
+
display: 'amATOM',
|
|
1289
|
+
symbol: 'amATOM',
|
|
1290
|
+
traces: [{
|
|
1291
|
+
type: 'synthetic',
|
|
1292
|
+
counterparty: {
|
|
1293
|
+
chain_name: 'neutron',
|
|
1294
|
+
base_denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
|
|
1295
|
+
contract: 'neutron16d4a7q3wfkkawj4jwyzz6g97xtmj0crkyn06ev74fu4xsgkwnreswzfpcy'
|
|
1296
|
+
},
|
|
1297
|
+
provider: 'Amulet'
|
|
1298
|
+
}],
|
|
1299
|
+
logo_URIs: {
|
|
1300
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/amATOM.png',
|
|
1301
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/amATOM.svg'
|
|
1302
|
+
},
|
|
1303
|
+
images: [{
|
|
1304
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/amATOM.png',
|
|
1305
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/amATOM.svg'
|
|
1306
|
+
}],
|
|
1307
|
+
type_asset: 'sdk.coin'
|
|
1276
1308
|
}
|
|
1277
1309
|
]
|
|
1278
1310
|
};
|