chain-registry 1.69.51 → 1.69.53
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/devnet/kyvedevnet/chain.js +5 -4
- package/esm/devnet/kyvedevnet/chain.js +5 -4
- package/esm/mainnet/assets.js +4 -0
- package/esm/mainnet/axelar/ibc.js +29 -0
- package/esm/mainnet/canto/ibc.js +29 -0
- package/esm/mainnet/celestia/ibc.js +29 -0
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/cosmoshub/ibc.js +29 -0
- package/esm/mainnet/ibc.js +4 -0
- package/esm/mainnet/injective/ibc.js +29 -0
- package/esm/mainnet/kyve/chain.js +14 -2
- package/esm/mainnet/milkyway/assets.js +248 -0
- package/esm/mainnet/milkyway/chain.js +89 -0
- package/esm/mainnet/milkyway/ibc.js +59 -0
- package/esm/mainnet/milkyway/index.js +6 -0
- package/esm/mainnet/named.js +2 -0
- package/esm/mainnet/noble/ibc.js +29 -0
- package/esm/mainnet/osmosis/assets.js +40 -0
- package/esm/mainnet/osmosis/ibc.js +59 -0
- package/esm/mainnet/pryzm/assets.js +417 -3
- package/esm/mainnet/xion/assets.js +34 -0
- package/esm/mainnet/xion/chain.js +100 -0
- package/esm/mainnet/xion/ibc.js +119 -0
- package/esm/mainnet/xion/index.js +6 -0
- package/esm/testnet/cosmosicsprovidertestnet/chain.js +14 -14
- package/esm/testnet/kyvetestnet/chain.js +7 -2
- package/esm/testnet/xiontestnet/assets.js +1 -0
- package/esm/testnet/xiontestnet/chain.js +22 -18
- package/mainnet/assets.js +4 -0
- package/mainnet/axelar/ibc.js +29 -0
- package/mainnet/canto/ibc.js +29 -0
- package/mainnet/celestia/ibc.js +29 -0
- package/mainnet/chains.js +4 -0
- package/mainnet/cosmoshub/ibc.js +29 -0
- package/mainnet/ibc.js +4 -0
- package/mainnet/injective/ibc.js +29 -0
- package/mainnet/kyve/chain.js +14 -2
- package/mainnet/milkyway/assets.d.ts +3 -0
- package/mainnet/milkyway/assets.js +250 -0
- package/mainnet/milkyway/chain.d.ts +3 -0
- package/mainnet/milkyway/chain.js +91 -0
- package/mainnet/milkyway/ibc.d.ts +3 -0
- package/mainnet/milkyway/ibc.js +61 -0
- package/mainnet/milkyway/index.d.ts +3 -0
- package/mainnet/milkyway/index.js +12 -0
- package/mainnet/named.d.ts +2 -0
- package/mainnet/named.js +4 -2
- package/mainnet/noble/ibc.js +29 -0
- package/mainnet/osmosis/assets.js +40 -0
- package/mainnet/osmosis/ibc.js +59 -0
- package/mainnet/pryzm/assets.js +417 -3
- package/mainnet/xion/assets.d.ts +3 -0
- package/mainnet/xion/assets.js +36 -0
- package/mainnet/xion/chain.d.ts +3 -0
- package/mainnet/xion/chain.js +102 -0
- package/mainnet/xion/ibc.d.ts +3 -0
- package/mainnet/xion/ibc.js +121 -0
- package/mainnet/xion/index.d.ts +3 -0
- package/mainnet/xion/index.js +12 -0
- package/package.json +4 -4
- package/testnet/cosmosicsprovidertestnet/chain.js +14 -14
- package/testnet/kyvetestnet/chain.js +7 -2
- package/testnet/xiontestnet/assets.js +1 -0
- package/testnet/xiontestnet/chain.js +22 -18
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'xion',
|
|
4
|
+
chain_id: 'xion-mainnet-1',
|
|
5
|
+
chain_type: 'cosmos',
|
|
6
|
+
pretty_name: 'Xion Mainnet',
|
|
7
|
+
website: 'https://burnt.com',
|
|
8
|
+
network_type: 'mainnet',
|
|
9
|
+
status: 'live',
|
|
10
|
+
bech32_prefix: 'xion',
|
|
11
|
+
daemon_name: 'xiond',
|
|
12
|
+
node_home: '$HOME/.xiond',
|
|
13
|
+
key_algos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'uxion',
|
|
18
|
+
fixed_min_gas_price: 0.001,
|
|
19
|
+
low_gas_price: 0.001,
|
|
20
|
+
average_gas_price: 0.001,
|
|
21
|
+
high_gas_price: 0.01
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'uxion'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {},
|
|
30
|
+
apis: {
|
|
31
|
+
rpc: [
|
|
32
|
+
{
|
|
33
|
+
address: 'https://rpc.xion-mainnet-1.burnt.com',
|
|
34
|
+
provider: '🔥BurntLabs🔥'
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
address: 'https://xion-rpc.lavenderfive.com',
|
|
38
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
address: 'https://rpc-burnt.imperator.co/',
|
|
42
|
+
provider: 'Imperator.co'
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
address: 'https://xion-rpc.polkachu.com',
|
|
46
|
+
provider: 'Polkachu'
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
rest: [
|
|
50
|
+
{
|
|
51
|
+
address: 'https://api.xion-mainnet-1.burnt.com',
|
|
52
|
+
provider: '🔥BurntLabs🔥'
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
address: 'https://xion-api.lavenderfive.com',
|
|
56
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
address: 'https://lcd-burnt.imperator.co/',
|
|
60
|
+
provider: 'Imperator.co'
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
address: 'https://xion-api.polkachu.com',
|
|
64
|
+
provider: 'Polkachu'
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
grpc: [
|
|
68
|
+
{
|
|
69
|
+
address: 'grpc.xion-mainnet-1.burnt.com:443',
|
|
70
|
+
provider: '🔥BurntLabs🔥'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
address: 'xion-grpc.lavenderfive.com:443',
|
|
74
|
+
provider: 'Lavender.Five Nodes 🐝'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
address: 'xion-grpc.polkachu.com:22390',
|
|
78
|
+
provider: 'Polkachu'
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
explorers: [{
|
|
83
|
+
url: 'https://explorer.burnt.com/xion-mainnet-1',
|
|
84
|
+
tx_page: 'https://explorer.burnt.com/xion-mainnet-1/tx/${txHash}',
|
|
85
|
+
account_page: 'https://explorer.burnt.com/xion-mainnet-1/account/${accountAddress}'
|
|
86
|
+
}],
|
|
87
|
+
images: [{
|
|
88
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png'
|
|
89
|
+
}],
|
|
90
|
+
logo_URIs: {
|
|
91
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png'
|
|
92
|
+
},
|
|
93
|
+
description: 'XION is the first walletless L1 blockchain purpose built for consumer adoption through chain abstraction.',
|
|
94
|
+
keywords: [
|
|
95
|
+
'xion',
|
|
96
|
+
'burnt',
|
|
97
|
+
'mainnet'
|
|
98
|
+
]
|
|
99
|
+
};
|
|
100
|
+
export default info;
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain_1: {
|
|
5
|
+
chain_name: 'axelar',
|
|
6
|
+
client_id: '07-tendermint-230',
|
|
7
|
+
connection_id: 'connection-221'
|
|
8
|
+
},
|
|
9
|
+
chain_2: {
|
|
10
|
+
chain_name: 'xion',
|
|
11
|
+
client_id: '07-tendermint-3',
|
|
12
|
+
connection_id: 'connection-3'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain_1: {
|
|
16
|
+
channel_id: 'channel-161',
|
|
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
|
+
},
|
|
31
|
+
{
|
|
32
|
+
$schema: '../ibc_data.schema.json',
|
|
33
|
+
chain_1: {
|
|
34
|
+
chain_name: 'injective',
|
|
35
|
+
client_id: '07-tendermint-279',
|
|
36
|
+
connection_id: 'connection-282'
|
|
37
|
+
},
|
|
38
|
+
chain_2: {
|
|
39
|
+
chain_name: 'xion',
|
|
40
|
+
client_id: '07-tendermint-4',
|
|
41
|
+
connection_id: 'connection-4'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain_1: {
|
|
45
|
+
channel_id: 'channel-387',
|
|
46
|
+
port_id: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain_2: {
|
|
49
|
+
channel_id: 'channel-4',
|
|
50
|
+
port_id: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
ordering: 'unordered',
|
|
53
|
+
version: 'ics20-1',
|
|
54
|
+
tags: {
|
|
55
|
+
status: 'live',
|
|
56
|
+
preferred: true
|
|
57
|
+
}
|
|
58
|
+
}]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
$schema: '../ibc_data.schema.json',
|
|
62
|
+
chain_1: {
|
|
63
|
+
chain_name: 'noble',
|
|
64
|
+
client_id: '07-tendermint-128',
|
|
65
|
+
connection_id: 'connection-124'
|
|
66
|
+
},
|
|
67
|
+
chain_2: {
|
|
68
|
+
chain_name: 'xion',
|
|
69
|
+
client_id: '07-tendermint-2',
|
|
70
|
+
connection_id: 'connection-2'
|
|
71
|
+
},
|
|
72
|
+
channels: [{
|
|
73
|
+
chain_1: {
|
|
74
|
+
channel_id: 'channel-113',
|
|
75
|
+
port_id: 'transfer'
|
|
76
|
+
},
|
|
77
|
+
chain_2: {
|
|
78
|
+
channel_id: 'channel-2',
|
|
79
|
+
port_id: 'transfer'
|
|
80
|
+
},
|
|
81
|
+
ordering: 'unordered',
|
|
82
|
+
version: 'ics20-1',
|
|
83
|
+
tags: {
|
|
84
|
+
status: 'live',
|
|
85
|
+
preferred: true
|
|
86
|
+
}
|
|
87
|
+
}]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
$schema: '../ibc_data.schema.json',
|
|
91
|
+
chain_1: {
|
|
92
|
+
chain_name: 'osmosis',
|
|
93
|
+
client_id: '07-tendermint-3366',
|
|
94
|
+
connection_id: 'connection-2823'
|
|
95
|
+
},
|
|
96
|
+
chain_2: {
|
|
97
|
+
chain_name: 'xion',
|
|
98
|
+
client_id: '07-tendermint-1',
|
|
99
|
+
connection_id: 'connection-1'
|
|
100
|
+
},
|
|
101
|
+
channels: [{
|
|
102
|
+
chain_1: {
|
|
103
|
+
channel_id: 'channel-89321',
|
|
104
|
+
port_id: 'transfer'
|
|
105
|
+
},
|
|
106
|
+
chain_2: {
|
|
107
|
+
channel_id: 'channel-1',
|
|
108
|
+
port_id: 'transfer'
|
|
109
|
+
},
|
|
110
|
+
ordering: 'unordered',
|
|
111
|
+
version: 'ics20-1',
|
|
112
|
+
tags: {
|
|
113
|
+
status: 'live',
|
|
114
|
+
preferred: true
|
|
115
|
+
}
|
|
116
|
+
}]
|
|
117
|
+
}
|
|
118
|
+
];
|
|
119
|
+
export default info;
|
|
@@ -29,55 +29,55 @@ const info = {
|
|
|
29
29
|
apis: {
|
|
30
30
|
rpc: [
|
|
31
31
|
{
|
|
32
|
-
address: 'https://rpc.provider-sentry-01.
|
|
32
|
+
address: 'https://rpc.provider-sentry-01.ics-testnet.polypore.xyz',
|
|
33
33
|
provider: 'Hypha'
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
address: 'https://rpc.provider-sentry-02.
|
|
36
|
+
address: 'https://rpc.provider-sentry-02.ics-testnet.polypore.xyz',
|
|
37
37
|
provider: 'Hypha'
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
|
-
address: 'https://rpc.provider-state-sync-01.
|
|
40
|
+
address: 'https://rpc.provider-state-sync-01.ics-testnet.polypore.xyz',
|
|
41
41
|
provider: 'Hypha'
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
address: 'https://rpc.provider-state-sync-02.
|
|
44
|
+
address: 'https://rpc.provider-state-sync-02.ics-testnet.polypore.xyz',
|
|
45
45
|
provider: 'Hypha'
|
|
46
46
|
}
|
|
47
47
|
],
|
|
48
48
|
rest: [
|
|
49
49
|
{
|
|
50
|
-
address: 'https://rest.provider-sentry-01.
|
|
50
|
+
address: 'https://rest.provider-sentry-01.ics-testnet.polypore.xyz',
|
|
51
51
|
provider: 'Hypha'
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
|
-
address: 'https://rest.provider-sentry-02.
|
|
54
|
+
address: 'https://rest.provider-sentry-02.ics-testnet.polypore.xyz',
|
|
55
55
|
provider: 'Hypha'
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
|
-
address: 'https://rest.provider-state-sync-01.
|
|
58
|
+
address: 'https://rest.provider-state-sync-01.ics-testnet.polypore.xyz',
|
|
59
59
|
provider: 'Hypha'
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
|
-
address: 'https://rest.provider-state-sync-02.
|
|
62
|
+
address: 'https://rest.provider-state-sync-02.ics-testnet.polypore.xyz',
|
|
63
63
|
provider: 'Hypha'
|
|
64
64
|
}
|
|
65
65
|
],
|
|
66
66
|
grpc: [
|
|
67
67
|
{
|
|
68
|
-
address: 'https://grpc.provider-sentry-01.
|
|
68
|
+
address: 'https://grpc.provider-sentry-01.ics-testnet.polypore.xyz',
|
|
69
69
|
provider: 'Hypha'
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
|
-
address: 'https://grpc.provider-sentry-02.
|
|
72
|
+
address: 'https://grpc.provider-sentry-02.ics-testnet.polypore.xyz',
|
|
73
73
|
provider: 'Hypha'
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
|
-
address: 'https://grpc.provider-state-sync-01.
|
|
76
|
+
address: 'https://grpc.provider-state-sync-01.ics-testnet.polypore.xyz',
|
|
77
77
|
provider: 'Hypha'
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
|
-
address: 'https://grpc.provider-state-sync-02.
|
|
80
|
+
address: 'https://grpc.provider-state-sync-02.ics-testnet.polypore.xyz',
|
|
81
81
|
provider: 'Hypha'
|
|
82
82
|
}
|
|
83
83
|
]
|
|
@@ -88,8 +88,8 @@ const info = {
|
|
|
88
88
|
tx_page: 'https://mintscan.io/ics-testnet-provider/tx/${txHash}'
|
|
89
89
|
}, {
|
|
90
90
|
kind: 'Ping.pub',
|
|
91
|
-
url: 'https://explorer.
|
|
92
|
-
tx_page: 'https://explorer.
|
|
91
|
+
url: 'https://explorer.polypore.xyz/provider',
|
|
92
|
+
tx_page: 'https://explorer.polypore.xyz/provider/tx/${txHash}'
|
|
93
93
|
}]
|
|
94
94
|
};
|
|
95
95
|
export default info;
|
|
@@ -29,7 +29,7 @@ const info = {
|
|
|
29
29
|
apis: {
|
|
30
30
|
rpc: [
|
|
31
31
|
{
|
|
32
|
-
address: 'https://rpc
|
|
32
|
+
address: 'https://rpc.kaon.kyve.network',
|
|
33
33
|
provider: 'kyve'
|
|
34
34
|
},
|
|
35
35
|
{
|
|
@@ -43,7 +43,7 @@ const info = {
|
|
|
43
43
|
],
|
|
44
44
|
rest: [
|
|
45
45
|
{
|
|
46
|
-
address: 'https://api
|
|
46
|
+
address: 'https://api.kaon.kyve.network',
|
|
47
47
|
provider: 'kyve'
|
|
48
48
|
},
|
|
49
49
|
{
|
|
@@ -61,6 +61,11 @@ const info = {
|
|
|
61
61
|
url: 'https://mintscan.io/kyve-testnet',
|
|
62
62
|
tx_page: 'https://mintscan.io/kyve-testnet/txs/${txHash}',
|
|
63
63
|
account_page: 'https://mintscan.io/kyve-testnet/account/${accountAddress}'
|
|
64
|
+
}, {
|
|
65
|
+
kind: 'KYVE Explorer',
|
|
66
|
+
url: 'https://explorer.kyve.network/kaon',
|
|
67
|
+
tx_page: 'https://explorer.kyve.network/kaon/tx/${txHash}',
|
|
68
|
+
account_page: 'https://explorer.kyve.network/kaon/account/${accountAddress}'
|
|
64
69
|
}]
|
|
65
70
|
};
|
|
66
71
|
export default info;
|
|
@@ -15,10 +15,10 @@ const info = {
|
|
|
15
15
|
fees: {
|
|
16
16
|
fee_tokens: [{
|
|
17
17
|
denom: 'uxion',
|
|
18
|
-
fixed_min_gas_price: 0,
|
|
19
|
-
low_gas_price: 0,
|
|
20
|
-
average_gas_price: 0.
|
|
21
|
-
high_gas_price: 0.
|
|
18
|
+
fixed_min_gas_price: 0.001,
|
|
19
|
+
low_gas_price: 0.001,
|
|
20
|
+
average_gas_price: 0.001,
|
|
21
|
+
high_gas_price: 0.01
|
|
22
22
|
}]
|
|
23
23
|
},
|
|
24
24
|
staking: {
|
|
@@ -29,13 +29,17 @@ const info = {
|
|
|
29
29
|
codebase: {},
|
|
30
30
|
apis: {
|
|
31
31
|
rpc: [
|
|
32
|
+
{
|
|
33
|
+
address: 'https://rpc.xion-testnet-1.burnt.com',
|
|
34
|
+
provider: '🔥BurntLabs🔥'
|
|
35
|
+
},
|
|
32
36
|
{
|
|
33
37
|
address: 'https://testnet-burnt-rpc.lavenderfive.com',
|
|
34
38
|
provider: 'Lavender.Five Nodes 🐝'
|
|
35
39
|
},
|
|
36
40
|
{
|
|
37
41
|
address: 'https://xion-testnet-rpc.polkachu.com',
|
|
38
|
-
provider: '
|
|
42
|
+
provider: 'Polkachu'
|
|
39
43
|
},
|
|
40
44
|
{
|
|
41
45
|
address: 'https://burnt-testnet-rpc.itrocket.net',
|
|
@@ -43,13 +47,17 @@ const info = {
|
|
|
43
47
|
}
|
|
44
48
|
],
|
|
45
49
|
rest: [
|
|
50
|
+
{
|
|
51
|
+
address: 'https://api.xion-testnet-1.burnt.com',
|
|
52
|
+
provider: '🔥BurntLabs🔥'
|
|
53
|
+
},
|
|
46
54
|
{
|
|
47
55
|
address: 'https://testnet-burnt-api.lavenderfive.com',
|
|
48
56
|
provider: 'Lavender.Five Nodes 🐝'
|
|
49
57
|
},
|
|
50
58
|
{
|
|
51
59
|
address: 'https://xion-testnet-api.polkachu.com',
|
|
52
|
-
provider: '
|
|
60
|
+
provider: 'Polkachu'
|
|
53
61
|
},
|
|
54
62
|
{
|
|
55
63
|
address: 'https://burnt-testnet-api.itrocket.net',
|
|
@@ -57,13 +65,17 @@ const info = {
|
|
|
57
65
|
}
|
|
58
66
|
],
|
|
59
67
|
grpc: [
|
|
68
|
+
{
|
|
69
|
+
address: 'grpc.xion-testnet-1.burnt.com:443',
|
|
70
|
+
provider: '🔥BurntLabs🔥'
|
|
71
|
+
},
|
|
60
72
|
{
|
|
61
73
|
address: 'testnet-burnt-grpc.lavenderfive.com:443',
|
|
62
74
|
provider: 'Lavender.Five Nodes 🐝'
|
|
63
75
|
},
|
|
64
76
|
{
|
|
65
77
|
address: 'xion-testnet-grpc.polkachu.com:22390',
|
|
66
|
-
provider: '
|
|
78
|
+
provider: 'Polkachu'
|
|
67
79
|
},
|
|
68
80
|
{
|
|
69
81
|
address: 'burnt-testnet-grpc.itrocket.net:443',
|
|
@@ -71,24 +83,16 @@ const info = {
|
|
|
71
83
|
}
|
|
72
84
|
]
|
|
73
85
|
},
|
|
74
|
-
explorers: [
|
|
75
|
-
{
|
|
86
|
+
explorers: [{
|
|
76
87
|
url: 'https://explorer.burnt.com/xion-testnet-1',
|
|
77
88
|
tx_page: 'https://explorer.burnt.com/xion-testnet-1/tx/${txHash}',
|
|
78
89
|
account_page: 'https://explorer.burnt.com/xion-testnet-1/account/${accountAddress}'
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
url: 'https://testnet.xion.explorers.guru',
|
|
82
|
-
tx_page: 'https://testnet.xion.explorers.guru/transaction/${txHash}',
|
|
83
|
-
account_page: 'https://testnet.xion.explorers.guru/account/${accountAddress}'
|
|
84
|
-
},
|
|
85
|
-
{
|
|
90
|
+
}, {
|
|
86
91
|
kind: 'ITRocket',
|
|
87
92
|
url: 'https://testnet.itrocket.net/burnt',
|
|
88
93
|
tx_page: 'https://testnet.itrocket.net/burnt/tx/${txHash}',
|
|
89
94
|
account_page: 'https://testnet.itrocket.net/burnt/account/${accountAddress}'
|
|
90
|
-
}
|
|
91
|
-
],
|
|
95
|
+
}],
|
|
92
96
|
images: [{
|
|
93
97
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt.png'
|
|
94
98
|
}],
|
package/mainnet/assets.js
CHANGED
|
@@ -128,6 +128,7 @@ const _mayachain = __importStar(require("./mayachain"));
|
|
|
128
128
|
const _medasdigital = __importStar(require("./medasdigital"));
|
|
129
129
|
const _meme = __importStar(require("./meme"));
|
|
130
130
|
const _migaloo = __importStar(require("./migaloo"));
|
|
131
|
+
const _milkyway = __importStar(require("./milkyway"));
|
|
131
132
|
const _mises = __importStar(require("./mises"));
|
|
132
133
|
const _mtgbp = __importStar(require("./mtgbp"));
|
|
133
134
|
const _mun = __importStar(require("./mun"));
|
|
@@ -205,6 +206,7 @@ const _unicorn = __importStar(require("./unicorn"));
|
|
|
205
206
|
const _unification = __importStar(require("./unification"));
|
|
206
207
|
const _ununifi = __importStar(require("./ununifi"));
|
|
207
208
|
const _uptick = __importStar(require("./uptick"));
|
|
209
|
+
const _xion = __importStar(require("./xion"));
|
|
208
210
|
const _xpla = __importStar(require("./xpla"));
|
|
209
211
|
const _zetachain = __importStar(require("./zetachain"));
|
|
210
212
|
const assets = [
|
|
@@ -313,6 +315,7 @@ const assets = [
|
|
|
313
315
|
_medasdigital.assets,
|
|
314
316
|
_meme.assets,
|
|
315
317
|
_migaloo.assets,
|
|
318
|
+
_milkyway.assets,
|
|
316
319
|
_mises.assets,
|
|
317
320
|
_mtgbp.assets,
|
|
318
321
|
_mun.assets,
|
|
@@ -390,6 +393,7 @@ const assets = [
|
|
|
390
393
|
_unification.assets,
|
|
391
394
|
_ununifi.assets,
|
|
392
395
|
_uptick.assets,
|
|
396
|
+
_xion.assets,
|
|
393
397
|
_xpla.assets,
|
|
394
398
|
_zetachain.assets
|
|
395
399
|
];
|
package/mainnet/axelar/ibc.js
CHANGED
|
@@ -1240,6 +1240,35 @@ const info = [
|
|
|
1240
1240
|
status: 'live'
|
|
1241
1241
|
}
|
|
1242
1242
|
}]
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
$schema: '../ibc_data.schema.json',
|
|
1246
|
+
chain_1: {
|
|
1247
|
+
chain_name: 'axelar',
|
|
1248
|
+
client_id: '07-tendermint-230',
|
|
1249
|
+
connection_id: 'connection-221'
|
|
1250
|
+
},
|
|
1251
|
+
chain_2: {
|
|
1252
|
+
chain_name: 'xion',
|
|
1253
|
+
client_id: '07-tendermint-3',
|
|
1254
|
+
connection_id: 'connection-3'
|
|
1255
|
+
},
|
|
1256
|
+
channels: [{
|
|
1257
|
+
chain_1: {
|
|
1258
|
+
channel_id: 'channel-161',
|
|
1259
|
+
port_id: 'transfer'
|
|
1260
|
+
},
|
|
1261
|
+
chain_2: {
|
|
1262
|
+
channel_id: 'channel-3',
|
|
1263
|
+
port_id: 'transfer'
|
|
1264
|
+
},
|
|
1265
|
+
ordering: 'unordered',
|
|
1266
|
+
version: 'ics20-1',
|
|
1267
|
+
tags: {
|
|
1268
|
+
status: 'live',
|
|
1269
|
+
preferred: true
|
|
1270
|
+
}
|
|
1271
|
+
}]
|
|
1243
1272
|
}
|
|
1244
1273
|
];
|
|
1245
1274
|
exports.default = info;
|
package/mainnet/canto/ibc.js
CHANGED
|
@@ -60,6 +60,35 @@ const info = [
|
|
|
60
60
|
}
|
|
61
61
|
}]
|
|
62
62
|
},
|
|
63
|
+
{
|
|
64
|
+
$schema: '../ibc_data.schema.json',
|
|
65
|
+
chain_1: {
|
|
66
|
+
chain_name: 'canto',
|
|
67
|
+
client_id: '07-tendermint-1',
|
|
68
|
+
connection_id: 'connection-3'
|
|
69
|
+
},
|
|
70
|
+
chain_2: {
|
|
71
|
+
chain_name: 'cosmoshub',
|
|
72
|
+
client_id: '07-tendermint-873',
|
|
73
|
+
connection_id: 'connection-604'
|
|
74
|
+
},
|
|
75
|
+
channels: [{
|
|
76
|
+
chain_1: {
|
|
77
|
+
channel_id: 'channel-2',
|
|
78
|
+
port_id: 'transfer'
|
|
79
|
+
},
|
|
80
|
+
chain_2: {
|
|
81
|
+
channel_id: 'channel-358',
|
|
82
|
+
port_id: 'transfer'
|
|
83
|
+
},
|
|
84
|
+
ordering: 'unordered',
|
|
85
|
+
version: 'ics20-1',
|
|
86
|
+
tags: {
|
|
87
|
+
status: 'live',
|
|
88
|
+
preferred: true
|
|
89
|
+
}
|
|
90
|
+
}]
|
|
91
|
+
},
|
|
63
92
|
{
|
|
64
93
|
$schema: '../ibc_data.schema.json',
|
|
65
94
|
chain_1: {
|
package/mainnet/celestia/ibc.js
CHANGED
|
@@ -175,6 +175,35 @@ const info = [
|
|
|
175
175
|
}
|
|
176
176
|
}]
|
|
177
177
|
},
|
|
178
|
+
{
|
|
179
|
+
$schema: '../ibc_data.schema.json',
|
|
180
|
+
chain_1: {
|
|
181
|
+
chain_name: 'celestia',
|
|
182
|
+
client_id: '07-tendermint-94',
|
|
183
|
+
connection_id: 'connection-64'
|
|
184
|
+
},
|
|
185
|
+
chain_2: {
|
|
186
|
+
chain_name: 'milkyway',
|
|
187
|
+
client_id: '07-tendermint-2',
|
|
188
|
+
connection_id: 'connection-1'
|
|
189
|
+
},
|
|
190
|
+
channels: [{
|
|
191
|
+
chain_1: {
|
|
192
|
+
channel_id: 'channel-49',
|
|
193
|
+
port_id: 'transfer'
|
|
194
|
+
},
|
|
195
|
+
chain_2: {
|
|
196
|
+
channel_id: 'channel-1',
|
|
197
|
+
port_id: 'transfer'
|
|
198
|
+
},
|
|
199
|
+
ordering: 'unordered',
|
|
200
|
+
version: 'ics20-1',
|
|
201
|
+
tags: {
|
|
202
|
+
status: 'live',
|
|
203
|
+
preferred: true
|
|
204
|
+
}
|
|
205
|
+
}]
|
|
206
|
+
},
|
|
178
207
|
{
|
|
179
208
|
$schema: '../ibc_data.schema.json',
|
|
180
209
|
chain_1: {
|
package/mainnet/chains.js
CHANGED
|
@@ -128,6 +128,7 @@ const _mayachain = __importStar(require("./mayachain"));
|
|
|
128
128
|
const _medasdigital = __importStar(require("./medasdigital"));
|
|
129
129
|
const _meme = __importStar(require("./meme"));
|
|
130
130
|
const _migaloo = __importStar(require("./migaloo"));
|
|
131
|
+
const _milkyway = __importStar(require("./milkyway"));
|
|
131
132
|
const _mises = __importStar(require("./mises"));
|
|
132
133
|
const _mtgbp = __importStar(require("./mtgbp"));
|
|
133
134
|
const _mun = __importStar(require("./mun"));
|
|
@@ -205,6 +206,7 @@ const _unicorn = __importStar(require("./unicorn"));
|
|
|
205
206
|
const _unification = __importStar(require("./unification"));
|
|
206
207
|
const _ununifi = __importStar(require("./ununifi"));
|
|
207
208
|
const _uptick = __importStar(require("./uptick"));
|
|
209
|
+
const _xion = __importStar(require("./xion"));
|
|
208
210
|
const _xpla = __importStar(require("./xpla"));
|
|
209
211
|
const _zetachain = __importStar(require("./zetachain"));
|
|
210
212
|
const chains = [
|
|
@@ -313,6 +315,7 @@ const chains = [
|
|
|
313
315
|
_medasdigital.chain,
|
|
314
316
|
_meme.chain,
|
|
315
317
|
_migaloo.chain,
|
|
318
|
+
_milkyway.chain,
|
|
316
319
|
_mises.chain,
|
|
317
320
|
_mtgbp.chain,
|
|
318
321
|
_mun.chain,
|
|
@@ -390,6 +393,7 @@ const chains = [
|
|
|
390
393
|
_unification.chain,
|
|
391
394
|
_ununifi.chain,
|
|
392
395
|
_uptick.chain,
|
|
396
|
+
_xion.chain,
|
|
393
397
|
_xpla.chain,
|
|
394
398
|
_zetachain.chain
|
|
395
399
|
];
|
package/mainnet/cosmoshub/ibc.js
CHANGED
|
@@ -287,6 +287,35 @@ const info = [
|
|
|
287
287
|
}
|
|
288
288
|
}]
|
|
289
289
|
},
|
|
290
|
+
{
|
|
291
|
+
$schema: '../ibc_data.schema.json',
|
|
292
|
+
chain_1: {
|
|
293
|
+
chain_name: 'canto',
|
|
294
|
+
client_id: '07-tendermint-1',
|
|
295
|
+
connection_id: 'connection-3'
|
|
296
|
+
},
|
|
297
|
+
chain_2: {
|
|
298
|
+
chain_name: 'cosmoshub',
|
|
299
|
+
client_id: '07-tendermint-873',
|
|
300
|
+
connection_id: 'connection-604'
|
|
301
|
+
},
|
|
302
|
+
channels: [{
|
|
303
|
+
chain_1: {
|
|
304
|
+
channel_id: 'channel-2',
|
|
305
|
+
port_id: 'transfer'
|
|
306
|
+
},
|
|
307
|
+
chain_2: {
|
|
308
|
+
channel_id: 'channel-358',
|
|
309
|
+
port_id: 'transfer'
|
|
310
|
+
},
|
|
311
|
+
ordering: 'unordered',
|
|
312
|
+
version: 'ics20-1',
|
|
313
|
+
tags: {
|
|
314
|
+
status: 'live',
|
|
315
|
+
preferred: true
|
|
316
|
+
}
|
|
317
|
+
}]
|
|
318
|
+
},
|
|
290
319
|
{
|
|
291
320
|
$schema: '../ibc_data.schema.json',
|
|
292
321
|
chain_1: {
|