chain-registry 2.0.87 → 2.0.89

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.
Files changed (62) hide show
  1. package/esm/mainnet/atomone/ibc-data.js +62 -0
  2. package/esm/mainnet/axelar/asset-list.js +1 -2
  3. package/esm/mainnet/axelar/ibc-data.js +31 -0
  4. package/esm/mainnet/composable/asset-list.js +1 -1
  5. package/esm/mainnet/cosmoshub/asset-list.js +50 -1
  6. package/esm/mainnet/cosmoshub/chain.js +12 -12
  7. package/esm/mainnet/dungeon/ibc-data.js +62 -0
  8. package/esm/mainnet/ethereum/asset-list.js +23 -0
  9. package/esm/mainnet/fandomchain/chain.js +1 -1
  10. package/esm/mainnet/fandomchain/ibc-data.js +3 -3
  11. package/esm/mainnet/neutron/ibc-data.js +31 -0
  12. package/esm/mainnet/oraichain/asset-list.js +1 -1
  13. package/esm/mainnet/osmosis/asset-list.js +1 -1
  14. package/esm/mainnet/osmosis/ibc-data.js +3 -3
  15. package/esm/mainnet/terra2/asset-list.js +59 -2
  16. package/esm/mainnet/zigchain/asset-list.js +9 -2
  17. package/esm/testnet/asset-lists.js +2 -0
  18. package/esm/testnet/atomonetestnet/ibc-data.js +32 -0
  19. package/esm/testnet/atomonetestnet/index.js +2 -0
  20. package/esm/testnet/axelartestnet/ibc-data.js +31 -0
  21. package/esm/testnet/babylontestnet/asset-list.js +4 -4
  22. package/esm/testnet/chains.js +2 -0
  23. package/esm/testnet/daodiseotestnet/asset-list.js +32 -0
  24. package/esm/testnet/daodiseotestnet/chain.js +267 -0
  25. package/esm/testnet/daodiseotestnet/index.js +4 -0
  26. package/esm/testnet/ibc-data.js +2 -0
  27. package/esm/testnet/zigchaintestnet/asset-list.js +32 -6
  28. package/esm/testnet/zigchaintestnet/chain.js +4 -4
  29. package/mainnet/atomone/ibc-data.js +62 -0
  30. package/mainnet/axelar/asset-list.js +1 -2
  31. package/mainnet/axelar/ibc-data.js +31 -0
  32. package/mainnet/composable/asset-list.js +1 -1
  33. package/mainnet/cosmoshub/asset-list.js +50 -1
  34. package/mainnet/cosmoshub/chain.js +12 -12
  35. package/mainnet/dungeon/ibc-data.js +62 -0
  36. package/mainnet/ethereum/asset-list.js +23 -0
  37. package/mainnet/fandomchain/chain.js +1 -1
  38. package/mainnet/fandomchain/ibc-data.js +3 -3
  39. package/mainnet/neutron/ibc-data.js +31 -0
  40. package/mainnet/oraichain/asset-list.js +1 -1
  41. package/mainnet/osmosis/asset-list.js +1 -1
  42. package/mainnet/osmosis/ibc-data.js +3 -3
  43. package/mainnet/terra2/asset-list.js +59 -2
  44. package/mainnet/zigchain/asset-list.js +9 -2
  45. package/package.json +3 -3
  46. package/testnet/asset-lists.js +2 -0
  47. package/testnet/atomonetestnet/ibc-data.d.ts +3 -0
  48. package/testnet/atomonetestnet/ibc-data.js +34 -0
  49. package/testnet/atomonetestnet/index.d.ts +1 -0
  50. package/testnet/atomonetestnet/index.js +3 -1
  51. package/testnet/axelartestnet/ibc-data.js +31 -0
  52. package/testnet/babylontestnet/asset-list.js +4 -4
  53. package/testnet/chains.js +2 -0
  54. package/testnet/daodiseotestnet/asset-list.d.ts +3 -0
  55. package/testnet/daodiseotestnet/asset-list.js +34 -0
  56. package/testnet/daodiseotestnet/chain.d.ts +3 -0
  57. package/testnet/daodiseotestnet/chain.js +269 -0
  58. package/testnet/daodiseotestnet/index.d.ts +2 -0
  59. package/testnet/daodiseotestnet/index.js +10 -0
  60. package/testnet/ibc-data.js +2 -0
  61. package/testnet/zigchaintestnet/asset-list.js +32 -6
  62. package/testnet/zigchaintestnet/chain.js +4 -4
