chain-registry 1.69.66 → 1.69.68
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/akash/ibc.js +29 -0
- package/esm/mainnet/axelar/ibc.js +29 -0
- package/esm/mainnet/beezee/assets.js +37 -0
- package/esm/mainnet/celestia/ibc.js +29 -0
- package/esm/mainnet/chihuahua/assets.js +31 -0
- package/esm/mainnet/composable/chain.js +8 -3
- package/esm/mainnet/cosmoshub/chain.js +8 -0
- package/esm/mainnet/cosmoshub/ibc.js +44 -0
- package/esm/mainnet/dungeon/chain.js +0 -8
- package/esm/mainnet/elys/chain.js +84 -0
- package/esm/mainnet/elys/ibc.js +192 -0
- package/esm/mainnet/elys/index.js +2 -0
- package/esm/mainnet/empowerchain/chain.js +18 -0
- package/esm/mainnet/fetchhub/assets.js +6 -0
- package/esm/mainnet/gitopia/chain.js +6 -6
- package/esm/mainnet/ibc.js +2 -0
- package/esm/mainnet/jackal/chain.js +4 -0
- package/esm/mainnet/kopi/chain.js +6 -6
- package/esm/mainnet/neutron/chain.js +8 -0
- package/esm/mainnet/noble/ibc.js +29 -0
- package/esm/mainnet/osmosis/ibc.js +29 -0
- package/esm/mainnet/pryzm/assets.js +375 -7
- package/esm/mainnet/realio/chain.js +14 -0
- package/esm/mainnet/source/chain.js +12 -8
- package/esm/mainnet/titan/chain.js +2 -2
- package/esm/mainnet/xion/chain.js +0 -14
- package/esm/mainnet/zetachain/chain.js +12 -0
- package/esm/testnet/assets.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/cosmoshubtestnet/ibc.js +19 -47
- package/esm/testnet/dymensiontestnet1/assets.js +62 -0
- package/esm/testnet/dymensiontestnet1/chain.js +46 -0
- package/esm/testnet/dymensiontestnet1/index.js +4 -0
- package/esm/testnet/elystestnet/ibc.js +2 -2
- package/esm/testnet/manifesttestnet/chain.js +9 -15
- package/esm/testnet/named.js +1 -0
- package/esm/testnet/nobletestnet/ibc.js +1 -1
- package/esm/testnet/sourcetestnet/chain.js +0 -11
- package/esm/testnet/symphonytestnet/ibc.js +0 -28
- package/esm/testnet/titantestnet/assets.js +42 -3
- package/mainnet/akash/ibc.js +29 -0
- package/mainnet/axelar/ibc.js +29 -0
- package/mainnet/beezee/assets.js +37 -0
- package/mainnet/celestia/ibc.js +29 -0
- package/mainnet/chihuahua/assets.js +31 -0
- package/mainnet/composable/chain.js +8 -3
- package/mainnet/cosmoshub/chain.js +8 -0
- package/mainnet/cosmoshub/ibc.js +44 -0
- package/mainnet/dungeon/chain.js +0 -8
- package/mainnet/elys/chain.js +84 -0
- package/mainnet/elys/ibc.d.ts +3 -0
- package/mainnet/elys/ibc.js +194 -0
- package/mainnet/elys/index.d.ts +1 -0
- package/mainnet/elys/index.js +3 -1
- package/mainnet/empowerchain/chain.js +18 -0
- package/mainnet/fetchhub/assets.js +6 -0
- package/mainnet/gitopia/chain.js +6 -6
- package/mainnet/ibc.js +2 -0
- package/mainnet/jackal/chain.js +4 -0
- package/mainnet/kopi/chain.js +6 -6
- package/mainnet/neutron/chain.js +8 -0
- package/mainnet/noble/ibc.js +29 -0
- package/mainnet/osmosis/ibc.js +29 -0
- package/mainnet/pryzm/assets.js +375 -7
- package/mainnet/realio/chain.js +14 -0
- package/mainnet/source/chain.js +12 -8
- package/mainnet/titan/chain.js +2 -2
- package/mainnet/xion/chain.js +0 -14
- package/mainnet/zetachain/chain.js +12 -0
- package/package.json +4 -4
- package/testnet/assets.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/cosmoshubtestnet/ibc.js +19 -47
- package/testnet/dymensiontestnet1/assets.d.ts +3 -0
- package/testnet/dymensiontestnet1/assets.js +64 -0
- package/testnet/dymensiontestnet1/chain.d.ts +3 -0
- package/testnet/dymensiontestnet1/chain.js +48 -0
- package/testnet/dymensiontestnet1/index.d.ts +2 -0
- package/testnet/dymensiontestnet1/index.js +10 -0
- package/testnet/elystestnet/ibc.js +2 -2
- package/testnet/manifesttestnet/chain.js +9 -15
- package/testnet/named.d.ts +1 -0
- package/testnet/named.js +4 -3
- package/testnet/nobletestnet/ibc.js +1 -1
- package/testnet/sourcetestnet/chain.js +0 -11
- package/testnet/symphonytestnet/ibc.js +0 -28
- package/testnet/titantestnet/assets.js +42 -3
package/esm/testnet/assets.js
CHANGED
|
@@ -26,6 +26,7 @@ import * as _desmostestnet from './desmostestnet';
|
|
|
26
26
|
import * as _dhealthtestnet from './dhealthtestnet';
|
|
27
27
|
import * as _doravotatestnet from './doravotatestnet';
|
|
28
28
|
import * as _dydxtestnet from './dydxtestnet';
|
|
29
|
+
import * as _dymensiontestnet1 from './dymensiontestnet1';
|
|
29
30
|
import * as _elystestnet from './elystestnet';
|
|
30
31
|
import * as _empetestnet from './empetestnet';
|
|
31
32
|
import * as _empowertestnet from './empowertestnet';
|
|
@@ -142,6 +143,7 @@ const assets = [
|
|
|
142
143
|
_dhealthtestnet.assets,
|
|
143
144
|
_doravotatestnet.assets,
|
|
144
145
|
_dydxtestnet.assets,
|
|
146
|
+
_dymensiontestnet1.assets,
|
|
145
147
|
_elystestnet.assets,
|
|
146
148
|
_empetestnet.assets,
|
|
147
149
|
_empowertestnet.assets,
|
package/esm/testnet/chains.js
CHANGED
|
@@ -26,6 +26,7 @@ import * as _desmostestnet from './desmostestnet';
|
|
|
26
26
|
import * as _dhealthtestnet from './dhealthtestnet';
|
|
27
27
|
import * as _doravotatestnet from './doravotatestnet';
|
|
28
28
|
import * as _dydxtestnet from './dydxtestnet';
|
|
29
|
+
import * as _dymensiontestnet1 from './dymensiontestnet1';
|
|
29
30
|
import * as _elystestnet from './elystestnet';
|
|
30
31
|
import * as _empetestnet from './empetestnet';
|
|
31
32
|
import * as _empowertestnet from './empowertestnet';
|
|
@@ -142,6 +143,7 @@ const chains = [
|
|
|
142
143
|
_dhealthtestnet.chain,
|
|
143
144
|
_doravotatestnet.chain,
|
|
144
145
|
_dydxtestnet.chain,
|
|
146
|
+
_dymensiontestnet1.chain,
|
|
145
147
|
_elystestnet.chain,
|
|
146
148
|
_empetestnet.chain,
|
|
147
149
|
_empowertestnet.chain,
|
|
@@ -1,86 +1,58 @@
|
|
|
1
1
|
const info = [
|
|
2
2
|
{
|
|
3
|
-
$schema: '
|
|
3
|
+
$schema: '../../ibc_data.schema.json',
|
|
4
4
|
chain_1: {
|
|
5
|
-
chain_name: '
|
|
6
|
-
client_id: '07-tendermint-
|
|
7
|
-
connection_id: 'connection-
|
|
5
|
+
chain_name: 'celestiatestnet3',
|
|
6
|
+
client_id: '07-tendermint-0',
|
|
7
|
+
connection_id: 'connection-0'
|
|
8
8
|
},
|
|
9
9
|
chain_2: {
|
|
10
|
-
chain_name: 'elystestnet',
|
|
11
|
-
client_id: '07-tendermint-19',
|
|
12
|
-
connection_id: 'connection-17'
|
|
13
|
-
},
|
|
14
|
-
channels: [{
|
|
15
|
-
chain_1: {
|
|
16
|
-
channel_id: 'channel-3302',
|
|
17
|
-
port_id: 'transfer'
|
|
18
|
-
},
|
|
19
|
-
chain_2: {
|
|
20
|
-
channel_id: 'channel-16',
|
|
21
|
-
port_id: 'transfer'
|
|
22
|
-
},
|
|
23
|
-
ordering: 'unordered',
|
|
24
|
-
version: 'ics20-1',
|
|
25
|
-
tags: {
|
|
26
|
-
status: 'live'
|
|
27
|
-
}
|
|
28
|
-
}]
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
$schema: '../ibc_data.schema.json',
|
|
32
|
-
chain_1: {
|
|
33
10
|
chain_name: 'cosmoshubtestnet',
|
|
34
|
-
client_id: '07-tendermint-
|
|
35
|
-
connection_id: 'connection-
|
|
36
|
-
},
|
|
37
|
-
chain_2: {
|
|
38
|
-
chain_name: 'symphonytestnet',
|
|
39
|
-
client_id: '07-tendermint-29',
|
|
40
|
-
connection_id: 'connection-14'
|
|
11
|
+
client_id: '07-tendermint-2382',
|
|
12
|
+
connection_id: 'connection-2727'
|
|
41
13
|
},
|
|
42
14
|
channels: [{
|
|
43
15
|
chain_1: {
|
|
44
|
-
channel_id: 'channel-
|
|
16
|
+
channel_id: 'channel-0',
|
|
45
17
|
port_id: 'transfer'
|
|
46
18
|
},
|
|
47
19
|
chain_2: {
|
|
48
|
-
channel_id: 'channel-
|
|
20
|
+
channel_id: 'channel-3152',
|
|
49
21
|
port_id: 'transfer'
|
|
50
22
|
},
|
|
51
23
|
ordering: 'unordered',
|
|
52
24
|
version: 'ics20-1',
|
|
53
25
|
tags: {
|
|
54
|
-
status: 'live'
|
|
26
|
+
status: 'live',
|
|
27
|
+
preferred: true
|
|
55
28
|
}
|
|
56
29
|
}]
|
|
57
30
|
},
|
|
58
31
|
{
|
|
59
32
|
$schema: '../../ibc_data.schema.json',
|
|
60
33
|
chain_1: {
|
|
61
|
-
chain_name: '
|
|
62
|
-
client_id: '07-tendermint-
|
|
63
|
-
connection_id: 'connection-
|
|
34
|
+
chain_name: 'cosmoshubtestnet',
|
|
35
|
+
client_id: '07-tendermint-2522',
|
|
36
|
+
connection_id: 'connection-2881'
|
|
64
37
|
},
|
|
65
38
|
chain_2: {
|
|
66
|
-
chain_name: '
|
|
67
|
-
client_id: '07-tendermint-
|
|
68
|
-
connection_id: 'connection-
|
|
39
|
+
chain_name: 'elystestnet',
|
|
40
|
+
client_id: '07-tendermint-19',
|
|
41
|
+
connection_id: 'connection-17'
|
|
69
42
|
},
|
|
70
43
|
channels: [{
|
|
71
44
|
chain_1: {
|
|
72
|
-
channel_id: 'channel-
|
|
45
|
+
channel_id: 'channel-3302',
|
|
73
46
|
port_id: 'transfer'
|
|
74
47
|
},
|
|
75
48
|
chain_2: {
|
|
76
|
-
channel_id: 'channel-
|
|
49
|
+
channel_id: 'channel-16',
|
|
77
50
|
port_id: 'transfer'
|
|
78
51
|
},
|
|
79
52
|
ordering: 'unordered',
|
|
80
53
|
version: 'ics20-1',
|
|
81
54
|
tags: {
|
|
82
|
-
status: 'live'
|
|
83
|
-
preferred: true
|
|
55
|
+
status: 'live'
|
|
84
56
|
}
|
|
85
57
|
}]
|
|
86
58
|
},
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chain_name: 'dymensiontestnet1',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native governance and staking token of the Dymension Hub',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'adym',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'dym',
|
|
11
|
+
exponent: 18
|
|
12
|
+
}],
|
|
13
|
+
type_asset: 'sdk.coin',
|
|
14
|
+
base: 'adym',
|
|
15
|
+
name: 'Dymension',
|
|
16
|
+
display: 'dym',
|
|
17
|
+
symbol: 'DYM'
|
|
18
|
+
}, {
|
|
19
|
+
description: 'USDC from Noble',
|
|
20
|
+
denom_units: [{
|
|
21
|
+
denom: 'ibc/E1E753928DE8EF6034F987F9E9C5F71ACF6AE7F5E221933D477BF745995B338B',
|
|
22
|
+
exponent: 0
|
|
23
|
+
}, {
|
|
24
|
+
denom: 'usdc',
|
|
25
|
+
exponent: 6
|
|
26
|
+
}],
|
|
27
|
+
type_asset: 'ics20',
|
|
28
|
+
base: 'ibc/E1E753928DE8EF6034F987F9E9C5F71ACF6AE7F5E221933D477BF745995B338B',
|
|
29
|
+
name: 'Noble USD Coin',
|
|
30
|
+
display: 'usdc',
|
|
31
|
+
symbol: 'USDC',
|
|
32
|
+
traces: [{
|
|
33
|
+
type: 'ibc',
|
|
34
|
+
counterparty: {
|
|
35
|
+
chain_name: 'nobletestnet',
|
|
36
|
+
base_denom: 'uusdc',
|
|
37
|
+
channel_id: 'channel-295'
|
|
38
|
+
},
|
|
39
|
+
chain: {
|
|
40
|
+
channel_id: 'channel-292',
|
|
41
|
+
path: 'transfer/channel-292/uusdc'
|
|
42
|
+
}
|
|
43
|
+
}],
|
|
44
|
+
images: [{
|
|
45
|
+
image_sync: {
|
|
46
|
+
chain_name: 'noble',
|
|
47
|
+
base_denom: 'uusdc'
|
|
48
|
+
},
|
|
49
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
50
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
|
|
51
|
+
theme: {
|
|
52
|
+
circle: true,
|
|
53
|
+
primary_color_hex: '#2775CA'
|
|
54
|
+
}
|
|
55
|
+
}],
|
|
56
|
+
logo_URIs: {
|
|
57
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
58
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
59
|
+
}
|
|
60
|
+
}]
|
|
61
|
+
};
|
|
62
|
+
export default info;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chain_name: 'dymensiontestnet1',
|
|
4
|
+
chain_type: 'cosmos',
|
|
5
|
+
chain_id: 'dymension_1405-1',
|
|
6
|
+
pretty_name: 'Dymension Playground Testnet',
|
|
7
|
+
status: 'live',
|
|
8
|
+
network_type: 'testnet',
|
|
9
|
+
website: 'https://playground.dymension.xyz',
|
|
10
|
+
bech32_prefix: 'dym',
|
|
11
|
+
daemon_name: 'dymd',
|
|
12
|
+
node_home: '$HOME/.dymension',
|
|
13
|
+
key_algos: ['ethsecp256k1'],
|
|
14
|
+
extra_codecs: ['ethermint'],
|
|
15
|
+
slip44: 60,
|
|
16
|
+
fees: {
|
|
17
|
+
fee_tokens: [{
|
|
18
|
+
denom: 'adym',
|
|
19
|
+
low_gas_price: 5000000000,
|
|
20
|
+
average_gas_price: 5500000000,
|
|
21
|
+
high_gas_price: 6000000000
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'adym'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {},
|
|
30
|
+
apis: {
|
|
31
|
+
rpc: [{
|
|
32
|
+
address: 'https://rpc-dym-migration-test-2.mzonder.com',
|
|
33
|
+
provider: 'mzonder'
|
|
34
|
+
}],
|
|
35
|
+
rest: [{
|
|
36
|
+
address: 'https://api-dym-migration-test-2.mzonder.com',
|
|
37
|
+
provider: 'mzonder'
|
|
38
|
+
}]
|
|
39
|
+
},
|
|
40
|
+
explorers: [{
|
|
41
|
+
kind: 'dymscan',
|
|
42
|
+
url: 'https://pg.dym.fyi/',
|
|
43
|
+
tx_page: 'https://pg.dym.fyi//tx/${txHash}'
|
|
44
|
+
}]
|
|
45
|
+
};
|
|
46
|
+
export default info;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const info = [
|
|
2
2
|
{
|
|
3
|
-
$schema: '
|
|
3
|
+
$schema: '../../ibc_data.schema.json',
|
|
4
4
|
chain_1: {
|
|
5
5
|
chain_name: 'cosmoshubtestnet',
|
|
6
6
|
client_id: '07-tendermint-2522',
|
|
@@ -28,7 +28,7 @@ const info = [
|
|
|
28
28
|
}]
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
|
-
$schema: '
|
|
31
|
+
$schema: '../../ibc_data.schema.json',
|
|
32
32
|
chain_1: {
|
|
33
33
|
chain_name: 'elystestnet',
|
|
34
34
|
client_id: '07-tendermint-9',
|
|
@@ -5,7 +5,7 @@ const info = {
|
|
|
5
5
|
network_type: 'testnet',
|
|
6
6
|
website: 'https://liftedinit.org/',
|
|
7
7
|
pretty_name: 'Manifest Testnet',
|
|
8
|
-
chain_id: 'manifest-ledger-
|
|
8
|
+
chain_id: 'manifest-ledger-testnet',
|
|
9
9
|
chain_type: 'cosmos',
|
|
10
10
|
bech32_prefix: 'manifest',
|
|
11
11
|
daemon_name: 'manifest',
|
|
@@ -28,28 +28,22 @@ const info = {
|
|
|
28
28
|
codebase: {},
|
|
29
29
|
apis: {
|
|
30
30
|
rpc: [{
|
|
31
|
-
address: 'https://nodes.
|
|
32
|
-
provider: '
|
|
33
|
-
}, {
|
|
34
|
-
address: 'https://manifest-beta-rpc.liftedinit.tech/',
|
|
35
|
-
provider: 'Lifted Initiative'
|
|
31
|
+
address: 'https://nodes.liftedinit.tech/manifest/testnet/rpc',
|
|
32
|
+
provider: 'The Lifted Initiative'
|
|
36
33
|
}],
|
|
37
34
|
rest: [{
|
|
38
|
-
address: 'https://nodes.
|
|
39
|
-
provider: '
|
|
40
|
-
}, {
|
|
41
|
-
address: 'https://manifest-beta-rest.liftedinit.tech/',
|
|
42
|
-
provider: 'Lifted Initiative'
|
|
35
|
+
address: 'https://nodes.liftedinit.tech/manifest/testnet/api',
|
|
36
|
+
provider: 'The Lifted Initiative'
|
|
43
37
|
}],
|
|
44
38
|
grpc: [{
|
|
45
|
-
address: 'https://manifest-
|
|
46
|
-
provider: 'Lifted Initiative'
|
|
39
|
+
address: 'https://manifest-testnet-grpc.liftedinit.tech',
|
|
40
|
+
provider: 'The Lifted Initiative'
|
|
47
41
|
}]
|
|
48
42
|
},
|
|
49
43
|
explorers: [{
|
|
50
44
|
kind: 'Default Explorer',
|
|
51
|
-
url: 'https://manifest
|
|
52
|
-
tx_page: 'https://manifest
|
|
45
|
+
url: 'https://testnet.manifest.explorers.guru/',
|
|
46
|
+
tx_page: 'https://testnet.manifest.explorers.guru/transactions'
|
|
53
47
|
}]
|
|
54
48
|
};
|
|
55
49
|
export default info;
|
package/esm/testnet/named.js
CHANGED
|
@@ -26,6 +26,7 @@ export * as desmostestnet from './desmostestnet';
|
|
|
26
26
|
export * as dhealthtestnet from './dhealthtestnet';
|
|
27
27
|
export * as doravotatestnet from './doravotatestnet';
|
|
28
28
|
export * as dydxtestnet from './dydxtestnet';
|
|
29
|
+
export * as dymensiontestnet1 from './dymensiontestnet1';
|
|
29
30
|
export * as elystestnet from './elystestnet';
|
|
30
31
|
export * as empetestnet from './empetestnet';
|
|
31
32
|
export * as empowertestnet from './empowertestnet';
|
|
@@ -36,10 +36,6 @@ const info = {
|
|
|
36
36
|
address: 'https://source-test.rpc.moonbridge.team/',
|
|
37
37
|
provider: 'MoonBridge'
|
|
38
38
|
},
|
|
39
|
-
{
|
|
40
|
-
address: 'https://source-testnet-rpc.stake-town.com:443',
|
|
41
|
-
provider: 'StakeTown'
|
|
42
|
-
},
|
|
43
39
|
{
|
|
44
40
|
address: 'https://rpc-testnet-source.sr20de.xyz',
|
|
45
41
|
provider: 'SR20DE'
|
|
@@ -62,10 +58,6 @@ const info = {
|
|
|
62
58
|
address: 'https://source-test.api.moonbridge.team/',
|
|
63
59
|
provider: 'MoonBridge'
|
|
64
60
|
},
|
|
65
|
-
{
|
|
66
|
-
address: 'https://source-testnet-api.stake-town.com:443',
|
|
67
|
-
provider: 'StakeTown'
|
|
68
|
-
},
|
|
69
61
|
{
|
|
70
62
|
address: 'https://api-testnet-source.sr20de.xyz',
|
|
71
63
|
provider: 'SR20DE'
|
|
@@ -80,9 +72,6 @@ const info = {
|
|
|
80
72
|
}
|
|
81
73
|
],
|
|
82
74
|
grpc: [{
|
|
83
|
-
address: 'source-testnet-grpc.stake-town.com:443',
|
|
84
|
-
provider: 'StakeTown'
|
|
85
|
-
}, {
|
|
86
75
|
address: 'grpc-testnet-source.sr20de.xyz/',
|
|
87
76
|
provider: 'SR20DE'
|
|
88
77
|
}]
|
|
@@ -1,32 +1,4 @@
|
|
|
1
1
|
const info = [
|
|
2
|
-
{
|
|
3
|
-
$schema: '../ibc_data.schema.json',
|
|
4
|
-
chain_1: {
|
|
5
|
-
chain_name: 'cosmoshubtestnet',
|
|
6
|
-
client_id: '07-tendermint-3748',
|
|
7
|
-
connection_id: 'connection-3798'
|
|
8
|
-
},
|
|
9
|
-
chain_2: {
|
|
10
|
-
chain_name: 'symphonytestnet',
|
|
11
|
-
client_id: '07-tendermint-29',
|
|
12
|
-
connection_id: 'connection-14'
|
|
13
|
-
},
|
|
14
|
-
channels: [{
|
|
15
|
-
chain_1: {
|
|
16
|
-
channel_id: 'channel-4320',
|
|
17
|
-
port_id: 'transfer'
|
|
18
|
-
},
|
|
19
|
-
chain_2: {
|
|
20
|
-
channel_id: 'channel-12',
|
|
21
|
-
port_id: 'transfer'
|
|
22
|
-
},
|
|
23
|
-
ordering: 'unordered',
|
|
24
|
-
version: 'ics20-1',
|
|
25
|
-
tags: {
|
|
26
|
-
status: 'live'
|
|
27
|
-
}
|
|
28
|
-
}]
|
|
29
|
-
},
|
|
30
2
|
{
|
|
31
3
|
$schema: '../../ibc_data.schema.json',
|
|
32
4
|
chain_1: {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const info = {
|
|
2
2
|
$schema: '../../assetlist.schema.json',
|
|
3
3
|
chain_name: 'titantestnet',
|
|
4
|
-
assets: [
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
5
6
|
description: 'The native token of the Titan network.',
|
|
6
7
|
denom_units: [
|
|
7
8
|
{
|
|
@@ -37,7 +38,8 @@ const info = {
|
|
|
37
38
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png'
|
|
38
39
|
},
|
|
39
40
|
type_asset: 'sdk.coin'
|
|
40
|
-
},
|
|
41
|
+
},
|
|
42
|
+
{
|
|
41
43
|
description: 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.',
|
|
42
44
|
denom_units: [{
|
|
43
45
|
denom: 'ibc/7C0807A56073C4A27B0DE1C21BA3EB75DF75FD763F4AD37BC159917FC01145F0',
|
|
@@ -87,6 +89,43 @@ const info = {
|
|
|
87
89
|
primary_color_hex: '#2775CA'
|
|
88
90
|
}
|
|
89
91
|
}]
|
|
90
|
-
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
description: 'Wrapped Bitcoin (BTC) is BTC token bridged from Bitcoin to titan chain through Titan bridge https://dev.titanearn.com/bridge',
|
|
95
|
+
denom_units: [{
|
|
96
|
+
denom: 'factory/titan1uvt40rsp68wtas0y75w34qdn5h0g5eyefy5gmvzftdnupyv7q7vq7jfynw/w-btc',
|
|
97
|
+
exponent: 0,
|
|
98
|
+
aliases: ['btc-satoshi']
|
|
99
|
+
}, {
|
|
100
|
+
denom: 'btc',
|
|
101
|
+
exponent: 8
|
|
102
|
+
}],
|
|
103
|
+
type_asset: 'sdk.coin',
|
|
104
|
+
address: 'titan1uvt40rsp68wtas0y75w34qdn5h0g5eyefy5gmvzftdnupyv7q7vq7jfynw',
|
|
105
|
+
base: 'factory/titan1uvt40rsp68wtas0y75w34qdn5h0g5eyefy5gmvzftdnupyv7q7vq7jfynw/w-btc',
|
|
106
|
+
name: 'Bitcoin',
|
|
107
|
+
display: 'btc',
|
|
108
|
+
symbol: 'BTC',
|
|
109
|
+
traces: [{
|
|
110
|
+
type: 'bridge',
|
|
111
|
+
counterparty: {
|
|
112
|
+
chain_name: 'bitcoin',
|
|
113
|
+
base_denom: 'sat'
|
|
114
|
+
},
|
|
115
|
+
provider: 'BitGo, Titanlab.io'
|
|
116
|
+
}],
|
|
117
|
+
logo_URIs: {
|
|
118
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png',
|
|
119
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg'
|
|
120
|
+
},
|
|
121
|
+
images: [{
|
|
122
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png',
|
|
123
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg',
|
|
124
|
+
theme: {
|
|
125
|
+
primary_color_hex: '#f39444'
|
|
126
|
+
}
|
|
127
|
+
}]
|
|
128
|
+
}
|
|
129
|
+
]
|
|
91
130
|
};
|
|
92
131
|
export default info;
|
package/mainnet/akash/ibc.js
CHANGED
|
@@ -138,6 +138,35 @@ const info = [
|
|
|
138
138
|
}
|
|
139
139
|
}]
|
|
140
140
|
},
|
|
141
|
+
{
|
|
142
|
+
$schema: '../ibc_data.schema.json',
|
|
143
|
+
chain_1: {
|
|
144
|
+
chain_name: 'akash',
|
|
145
|
+
client_id: '07-tendermint-191',
|
|
146
|
+
connection_id: 'connection-177'
|
|
147
|
+
},
|
|
148
|
+
chain_2: {
|
|
149
|
+
chain_name: 'elys',
|
|
150
|
+
client_id: '07-tendermint-6',
|
|
151
|
+
connection_id: 'connection-5'
|
|
152
|
+
},
|
|
153
|
+
channels: [{
|
|
154
|
+
chain_1: {
|
|
155
|
+
channel_id: 'channel-129',
|
|
156
|
+
port_id: 'transfer'
|
|
157
|
+
},
|
|
158
|
+
chain_2: {
|
|
159
|
+
channel_id: 'channel-5',
|
|
160
|
+
port_id: 'transfer'
|
|
161
|
+
},
|
|
162
|
+
ordering: 'unordered',
|
|
163
|
+
version: 'ics20-1',
|
|
164
|
+
tags: {
|
|
165
|
+
status: 'live',
|
|
166
|
+
preferred: true
|
|
167
|
+
}
|
|
168
|
+
}]
|
|
169
|
+
},
|
|
141
170
|
{
|
|
142
171
|
$schema: '../ibc_data.schema.json',
|
|
143
172
|
chain_1: {
|
package/mainnet/axelar/ibc.js
CHANGED
|
@@ -350,6 +350,35 @@ const info = [
|
|
|
350
350
|
}
|
|
351
351
|
}]
|
|
352
352
|
},
|
|
353
|
+
{
|
|
354
|
+
$schema: '../ibc_data.schema.json',
|
|
355
|
+
chain_1: {
|
|
356
|
+
chain_name: 'axelar',
|
|
357
|
+
client_id: '07-tendermint-231',
|
|
358
|
+
connection_id: 'connection-222'
|
|
359
|
+
},
|
|
360
|
+
chain_2: {
|
|
361
|
+
chain_name: 'elys',
|
|
362
|
+
client_id: '07-tendermint-4',
|
|
363
|
+
connection_id: 'connection-3'
|
|
364
|
+
},
|
|
365
|
+
channels: [{
|
|
366
|
+
chain_1: {
|
|
367
|
+
channel_id: 'channel-163',
|
|
368
|
+
port_id: 'transfer'
|
|
369
|
+
},
|
|
370
|
+
chain_2: {
|
|
371
|
+
channel_id: 'channel-3',
|
|
372
|
+
port_id: 'transfer'
|
|
373
|
+
},
|
|
374
|
+
ordering: 'unordered',
|
|
375
|
+
version: 'ics20-1',
|
|
376
|
+
tags: {
|
|
377
|
+
status: 'live',
|
|
378
|
+
preferred: true
|
|
379
|
+
}
|
|
380
|
+
}]
|
|
381
|
+
},
|
|
353
382
|
{
|
|
354
383
|
$schema: '../ibc_data.schema.json',
|
|
355
384
|
chain_1: {
|
package/mainnet/beezee/assets.js
CHANGED
|
@@ -356,6 +356,43 @@ const info = {
|
|
|
356
356
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png',
|
|
357
357
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg'
|
|
358
358
|
}
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
description: 'The Sherpa memecoin',
|
|
362
|
+
denom_units: [{
|
|
363
|
+
denom: 'ibc/02EE50AB3A4B7540FA001B24CB75E688016F65547CABE885EA184338440080B2',
|
|
364
|
+
exponent: 0
|
|
365
|
+
}, {
|
|
366
|
+
denom: 'Sherpa',
|
|
367
|
+
exponent: 6
|
|
368
|
+
}],
|
|
369
|
+
type_asset: 'ics20',
|
|
370
|
+
base: 'ibc/02EE50AB3A4B7540FA001B24CB75E688016F65547CABE885EA184338440080B2',
|
|
371
|
+
name: 'Sherpa',
|
|
372
|
+
display: 'Sherpa',
|
|
373
|
+
symbol: 'SHERPA',
|
|
374
|
+
logo_URIs: {
|
|
375
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sherpa.png'
|
|
376
|
+
},
|
|
377
|
+
images: [{
|
|
378
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sherpa.png',
|
|
379
|
+
theme: {
|
|
380
|
+
primary_color_hex: '#fe9cdf'
|
|
381
|
+
}
|
|
382
|
+
}],
|
|
383
|
+
keywords: ['meme'],
|
|
384
|
+
traces: [{
|
|
385
|
+
type: 'ibc',
|
|
386
|
+
counterparty: {
|
|
387
|
+
chain_name: 'osmosis',
|
|
388
|
+
base_denom: 'factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/usherpa',
|
|
389
|
+
channel_id: 'channel-340'
|
|
390
|
+
},
|
|
391
|
+
chain: {
|
|
392
|
+
channel_id: 'channel-0',
|
|
393
|
+
path: 'transfer/channel-0/factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/usherpa'
|
|
394
|
+
}
|
|
395
|
+
}]
|
|
359
396
|
}
|
|
360
397
|
]
|
|
361
398
|
};
|
package/mainnet/celestia/ibc.js
CHANGED
|
@@ -88,6 +88,35 @@ const info = [
|
|
|
88
88
|
}
|
|
89
89
|
}]
|
|
90
90
|
},
|
|
91
|
+
{
|
|
92
|
+
$schema: '../ibc_data.schema.json',
|
|
93
|
+
chain_1: {
|
|
94
|
+
chain_name: 'celestia',
|
|
95
|
+
client_id: '07-tendermint-95',
|
|
96
|
+
connection_id: 'connection-65'
|
|
97
|
+
},
|
|
98
|
+
chain_2: {
|
|
99
|
+
chain_name: 'elys',
|
|
100
|
+
client_id: '07-tendermint-5',
|
|
101
|
+
connection_id: 'connection-4'
|
|
102
|
+
},
|
|
103
|
+
channels: [{
|
|
104
|
+
chain_1: {
|
|
105
|
+
channel_id: 'channel-50',
|
|
106
|
+
port_id: 'transfer'
|
|
107
|
+
},
|
|
108
|
+
chain_2: {
|
|
109
|
+
channel_id: 'channel-4',
|
|
110
|
+
port_id: 'transfer'
|
|
111
|
+
},
|
|
112
|
+
ordering: 'unordered',
|
|
113
|
+
version: 'ics20-1',
|
|
114
|
+
tags: {
|
|
115
|
+
status: 'live',
|
|
116
|
+
preferred: true
|
|
117
|
+
}
|
|
118
|
+
}]
|
|
119
|
+
},
|
|
91
120
|
{
|
|
92
121
|
$schema: '../ibc_data.schema.json',
|
|
93
122
|
chain_1: {
|
|
@@ -390,6 +390,37 @@ const info = {
|
|
|
390
390
|
primary_color_hex: '#1c1c1c'
|
|
391
391
|
}
|
|
392
392
|
}]
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
description: 'Chihuahua coin',
|
|
396
|
+
extended_description: 'Chihuahua.baby! Chihuahuas may be small, but they possess a mighty spirit and strong energy. These little dogs are known for their boldness. They are confident, sassy, and full of spunk. They are not afraid to take on much larger adversaries when their loved ones are at stake. Chihuahuas thrive on human companionship and enjoy cuddling up with their owners, providing an abundance of love and affection! Woof woof woof...',
|
|
397
|
+
denom_units: [{
|
|
398
|
+
denom: 'factory/chihuahua1mzcfzh4ufk2cta59pm9a6wdyvv8c4v5epqzj46/Chihuahua',
|
|
399
|
+
exponent: 0
|
|
400
|
+
}, {
|
|
401
|
+
denom: 'Chihuahua',
|
|
402
|
+
exponent: 6
|
|
403
|
+
}],
|
|
404
|
+
base: 'factory/chihuahua1mzcfzh4ufk2cta59pm9a6wdyvv8c4v5epqzj46/Chihuahua',
|
|
405
|
+
name: 'Chihuahua',
|
|
406
|
+
display: 'Chihuahua',
|
|
407
|
+
symbol: 'CHIHUAHUA',
|
|
408
|
+
logo_URIs: {
|
|
409
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/chihuahua.png'
|
|
410
|
+
},
|
|
411
|
+
images: [{
|
|
412
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/chihuahua.png',
|
|
413
|
+
theme: {
|
|
414
|
+
primary_color_hex: '#444444',
|
|
415
|
+
background_color_hex: '#FFBF38',
|
|
416
|
+
circle: true
|
|
417
|
+
}
|
|
418
|
+
}],
|
|
419
|
+
socials: {
|
|
420
|
+
website: 'https://chihuahua.baby/',
|
|
421
|
+
twitter: 'https://x.com/chihuahuacoinx'
|
|
422
|
+
},
|
|
423
|
+
type_asset: 'sdk.coin'
|
|
393
424
|
}
|
|
394
425
|
]
|
|
395
426
|
};
|