chain-registry 1.69.92 → 1.69.94
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/humans/chain.js +4 -4
- package/esm/mainnet/mantrachain/ibc.js +29 -0
- package/esm/mainnet/milkyway/assets.js +91 -31
- package/esm/mainnet/milkyway/chain.js +7 -0
- package/esm/mainnet/osmosis/assets.js +90 -5
- package/esm/mainnet/stargaze/assets.js +64 -0
- package/esm/mainnet/stargaze/ibc.js +29 -0
- package/esm/mainnet/terra2/assets.js +30 -0
- package/esm/noncosmos/dogecoin/assets.js +1 -0
- package/esm/testnet/airchainstestnet/chain.js +8 -0
- package/esm/testnet/humanstestnet/chain.js +5 -5
- package/esm/testnet/manifesttestnet/assets.js +45 -3
- package/esm/testnet/neutrontestnet/ibc.js +29 -1
- package/esm/testnet/nibirutestnet/assets.js +38 -0
- package/esm/testnet/nolustestnet/chain.js +7 -7
- package/esm/testnet/nolustestnet/ibc.js +8 -8
- package/esm/testnet/osmosistestnet/assets.js +40 -0
- package/esm/testnet/osmosistestnet/ibc.js +30 -0
- package/mainnet/humans/chain.js +4 -4
- package/mainnet/mantrachain/ibc.js +29 -0
- package/mainnet/milkyway/assets.js +91 -31
- package/mainnet/milkyway/chain.js +7 -0
- package/mainnet/osmosis/assets.js +90 -5
- package/mainnet/stargaze/assets.js +64 -0
- package/mainnet/stargaze/ibc.js +29 -0
- package/mainnet/terra2/assets.js +30 -0
- package/noncosmos/dogecoin/assets.js +1 -0
- package/package.json +4 -4
- package/testnet/airchainstestnet/chain.js +8 -0
- package/testnet/humanstestnet/chain.js +5 -5
- package/testnet/manifesttestnet/assets.js +45 -3
- package/testnet/neutrontestnet/ibc.js +29 -1
- package/testnet/nibirutestnet/assets.js +38 -0
- package/testnet/nolustestnet/chain.js +7 -7
- package/testnet/nolustestnet/ibc.js +8 -8
- package/testnet/osmosistestnet/assets.js +40 -0
- package/testnet/osmosistestnet/ibc.js +30 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const info = {
|
|
2
2
|
$schema: '../../assetlist.schema.json',
|
|
3
3
|
chain_name: 'manifesttestnet',
|
|
4
|
-
assets: [
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
5
6
|
description: 'Manifest testnet native token',
|
|
6
7
|
denom_units: [{
|
|
7
8
|
denom: 'umfx',
|
|
@@ -23,7 +24,8 @@ const info = {
|
|
|
23
24
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg'
|
|
24
25
|
}],
|
|
25
26
|
type_asset: 'sdk.coin'
|
|
26
|
-
},
|
|
27
|
+
},
|
|
28
|
+
{
|
|
27
29
|
description: 'Proof of Authority token for the Manifest testnet',
|
|
28
30
|
denom_units: [{
|
|
29
31
|
denom: 'upoa',
|
|
@@ -45,6 +47,46 @@ const info = {
|
|
|
45
47
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg'
|
|
46
48
|
}],
|
|
47
49
|
type_asset: 'sdk.coin'
|
|
48
|
-
}
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
description: 'Osmosis token on Manifest Ledger Testnet',
|
|
53
|
+
denom_units: [{
|
|
54
|
+
denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
55
|
+
exponent: 0
|
|
56
|
+
}, {
|
|
57
|
+
denom: 'osmo',
|
|
58
|
+
exponent: 6
|
|
59
|
+
}],
|
|
60
|
+
type_asset: 'ics20',
|
|
61
|
+
base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
62
|
+
name: 'Osmosis',
|
|
63
|
+
display: 'osmo',
|
|
64
|
+
symbol: 'OSMO',
|
|
65
|
+
traces: [{
|
|
66
|
+
type: 'ibc',
|
|
67
|
+
counterparty: {
|
|
68
|
+
chain_name: 'osmosistestnet',
|
|
69
|
+
base_denom: 'uosmo',
|
|
70
|
+
channel_id: 'channel-10016'
|
|
71
|
+
},
|
|
72
|
+
chain: {
|
|
73
|
+
channel_id: 'channel-0',
|
|
74
|
+
path: 'transfer/channel-0/uosmo'
|
|
75
|
+
}
|
|
76
|
+
}],
|
|
77
|
+
images: [{
|
|
78
|
+
image_sync: {
|
|
79
|
+
chain_name: 'osmosistestnet',
|
|
80
|
+
base_denom: 'uosmo'
|
|
81
|
+
},
|
|
82
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
|
|
83
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png'
|
|
84
|
+
}],
|
|
85
|
+
logo_URIs: {
|
|
86
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
87
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
]
|
|
49
91
|
};
|
|
50
92
|
export default info;
|
|
@@ -43,6 +43,34 @@ const info = [
|
|
|
43
43
|
}
|
|
44
44
|
}]
|
|
45
45
|
},
|
|
46
|
+
{
|
|
47
|
+
$schema: '../../ibc_data.schema.json',
|
|
48
|
+
chain_1: {
|
|
49
|
+
chain_name: 'neutrontestnet',
|
|
50
|
+
client_id: '07-tendermint-338',
|
|
51
|
+
connection_id: 'connection-237'
|
|
52
|
+
},
|
|
53
|
+
chain_2: {
|
|
54
|
+
chain_name: 'nolustestnet',
|
|
55
|
+
client_id: '07-tendermint-1',
|
|
56
|
+
connection_id: 'connection-1'
|
|
57
|
+
},
|
|
58
|
+
channels: [{
|
|
59
|
+
chain_1: {
|
|
60
|
+
channel_id: 'channel-1061',
|
|
61
|
+
port_id: 'transfer'
|
|
62
|
+
},
|
|
63
|
+
chain_2: {
|
|
64
|
+
channel_id: 'channel-1',
|
|
65
|
+
port_id: 'transfer'
|
|
66
|
+
},
|
|
67
|
+
ordering: 'unordered',
|
|
68
|
+
version: 'ics20-1',
|
|
69
|
+
tags: {
|
|
70
|
+
status: 'live'
|
|
71
|
+
}
|
|
72
|
+
}]
|
|
73
|
+
},
|
|
46
74
|
{
|
|
47
75
|
$schema: '../../ibc_data.schema.json',
|
|
48
76
|
chain_1: {
|
|
@@ -51,7 +79,7 @@ const info = [
|
|
|
51
79
|
connection_id: 'connection-130'
|
|
52
80
|
},
|
|
53
81
|
chain_2: {
|
|
54
|
-
chain_name: '
|
|
82
|
+
chain_name: 'nolustestnet1',
|
|
55
83
|
client_id: '07-tendermint-2',
|
|
56
84
|
connection_id: 'connection-1'
|
|
57
85
|
},
|
|
@@ -38,6 +38,44 @@ const info = {
|
|
|
38
38
|
}
|
|
39
39
|
}],
|
|
40
40
|
type_asset: 'sdk.coin'
|
|
41
|
+
}, {
|
|
42
|
+
description: 'Liquid Staked Nibiru (Eris)',
|
|
43
|
+
extended_description: 'Liquid Staked Nibiru, powered by Eris Protocol\'s amplifier contracts. Nibiru is a smart contract ecosystem with a high-performance, EVM-equivalent execution layer. Nibiru is engineered to meet the growing demand for versatile, scalable, and easy-to-use Web3 applications.',
|
|
44
|
+
socials: {
|
|
45
|
+
website: 'https://nibiru.fi/docs/learn/liquid-stake/',
|
|
46
|
+
twitter: 'https://x.com/eris_protocol'
|
|
47
|
+
},
|
|
48
|
+
denom_units: [{
|
|
49
|
+
denom: 'tf/nibi1xsvylys33m0y3dpyz6he3xuv2rcdwtk843wg2xdvqhdty8wmr0wq9au5px/ampNIBIT',
|
|
50
|
+
exponent: 0
|
|
51
|
+
}, {
|
|
52
|
+
denom: 'stNIBI',
|
|
53
|
+
exponent: 6
|
|
54
|
+
}],
|
|
55
|
+
base: 'tf/nibi1xsvylys33m0y3dpyz6he3xuv2rcdwtk843wg2xdvqhdty8wmr0wq9au5px/ampNIBIT',
|
|
56
|
+
name: 'Liquid Staked Nibiru (Eris)',
|
|
57
|
+
display: 'stNIBI',
|
|
58
|
+
symbol: 'stNIBI',
|
|
59
|
+
logo_URIs: {
|
|
60
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.png',
|
|
61
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.svg'
|
|
62
|
+
},
|
|
63
|
+
images: [{
|
|
64
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.png',
|
|
65
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.svg',
|
|
66
|
+
theme: {
|
|
67
|
+
primary_color_hex: '#14c0ce'
|
|
68
|
+
}
|
|
69
|
+
}],
|
|
70
|
+
traces: [{
|
|
71
|
+
type: 'liquid-stake',
|
|
72
|
+
counterparty: {
|
|
73
|
+
chain_name: 'nibiru',
|
|
74
|
+
base_denom: 'unibi'
|
|
75
|
+
},
|
|
76
|
+
provider: 'Eris Protocol'
|
|
77
|
+
}],
|
|
78
|
+
type_asset: 'sdk.coin'
|
|
41
79
|
}]
|
|
42
80
|
};
|
|
43
81
|
export default info;
|
|
@@ -6,7 +6,7 @@ const info = {
|
|
|
6
6
|
network_type: 'testnet',
|
|
7
7
|
pretty_name: 'Nolus Testnet',
|
|
8
8
|
chain_type: 'cosmos',
|
|
9
|
-
chain_id: 'rila-
|
|
9
|
+
chain_id: 'rila-3',
|
|
10
10
|
bech32_prefix: 'nolus',
|
|
11
11
|
daemon_name: 'nolusd',
|
|
12
12
|
node_home: '$HOME/.nolusd',
|
|
@@ -35,23 +35,23 @@ const info = {
|
|
|
35
35
|
},
|
|
36
36
|
apis: {
|
|
37
37
|
rpc: [{
|
|
38
|
-
address: 'https://rila-
|
|
38
|
+
address: 'https://rila-rpc.nolus.network',
|
|
39
39
|
provider: 'NolusProtocol'
|
|
40
40
|
}],
|
|
41
41
|
rest: [{
|
|
42
|
-
address: 'https://rila-
|
|
42
|
+
address: 'https://rila-lcd.nolus.network',
|
|
43
43
|
provider: 'NolusProtocol'
|
|
44
44
|
}],
|
|
45
45
|
grpc: [{
|
|
46
|
-
address: 'https://rila-
|
|
46
|
+
address: 'https://rila-grpc.nolus.network',
|
|
47
47
|
provider: 'NolusProtocol'
|
|
48
48
|
}]
|
|
49
49
|
},
|
|
50
50
|
explorers: [{
|
|
51
51
|
kind: 'Nolus Explorer',
|
|
52
|
-
url: 'https://
|
|
53
|
-
tx_page: 'https://
|
|
54
|
-
account_page: 'https://
|
|
52
|
+
url: 'https://testnet.ping.pub/nolus/',
|
|
53
|
+
tx_page: 'https://testnet.ping.pub/nolus/tx/${txHash}',
|
|
54
|
+
account_page: 'https://testnet.ping.pub/nolus/account/${accountAddress}'
|
|
55
55
|
}],
|
|
56
56
|
keywords: ['testnet'],
|
|
57
57
|
images: [{
|
|
@@ -2,21 +2,21 @@ const info = [{
|
|
|
2
2
|
$schema: '../../ibc_data.schema.json',
|
|
3
3
|
chain_1: {
|
|
4
4
|
chain_name: 'neutrontestnet',
|
|
5
|
-
client_id: '07-tendermint-
|
|
6
|
-
connection_id: 'connection-
|
|
5
|
+
client_id: '07-tendermint-338',
|
|
6
|
+
connection_id: 'connection-237'
|
|
7
7
|
},
|
|
8
8
|
chain_2: {
|
|
9
9
|
chain_name: 'nolustestnet',
|
|
10
|
-
client_id: '07-tendermint-
|
|
10
|
+
client_id: '07-tendermint-1',
|
|
11
11
|
connection_id: 'connection-1'
|
|
12
12
|
},
|
|
13
13
|
channels: [{
|
|
14
14
|
chain_1: {
|
|
15
|
-
channel_id: 'channel-
|
|
15
|
+
channel_id: 'channel-1061',
|
|
16
16
|
port_id: 'transfer'
|
|
17
17
|
},
|
|
18
18
|
chain_2: {
|
|
19
|
-
channel_id: 'channel-
|
|
19
|
+
channel_id: 'channel-1',
|
|
20
20
|
port_id: 'transfer'
|
|
21
21
|
},
|
|
22
22
|
ordering: 'unordered',
|
|
@@ -34,8 +34,8 @@ const info = [{
|
|
|
34
34
|
},
|
|
35
35
|
chain_2: {
|
|
36
36
|
chain_name: 'osmosistestnet',
|
|
37
|
-
client_id: '07-tendermint-
|
|
38
|
-
connection_id: 'connection-
|
|
37
|
+
client_id: '07-tendermint-3711',
|
|
38
|
+
connection_id: 'connection-3235'
|
|
39
39
|
},
|
|
40
40
|
channels: [{
|
|
41
41
|
chain_1: {
|
|
@@ -43,7 +43,7 @@ const info = [{
|
|
|
43
43
|
port_id: 'transfer'
|
|
44
44
|
},
|
|
45
45
|
chain_2: {
|
|
46
|
-
channel_id: 'channel-
|
|
46
|
+
channel_id: 'channel-8272',
|
|
47
47
|
port_id: 'transfer'
|
|
48
48
|
},
|
|
49
49
|
ordering: 'unordered',
|
|
@@ -799,6 +799,46 @@ const info = {
|
|
|
799
799
|
images: [{
|
|
800
800
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png'
|
|
801
801
|
}]
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
description: 'Manifest Testnet Token',
|
|
805
|
+
denom_units: [{
|
|
806
|
+
denom: 'ibc/8402769A51AEE1CDF35223998D284E937EBF03F4A2CE43EC10BB028BB5AD29C8',
|
|
807
|
+
exponent: 0,
|
|
808
|
+
aliases: ['umfx']
|
|
809
|
+
}, {
|
|
810
|
+
denom: 'mfx',
|
|
811
|
+
exponent: 6
|
|
812
|
+
}],
|
|
813
|
+
type_asset: 'ics20',
|
|
814
|
+
base: 'ibc/8402769A51AEE1CDF35223998D284E937EBF03F4A2CE43EC10BB028BB5AD29C8',
|
|
815
|
+
name: 'Manifest Testnet',
|
|
816
|
+
display: 'mfx',
|
|
817
|
+
symbol: 'MFX',
|
|
818
|
+
traces: [{
|
|
819
|
+
type: 'ibc',
|
|
820
|
+
counterparty: {
|
|
821
|
+
chain_name: 'manifesttestnet',
|
|
822
|
+
base_denom: 'umfx',
|
|
823
|
+
channel_id: 'channel-0'
|
|
824
|
+
},
|
|
825
|
+
chain: {
|
|
826
|
+
channel_id: 'channel-10016',
|
|
827
|
+
path: 'transfer/channel-10016/umfx'
|
|
828
|
+
}
|
|
829
|
+
}],
|
|
830
|
+
logo_URIs: {
|
|
831
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifesttestnet/images/mfx.png',
|
|
832
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifesttestnet/images/mfx.svg'
|
|
833
|
+
},
|
|
834
|
+
images: [{
|
|
835
|
+
image_sync: {
|
|
836
|
+
chain_name: 'manifesttestnet',
|
|
837
|
+
base_denom: 'umfx'
|
|
838
|
+
},
|
|
839
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifesttestnet/images/mfx.png',
|
|
840
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifesttestnet/images/mfx.svg'
|
|
841
|
+
}]
|
|
802
842
|
}
|
|
803
843
|
]
|
|
804
844
|
};
|
|
@@ -716,6 +716,36 @@ const info = [
|
|
|
716
716
|
client_id: '07-tendermint-0',
|
|
717
717
|
connection_id: 'connection-0'
|
|
718
718
|
},
|
|
719
|
+
chain_2: {
|
|
720
|
+
chain_name: 'osmosistestnet',
|
|
721
|
+
client_id: '07-tendermint-3711',
|
|
722
|
+
connection_id: 'connection-3235'
|
|
723
|
+
},
|
|
724
|
+
channels: [{
|
|
725
|
+
chain_1: {
|
|
726
|
+
channel_id: 'channel-0',
|
|
727
|
+
port_id: 'transfer'
|
|
728
|
+
},
|
|
729
|
+
chain_2: {
|
|
730
|
+
channel_id: 'channel-8272',
|
|
731
|
+
port_id: 'transfer'
|
|
732
|
+
},
|
|
733
|
+
ordering: 'unordered',
|
|
734
|
+
version: 'ics20-1',
|
|
735
|
+
tags: {
|
|
736
|
+
status: 'live',
|
|
737
|
+
preferred: true,
|
|
738
|
+
dex: 'osmosis'
|
|
739
|
+
}
|
|
740
|
+
}]
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
$schema: '../../ibc_data.schema.json',
|
|
744
|
+
chain_1: {
|
|
745
|
+
chain_name: 'nolustestnet1',
|
|
746
|
+
client_id: '07-tendermint-0',
|
|
747
|
+
connection_id: 'connection-0'
|
|
748
|
+
},
|
|
719
749
|
chain_2: {
|
|
720
750
|
chain_name: 'osmosistestnet',
|
|
721
751
|
client_id: '07-tendermint-102',
|
package/mainnet/humans/chain.js
CHANGED
|
@@ -94,7 +94,7 @@ const info = {
|
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
address: 'https://humans-mainnet-rpc.cosmonautstakes.com',
|
|
97
|
-
provider: 'Cosmonaut Stakes
|
|
97
|
+
provider: 'Cosmonaut Stakes'
|
|
98
98
|
}
|
|
99
99
|
],
|
|
100
100
|
rest: [
|
|
@@ -152,7 +152,7 @@ const info = {
|
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
154
|
address: 'https://humans-mainnet-rest.cosmonautstakes.com',
|
|
155
|
-
provider: 'Cosmonaut Stakes
|
|
155
|
+
provider: 'Cosmonaut Stakes'
|
|
156
156
|
}
|
|
157
157
|
],
|
|
158
158
|
grpc: [
|
|
@@ -197,8 +197,8 @@ const info = {
|
|
|
197
197
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
|
-
address: 'humans-mainnet-grpc.cosmonautstakes.com:
|
|
201
|
-
provider: 'Cosmonaut Stakes
|
|
200
|
+
address: 'humans-mainnet-grpc.cosmonautstakes.com:14890',
|
|
201
|
+
provider: 'Cosmonaut Stakes'
|
|
202
202
|
}
|
|
203
203
|
],
|
|
204
204
|
"evm-http-jsonrpc": [
|
|
@@ -116,6 +116,35 @@ const info = [
|
|
|
116
116
|
preferred: true
|
|
117
117
|
}
|
|
118
118
|
}]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
$schema: '../ibc_data.schema.json',
|
|
122
|
+
chain_1: {
|
|
123
|
+
chain_name: 'mantrachain',
|
|
124
|
+
client_id: '07-tendermint-4',
|
|
125
|
+
connection_id: 'connection-4'
|
|
126
|
+
},
|
|
127
|
+
chain_2: {
|
|
128
|
+
chain_name: 'stargaze',
|
|
129
|
+
client_id: '07-tendermint-372',
|
|
130
|
+
connection_id: 'connection-332'
|
|
131
|
+
},
|
|
132
|
+
channels: [{
|
|
133
|
+
chain_1: {
|
|
134
|
+
channel_id: 'channel-4',
|
|
135
|
+
port_id: 'transfer'
|
|
136
|
+
},
|
|
137
|
+
chain_2: {
|
|
138
|
+
channel_id: 'channel-406',
|
|
139
|
+
port_id: 'transfer'
|
|
140
|
+
},
|
|
141
|
+
ordering: 'unordered',
|
|
142
|
+
version: 'ics20-1',
|
|
143
|
+
tags: {
|
|
144
|
+
status: 'live',
|
|
145
|
+
preferred: true
|
|
146
|
+
}
|
|
147
|
+
}]
|
|
119
148
|
}
|
|
120
149
|
];
|
|
121
150
|
exports.default = info;
|
|
@@ -36,6 +36,49 @@ const info = {
|
|
|
36
36
|
twitter: 'https://x.com/milky_way_zone'
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
|
+
{
|
|
40
|
+
description: 'The native token of the Celestia blockchain.',
|
|
41
|
+
denom_units: [{
|
|
42
|
+
denom: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
|
|
43
|
+
exponent: 0,
|
|
44
|
+
aliases: ['utia']
|
|
45
|
+
}, {
|
|
46
|
+
denom: 'TIA',
|
|
47
|
+
exponent: 6
|
|
48
|
+
}],
|
|
49
|
+
type_asset: 'ics20',
|
|
50
|
+
base: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
|
|
51
|
+
name: 'TIA',
|
|
52
|
+
display: 'TIA',
|
|
53
|
+
symbol: 'TIA',
|
|
54
|
+
traces: [{
|
|
55
|
+
type: 'ibc',
|
|
56
|
+
counterparty: {
|
|
57
|
+
chain_name: 'celestia',
|
|
58
|
+
base_denom: 'utia',
|
|
59
|
+
channel_id: 'channel-49'
|
|
60
|
+
},
|
|
61
|
+
chain: {
|
|
62
|
+
channel_id: 'channel-1',
|
|
63
|
+
path: 'transfer/channel-1/utia'
|
|
64
|
+
}
|
|
65
|
+
}],
|
|
66
|
+
logo_URIs: {
|
|
67
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
|
|
68
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
|
|
69
|
+
},
|
|
70
|
+
images: [{
|
|
71
|
+
image_sync: {
|
|
72
|
+
chain_name: 'celestia',
|
|
73
|
+
base_denom: 'utia'
|
|
74
|
+
},
|
|
75
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
|
|
76
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
|
|
77
|
+
theme: {
|
|
78
|
+
primary_color_hex: '#7c2cfb'
|
|
79
|
+
}
|
|
80
|
+
}]
|
|
81
|
+
},
|
|
39
82
|
{
|
|
40
83
|
description: 'The native token of the Celestia blockchain.',
|
|
41
84
|
denom_units: [{
|
|
@@ -43,13 +86,13 @@ const info = {
|
|
|
43
86
|
exponent: 0,
|
|
44
87
|
aliases: ['utia']
|
|
45
88
|
}, {
|
|
46
|
-
denom: '
|
|
89
|
+
denom: 'TIA',
|
|
47
90
|
exponent: 6
|
|
48
91
|
}],
|
|
49
92
|
type_asset: 'ics20',
|
|
50
93
|
base: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5',
|
|
51
94
|
name: 'Celestia',
|
|
52
|
-
display: '
|
|
95
|
+
display: 'TIA',
|
|
53
96
|
symbol: 'TIA',
|
|
54
97
|
traces: [{
|
|
55
98
|
type: 'ibc',
|
|
@@ -67,7 +110,7 @@ const info = {
|
|
|
67
110
|
counterparty: {
|
|
68
111
|
chain_name: 'osmosis',
|
|
69
112
|
base_denom: 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877',
|
|
70
|
-
channel_id: 'channel-
|
|
113
|
+
channel_id: 'channel-89298'
|
|
71
114
|
},
|
|
72
115
|
chain: {
|
|
73
116
|
channel_id: 'channel-0',
|
|
@@ -95,7 +138,7 @@ const info = {
|
|
|
95
138
|
denom_units: [{
|
|
96
139
|
denom: 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F',
|
|
97
140
|
exponent: 0,
|
|
98
|
-
aliases: ['
|
|
141
|
+
aliases: ['factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA']
|
|
99
142
|
}, {
|
|
100
143
|
denom: 'milkTIA',
|
|
101
144
|
exponent: 6
|
|
@@ -117,7 +160,7 @@ const info = {
|
|
|
117
160
|
counterparty: {
|
|
118
161
|
chain_name: 'osmosis',
|
|
119
162
|
base_denom: 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA',
|
|
120
|
-
channel_id: 'channel-
|
|
163
|
+
channel_id: 'channel-89298'
|
|
121
164
|
},
|
|
122
165
|
chain: {
|
|
123
166
|
channel_id: 'channel-0',
|
|
@@ -149,7 +192,7 @@ const info = {
|
|
|
149
192
|
}],
|
|
150
193
|
type_asset: 'ics20',
|
|
151
194
|
base: 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157',
|
|
152
|
-
name: '
|
|
195
|
+
name: 'stTIA',
|
|
153
196
|
display: 'stTIA',
|
|
154
197
|
symbol: 'stTIA',
|
|
155
198
|
traces: [
|
|
@@ -178,7 +221,7 @@ const info = {
|
|
|
178
221
|
counterparty: {
|
|
179
222
|
chain_name: 'osmosis',
|
|
180
223
|
base_denom: 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9',
|
|
181
|
-
channel_id: 'channel-
|
|
224
|
+
channel_id: 'channel-89298'
|
|
182
225
|
},
|
|
183
226
|
chain: {
|
|
184
227
|
channel_id: 'channel-0',
|
|
@@ -203,46 +246,63 @@ const info = {
|
|
|
203
246
|
}]
|
|
204
247
|
},
|
|
205
248
|
{
|
|
206
|
-
description: '
|
|
249
|
+
description: 'Drop\'s liquid staked TIA',
|
|
207
250
|
denom_units: [{
|
|
208
|
-
denom: 'ibc/
|
|
251
|
+
denom: 'ibc/4795C86F72EC2CB54E885A4A5B401BED9C333E008311ED9C4DE01BF546B44A21',
|
|
209
252
|
exponent: 0,
|
|
210
|
-
aliases: ['
|
|
253
|
+
aliases: ['udtia']
|
|
211
254
|
}, {
|
|
212
|
-
denom: '
|
|
255
|
+
denom: 'dTIA',
|
|
213
256
|
exponent: 6
|
|
214
257
|
}],
|
|
215
258
|
type_asset: 'ics20',
|
|
216
|
-
base: 'ibc/
|
|
217
|
-
name: '
|
|
218
|
-
display: '
|
|
219
|
-
symbol: '
|
|
220
|
-
traces: [
|
|
221
|
-
|
|
259
|
+
base: 'ibc/4795C86F72EC2CB54E885A4A5B401BED9C333E008311ED9C4DE01BF546B44A21',
|
|
260
|
+
name: 'dTIA',
|
|
261
|
+
display: 'dTIA',
|
|
262
|
+
symbol: 'dTIA',
|
|
263
|
+
traces: [
|
|
264
|
+
{
|
|
265
|
+
type: 'liquid-stake',
|
|
222
266
|
counterparty: {
|
|
223
267
|
chain_name: 'celestia',
|
|
224
|
-
base_denom: 'utia'
|
|
225
|
-
|
|
268
|
+
base_denom: 'utia'
|
|
269
|
+
},
|
|
270
|
+
provider: 'Drop Protocol'
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
type: 'ibc',
|
|
274
|
+
counterparty: {
|
|
275
|
+
chain_name: 'neutron',
|
|
276
|
+
base_denom: 'factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia',
|
|
277
|
+
channel_id: 'channel-10'
|
|
226
278
|
},
|
|
227
279
|
chain: {
|
|
228
|
-
channel_id: 'channel-
|
|
229
|
-
path: 'transfer/channel-
|
|
280
|
+
channel_id: 'channel-874',
|
|
281
|
+
path: 'transfer/channel-874/factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia'
|
|
230
282
|
}
|
|
231
|
-
}
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
type: 'ibc',
|
|
286
|
+
counterparty: {
|
|
287
|
+
chain_name: 'osmosis',
|
|
288
|
+
base_denom: 'ibc/C7A810C6ED1FC3FFC7C834A534D400EADC94FF7D3BE13DDD4C042AEF1816DFB4',
|
|
289
|
+
channel_id: 'channel-89298'
|
|
290
|
+
},
|
|
291
|
+
chain: {
|
|
292
|
+
channel_id: 'channel-0',
|
|
293
|
+
path: 'transfer/channel-0/transfer/channel-874/factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia'
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
],
|
|
232
297
|
logo_URIs: {
|
|
233
|
-
|
|
234
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
|
|
298
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
|
|
235
299
|
},
|
|
236
300
|
images: [{
|
|
237
301
|
image_sync: {
|
|
238
|
-
chain_name: '
|
|
239
|
-
base_denom: '
|
|
302
|
+
chain_name: 'neutron',
|
|
303
|
+
base_denom: 'factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia'
|
|
240
304
|
},
|
|
241
|
-
|
|
242
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg',
|
|
243
|
-
theme: {
|
|
244
|
-
primary_color_hex: '#7c2cfb'
|
|
245
|
-
}
|
|
305
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
|
|
246
306
|
}]
|
|
247
307
|
}
|
|
248
308
|
]
|
|
@@ -43,6 +43,13 @@ const info = {
|
|
|
43
43
|
low_gas_price: 0.0025,
|
|
44
44
|
average_gas_price: 0.003,
|
|
45
45
|
high_gas_price: 0.0035
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
denom: 'ibc/4795C86F72EC2CB54E885A4A5B401BED9C333E008311ED9C4DE01BF546B44A21',
|
|
49
|
+
fixed_min_gas_price: 0.002,
|
|
50
|
+
low_gas_price: 0.0025,
|
|
51
|
+
average_gas_price: 0.003,
|
|
52
|
+
high_gas_price: 0.0035
|
|
46
53
|
}
|
|
47
54
|
]
|
|
48
55
|
},
|