@@ -1,4 +1,35 @@
1
1
  const info = [
2
+ {
3
+ $schema: '../ibc_data.schema.json',
4
+ chain1: {
5
+ chainName: 'atomone',
6
+ chainId: 'atomone-1',
7
+ clientId: '07-tendermint-38',
8
+ connectionId: 'connection-40'
9
+ },
10
+ chain2: {
11
+ chainName: 'axelar',
12
+ chainId: 'axelar-dojo-1',
13
+ clientId: '07-tendermint-258',
14
+ connectionId: 'connection-252'
15
+ },
16
+ channels: [{
17
+ chain1: {
18
+ channelId: 'channel-10',
19
+ portId: 'transfer'
20
+ },
21
+ chain2: {
22
+ channelId: 'channel-190',
23
+ portId: 'transfer'
24
+ },
25
+ ordering: 'unordered',
26
+ version: 'ics20-1',
27
+ tags: {
28
+ preferred: true,
29
+ status: 'ACTIVE'
30
+ }
31
+ }]
32
+ },
2
33
  {
3
34
  $schema: '../ibc_data.schema.json',
4
35
  chain1: {
@@ -30,6 +61,37 @@ const info = [
30
61
  }
31
62
  }]
32
63
  },
64
+ {
65
+ $schema: '../ibc_data.schema.json',
66
+ chain1: {
67
+ chainName: 'atomone',
68
+ chainId: 'atomone-1',
69
+ clientId: '07-tendermint-37',
70
+ connectionId: 'connection-39'
71
+ },
72
+ chain2: {
73
+ chainName: 'dungeon',
74
+ chainId: 'dungeon-1',
75
+ clientId: '07-tendermint-34',
76
+ connectionId: 'connection-8635'
77
+ },
78
+ channels: [{
79
+ chain1: {
80
+ channelId: 'channel-9',
81
+ portId: 'transfer'
82
+ },
83
+ chain2: {
84
+ channelId: 'channel-5310',
85
+ portId: 'transfer'
86
+ },
87
+ ordering: 'unordered',
88
+ version: 'ics20-1',
89
+ tags: {
90
+ preferred: true,
91
+ status: 'ACTIVE'
92
+ }
93
+ }]
94
+ },
33
95
  {
34
96
  $schema: '../ibc_data.schema.json',
35
97
  chain1: {
@@ -1682,8 +1682,7 @@ const info = {
1682
1682
  logoURIs: {
1683
1683
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
1684
1684
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
1685
- },
1686
- coingeckoId: 'zignaly'
1685
+ }
1687
1686
  }
1688
1687
  ]
1689
1688
  };
@@ -118,6 +118,37 @@ const info = [
118
118
  }
119
119
  }]
120
120
  },
121
+ {
122
+ $schema: '../ibc_data.schema.json',
123
+ chain1: {
124
+ chainName: 'atomone',
125
+ chainId: 'atomone-1',
126
+ clientId: '07-tendermint-38',
127
+ connectionId: 'connection-40'
128
+ },
129
+ chain2: {
130
+ chainName: 'axelar',
131
+ chainId: 'axelar-dojo-1',
132
+ clientId: '07-tendermint-258',
133
+ connectionId: 'connection-252'
134
+ },
135
+ channels: [{
136
+ chain1: {
137
+ channelId: 'channel-10',
138
+ portId: 'transfer'
139
+ },
140
+ chain2: {
141
+ channelId: 'channel-190',
142
+ portId: 'transfer'
143
+ },
144
+ ordering: 'unordered',
145
+ version: 'ics20-1',
146
+ tags: {
147
+ preferred: true,
148
+ status: 'ACTIVE'
149
+ }
150
+ }]
151
+ },
121
152
  {
122
153
  $schema: '../ibc_data.schema.json',
123
154
  chain1: {
@@ -612,7 +612,7 @@ const info = {
612
612
  aliases: ['wbtc-satoshi']
613
613
  }, {
614
614
  denom: 'wbtc',
615
- exponent: 18
615
+ exponent: 8
616
616
  }],
617
617
  typeAsset: 'ics20',
618
618
  base: 'ibc/1507315B0C337368B85A7EC67C3956C508E1106EBD96336B1B092F7B2815B3E5',
@@ -80,11 +80,14 @@ const info = {
80
80
  denom: 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729',
81
81
  exponent: 0,
82
82
  aliases: ['FX']
83
+ }, {
84
+ denom: 'WFX',
85
+ exponent: 18
83
86
  }],
84
87
  typeAsset: 'ics20',
85
88
  base: 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729',
86
89
  name: 'Function X',
87
- display: 'FX',
90
+ display: 'WFX',
88
91
  symbol: 'FX',
89
92
  traces: [{
90
93
  type: 'ibc',
@@ -895,6 +898,52 @@ const info = {
895
898
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.png',
896
899
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
897
900
  }]
901
+ },
902
+ {
903
+ description: 'Tether Gold bridged via Eureka on Cosmos Hub.',
904
+ denomUnits: [
905
+ {
906
+ denom: 'ibc/A96C4DBCB7E36F8D265E92240510DB0F29F39CE4AAF52DBDE686E448BA447886',
907
+ exponent: 0,
908
+ aliases: ['uxaut']
909
+ },
910
+ {
911
+ denom: 'xaut',
912
+ exponent: 6
913
+ },
914
+ {
915
+ denom: 'xaut.atom',
916
+ exponent: 6
917
+ }
918
+ ],
919
+ typeAsset: 'ics20',
920
+ base: 'ibc/A96C4DBCB7E36F8D265E92240510DB0F29F39CE4AAF52DBDE686E448BA447886',
921
+ name: 'Eureka Bridged Tether Gold (ATOM)',
922
+ display: 'xaut',
923
+ symbol: 'XAUt',
924
+ traces: [{
925
+ type: 'ibc-bridge',
926
+ counterparty: {
927
+ chainName: 'ethereum',
928
+ baseDenom: '0x68749665ff8d2d112fa859aa293f07a622782f38',
929
+ channelId: 'channel-0'
930
+ },
931
+ chain: {
932
+ channelId: '08-wasm-1369',
933
+ path: 'transfer/08-wasm-1369/0x68749665ff8d2d112fa859aa293f07a622782f38'
934
+ },
935
+ provider: 'Eureka'
936
+ }],
937
+ logoURIs: {
938
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
939
+ },
940
+ images: [{
941
+ imageSync: {
942
+ chainName: 'ethereum',
943
+ baseDenom: '0x68749665ff8d2d112fa859aa293f07a622782f38'
944
+ },
945
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
946
+ }]
898
947
  }
899
948
  ]
900
949
  };
@@ -28,35 +28,35 @@ const info = {
28
28
  },
29
29
  codebase: {
30
30
  gitRepo: 'https://github.com/cosmos/gaia',
31
- recommendedVersion: 'v21.0.0',
32
- compatibleVersions: ['v21.0.0'],
31
+ recommendedVersion: 'v25.1.1',
32
+ compatibleVersions: ['v25.1.1'],
33
33
  consensus: {
34
34
  type: 'cometbft',
35
- version: 'v0.38.11'
35
+ version: 'v0.38.19'
36
36
  },
37
37
  binaries: {
38
- "darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v21.0.0/gaiad-v21.0.0-darwin-amd64',
39
- "darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v21.0.0/gaiad-v21.0.0-darwin-arm64',
40
- "linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v21.0.0/gaiad-v21.0.0-linux-amd64'
38
+ "darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.1/gaiad-v25.1.1-darwin-amd64',
39
+ "darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.1.1/gaiad-v25.1.1-darwin-arm64',
40
+ "linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.1/gaiad-v25.1.1-linux-amd64'
41
41
  },
42
42
  genesis: {
43
43
  genesisUrl: 'https://github.com/cosmos/mainnet/raw/master/genesis/genesis.cosmoshub-4.json.gz'
44
44
  },
45
45
  sdk: {
46
46
  type: 'cosmos',
47
- version: 'v0.50.9',
48
- tag: 'v0.50.9-lsm'
47
+ version: 'v0.53.3',
48
+ tag: 'v0.53.3'
49
49
  },
50
50
  ibc: {
51
51
  type: 'go',
52
- version: 'v8.5.1'
52
+ version: 'v10.3.0'
53
53
  },
54
54
  cosmwasm: {
55
- version: 'v0.53.0',
55
+ version: 'v0.60.1',
56
56
  repo: 'https://github.com/CosmWasm/wasmd',
57
- tag: 'v0.53.0'
57
+ tag: 'v0.60.1'
58
58
  },
59
- tag: 'v21.0.0'
59
+ tag: 'v25.1.1'
60
60
  },
61
61
  logoURIs: {
62
62
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
@@ -1,4 +1,35 @@
1
1
  const info = [
2
+ {
3
+ $schema: '../ibc_data.schema.json',
4
+ chain1: {
5
+ chainName: 'atomone',
6
+ chainId: 'atomone-1',
7
+ clientId: '07-tendermint-37',
8
+ connectionId: 'connection-39'
9
+ },
10
+ chain2: {
11
+ chainName: 'dungeon',
12
+ chainId: 'dungeon-1',
13
+ clientId: '07-tendermint-34',
14
+ connectionId: 'connection-8635'
15
+ },
16
+ channels: [{
17
+ chain1: {
18
+ channelId: 'channel-9',
19
+ portId: 'transfer'
20
+ },
21
+ chain2: {
22
+ channelId: 'channel-5310',
23
+ portId: 'transfer'
24
+ },
25
+ ordering: 'unordered',
26
+ version: 'ics20-1',
27
+ tags: {
28
+ preferred: true,
29
+ status: 'ACTIVE'
30
+ }
31
+ }]
32
+ },
2
33
  {
3
34
  $schema: '../ibc_data.schema.json',
4
35
  chain1: {
@@ -30,6 +61,37 @@ const info = [
30
61
  }
31
62
  }]
32
63
  },
64
+ {
65
+ $schema: '../ibc_data.schema.json',
66
+ chain1: {
67
+ chainName: 'dungeon',
68
+ chainId: 'dungeon-1',
69
+ clientId: '07-tendermint-32',
70
+ connectionId: 'connection-8634'
71
+ },
72
+ chain2: {
73
+ chainName: 'neutron',
74
+ chainId: 'neutron-1',
75
+ clientId: '07-tendermint-188',
76
+ connectionId: 'connection-149'
77
+ },
78
+ channels: [{
79
+ chain1: {
80
+ channelId: 'channel-5309',
81
+ portId: 'transfer'
82
+ },
83
+ chain2: {
84
+ channelId: 'channel-7358',
85
+ portId: 'transfer'
86
+ },
87
+ ordering: 'unordered',
88
+ version: 'ics20-1',
89
+ tags: {
90
+ preferred: true,
91
+ status: 'ACTIVE'
92
+ }
93
+ }]
94
+ },
33
95
  {
34
96
  $schema: '../ibc_data.schema.json',
35
97
  chain1: {
@@ -2087,6 +2087,29 @@ const info = {
2087
2087
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
2088
2088
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
2089
2089
  }]
2090
+ },
2091
+ {
2092
+ description: 'Tether Gold(XAUT)',
2093
+ typeAsset: 'erc20',
2094
+ address: '0x68749665ff8d2d112fa859aa293f07a622782f38',
2095
+ denomUnits: [{
2096
+ denom: '0x68749665ff8d2d112fa859aa293f07a622782f38',
2097
+ exponent: 0
2098
+ }, {
2099
+ denom: 'xaut',
2100
+ exponent: 6
2101
+ }],
2102
+ base: '0x68749665ff8d2d112fa859aa293f07a622782f38',
2103
+ name: 'Tether Gold',
2104
+ display: 'xaut',
2105
+ symbol: 'XAUt',
2106
+ coingeckoId: 'tether-gold',
2107
+ images: [{
2108
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
2109
+ }],
2110
+ logoURIs: {
2111
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
2112
+ }
2090
2113
  }
2091
2114
  ]
2092
2115
  };
@@ -7,7 +7,7 @@ const info = {
7
7
  prettyName: 'fandomChain',
8
8
  chainType: 'cosmos',
9
9
  chainId: 'fandomChain',
10
- bech32Prefix: 'cosmos',
10
+ bech32Prefix: 'fandom',
11
11
  daemonName: 'fandomChaind',
12
12
  nodeHome: '$HOME/.fandomChaind',
13
13
  keyAlgos: ['secp256k1'],
@@ -9,8 +9,8 @@ const info = [{
9
9
  chain2: {
10
10
  chainName: 'osmosis',
11
11
  chainId: 'osmosis-1',
12
- clientId: '07-tendermint-3607',
13
- connectionId: 'connection-10960'
12
+ clientId: '07-tendermint-3613',
13
+ connectionId: 'connection-10964'
14
14
  },
15
15
  channels: [{
16
16
  chain1: {
@@ -18,7 +18,7 @@ const info = [{
18
18
  portId: 'transfer'
19
19
  },
20
20
  chain2: {
21
- channelId: 'channel-107314',
21
+ channelId: 'channel-107392',
22
22
  portId: 'transfer'
23
23
  },
24
24
  ordering: 'unordered',
@@ -293,6 +293,37 @@ const info = [
293
293
  }
294
294
  }]
295
295
  },
296
+ {
297
+ $schema: '../ibc_data.schema.json',
298
+ chain1: {
299
+ chainName: 'dungeon',
300
+ chainId: 'dungeon-1',
301
+ clientId: '07-tendermint-32',
302
+ connectionId: 'connection-8634'
303
+ },
304
+ chain2: {
305
+ chainName: 'neutron',
306
+ chainId: 'neutron-1',
307
+ clientId: '07-tendermint-188',
308
+ connectionId: 'connection-149'
309
+ },
310
+ channels: [{
311
+ chain1: {
312
+ channelId: 'channel-5309',
313
+ portId: 'transfer'
314
+ },
315
+ chain2: {
316
+ channelId: 'channel-7358',
317
+ portId: 'transfer'
318
+ },
319
+ ordering: 'unordered',
320
+ version: 'ics20-1',
321
+ tags: {
322
+ preferred: true,
323
+ status: 'ACTIVE'
324
+ }
325
+ }]
326
+ },
296
327
  {
297
328
  $schema: '../ibc_data.schema.json',
298
329
  chain1: {
@@ -138,7 +138,7 @@ const info = {
138
138
  exponent: 0
139
139
  }, {
140
140
  denom: 'inj',
141
- exponent: 6
141
+ exponent: 18
142
142
  }],
143
143
  typeAsset: 'ics20',
144
144
  base: 'ibc/49D820DFDE9F885D7081725A58202ABA2F465CAEE4AFBC683DFB79A8E013E83E',
@@ -19145,7 +19145,7 @@ const info = {
19145
19145
  typeAsset: 'ics20',
19146
19146
  base: 'ibc/3C85C44DCB6BCC4FFB9D295EE79ED412E1FAD5D775C99E6AA51CCEF5CA32409C',
19147
19147
  name: 'Quicksilver Liquid Staked INJ',
19148
- display: 'qinj',
19148
+ display: 'qINJ',
19149
19149
  symbol: 'qINJ',
19150
19150
  traces: [{
19151
19151
  type: 'ibc',
@@ -1713,8 +1713,8 @@ const info = [
1713
1713
  chain2: {
1714
1714
  chainName: 'osmosis',
1715
1715
  chainId: 'osmosis-1',
1716
- clientId: '07-tendermint-3607',
1717
- connectionId: 'connection-10960'
1716
+ clientId: '07-tendermint-3613',
1717
+ connectionId: 'connection-10964'
1718
1718
  },
1719
1719
  channels: [{
1720
1720
  chain1: {
@@ -1722,7 +1722,7 @@ const info = [
1722
1722
  portId: 'transfer'
1723
1723
  },
1724
1724
  chain2: {
1725
- channelId: 'channel-107314',
1725
+ channelId: 'channel-107392',
1726
1726
  portId: 'transfer'
1727
1727
  },
1728
1728
  ordering: 'unordered',
@@ -671,9 +671,9 @@ const info = {
671
671
  denomUnits: [{
672
672
  denom: 'ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C',
673
673
  exponent: 0,
674
- aliases: ['wstETH']
674
+ aliases: ['factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH']
675
675
  }, {
676
- denom: 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH',
676
+ denom: 'wstETH',
677
677
  exponent: 18
678
678
  }],
679
679
  typeAsset: 'ics20',
@@ -1495,6 +1495,63 @@ const info = {
1495
1495
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png'
1496
1496
  }],
1497
1497
  coingeckoId: 'eureka-bridged-pax-gold-terra'
1498
+ },
1499
+ {
1500
+ description: 'Tether Gold bridged via Eureka on Cosmos Hub and relayed to Terra (phoenix-1) over IBC.',
1501
+ denomUnits: [
1502
+ {
1503
+ denom: 'ibc/F20FE45BF7122CF10559EDEA032E37956D3314774EA6D8D1D46B87D138290C45',
1504
+ exponent: 0,
1505
+ aliases: ['microxaut', 'uxaut']
1506
+ },
1507
+ {
1508
+ denom: 'xaut',
1509
+ exponent: 6
1510
+ },
1511
+ {
1512
+ denom: 'xaut.atom',
1513
+ exponent: 6
1514
+ }
1515
+ ],
1516
+ typeAsset: 'ics20',
1517
+ base: 'ibc/F20FE45BF7122CF10559EDEA032E37956D3314774EA6D8D1D46B87D138290C45',
1518
+ name: 'Eureka Bridged Tether Gold (Terra)',
1519
+ display: 'xaut.atom',
1520
+ symbol: 'XAUt.ATOM',
1521
+ traces: [{
1522
+ type: 'ibc-bridge',
1523
+ counterparty: {
1524
+ chainName: 'ethereum',
1525
+ baseDenom: '0x68749665ff8d2d112fa859aa293f07a622782f38',
1526
+ channelId: 'channel-0'
1527
+ },
1528
+ chain: {
1529
+ channelId: '08-wasm-1369',
1530
+ path: 'transfer/08-wasm-1369/0x68749665ff8d2d112fa859aa293f07a622782f38'
1531
+ },
1532
+ provider: 'Eureka'
1533
+ }, {
1534
+ type: 'ibc',
1535
+ counterparty: {
1536
+ chainName: 'cosmoshub',
1537
+ baseDenom: 'ibc/A96C4DBCB7E36F8D265E92240510DB0F29F39CE4AAF52DBDE686E448BA447886',
1538
+ channelId: 'channel-339'
1539
+ },
1540
+ chain: {
1541
+ channelId: 'channel-0',
1542
+ path: 'transfer/channel-0/transfer/08-wasm-1369/0x68749665ff8d2d112fa859aa293f07a622782f38'
1543
+ }
1544
+ }],
1545
+ logoURIs: {
1546
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
1547
+ },
1548
+ images: [{
1549
+ imageSync: {
1550
+ chainName: 'ethereum',
1551
+ baseDenom: '0x68749665ff8d2d112fa859aa293f07a622782f38'
1552
+ },
1553
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xaut.png'
1554
+ }]
1498
1555
  }
1499
1556
  ]
1500
1557
  };
@@ -26,6 +26,14 @@ const info = {
26
26
  name: 'ZIG',
27
27
  display: 'zig',
28
28
  symbol: 'ZIG',
29
+ traces: [{
30
+ type: 'additional-mintage',
31
+ counterparty: {
32
+ chainName: 'ethereum',
33
+ baseDenom: '0xb2617246d0c6c0087f18703d576831899ca94f01'
34
+ },
35
+ provider: 'ZIGChain'
36
+ }],
29
37
  coingeckoId: 'zignaly',
30
38
  keywords: [
31
39
  'zigchain',
@@ -219,8 +227,7 @@ const info = {
219
227
  },
220
228
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
221
229
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
222
- }],
223
- coingeckoId: 'zignaly'
230
+ }]
224
231
  }
225
232
  ]
226
233
  };
@@ -27,6 +27,7 @@ import * as _cosmosicsprovidertestnet from './cosmosicsprovidertestnet';
27
27
  import * as _cosmwasmtestnet from './cosmwasmtestnet';
28
28
  import * as _cosstestnet from './cosstestnet';
29
29
  import * as _cudostestnet from './cudostestnet';
30
+ import * as _daodiseotestnet from './daodiseotestnet';
30
31
  import * as _deardogetestnet from './deardogetestnet';
31
32
  import * as _desmostestnet from './desmostestnet';
32
33
  import * as _dhealthtestnet from './dhealthtestnet';
@@ -165,6 +166,7 @@ const assetList = [
165
166
  _cosmwasmtestnet.assetList,
166
167
  _cosstestnet.assetList,
167
168
  _cudostestnet.assetList,
169
+ _daodiseotestnet.assetList,
168
170
  _deardogetestnet.assetList,
169
171
  _desmostestnet.assetList,
170
172
  _dhealthtestnet.assetList,
@@ -0,0 +1,32 @@
1
+ const info = [{
2
+ $schema: '../../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'atomonetestnet',
5
+ chainId: 'atomone-testnet-1',
6
+ clientId: '07-tendermint-0',
7
+ connectionId: 'connection-0'
8
+ },
9
+ chain2: {
10
+ chainName: 'axelartestnet',
11
+ chainId: 'axelar-testnet-lisbon-3',
12
+ clientId: '07-tendermint-1197',
13
+ connectionId: 'connection-948'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-0',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-629',
22
+ portId: 'transfer'
23
+ },
24
+ ordering: 'unordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ preferred: true,
28
+ status: 'ACTIVE'
29
+ }
30
+ }]
31
+ }];
32
+ export default info;
@@ -1,4 +1,6 @@
1
1
  import _assetList from './asset-list';
2
2
  import _chain from './chain';
3
+ import _ibcData from './ibc-data';
3
4
  export const assetList = _assetList;
4
5
  export const chain = _chain;
6
+ export const ibcData = _ibcData;
@@ -60,6 +60,37 @@ const info = [
60
60
  }
61
61
  }]
62
62
  },
63
+ {
64
+ $schema: '../../ibc_data.schema.json',
65
+ chain1: {
66
+ chainName: 'atomonetestnet',
67
+ chainId: 'atomone-testnet-1',
68
+ clientId: '07-tendermint-0',
69
+ connectionId: 'connection-0'
70
+ },
71
+ chain2: {
72
+ chainName: 'axelartestnet',
73
+ chainId: 'axelar-testnet-lisbon-3',
74
+ clientId: '07-tendermint-1197',
75
+ connectionId: 'connection-948'
76
+ },
77
+ channels: [{
78
+ chain1: {
79
+ channelId: 'channel-0',
80
+ portId: 'transfer'
81
+ },
82
+ chain2: {
83
+ channelId: 'channel-629',
84
+ portId: 'transfer'
85
+ },
86
+ ordering: 'unordered',
87
+ version: 'ics20-1',
88
+ tags: {
89
+ preferred: true,
90
+ status: 'ACTIVE'
91
+ }
92
+ }]
93
+ },
63
94
  {
64
95
  $schema: '../../ibc_data.schema.json',
65
96
  chain1: {