chain-registry 2.0.48 → 2.0.49

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 (37) hide show
  1. package/esm/mainnet/asset-lists.js +2 -0
  2. package/esm/mainnet/babylon/asset-list.js +31 -0
  3. package/esm/mainnet/chains.js +2 -0
  4. package/esm/mainnet/cosmoshub/ibc-data.js +43 -0
  5. package/esm/mainnet/ibc-data.js +2 -0
  6. package/esm/mainnet/injective/asset-list.js +24 -0
  7. package/esm/mainnet/intento/asset-list.js +28 -0
  8. package/esm/mainnet/intento/chain.js +62 -0
  9. package/esm/mainnet/intento/ibc-data.js +72 -0
  10. package/esm/mainnet/intento/index.js +6 -0
  11. package/esm/mainnet/noble/ibc-data.js +6 -6
  12. package/esm/mainnet/osmosis/ibc-data.js +29 -0
  13. package/esm/mainnet/saga/ibc-data.js +6 -6
  14. package/esm/mainnet/sunrise/chain.js +22 -0
  15. package/esm/mainnet/thorchain/asset-list.js +1 -0
  16. package/esm/noncosmos/binancesmartchain/asset-list.js +22 -0
  17. package/mainnet/asset-lists.js +2 -0
  18. package/mainnet/babylon/asset-list.js +31 -0
  19. package/mainnet/chains.js +2 -0
  20. package/mainnet/cosmoshub/ibc-data.js +43 -0
  21. package/mainnet/ibc-data.js +2 -0
  22. package/mainnet/injective/asset-list.js +24 -0
  23. package/mainnet/intento/asset-list.d.ts +3 -0
  24. package/mainnet/intento/asset-list.js +30 -0
  25. package/mainnet/intento/chain.d.ts +3 -0
  26. package/mainnet/intento/chain.js +64 -0
  27. package/mainnet/intento/ibc-data.d.ts +3 -0
  28. package/mainnet/intento/ibc-data.js +74 -0
  29. package/mainnet/intento/index.d.ts +3 -0
  30. package/mainnet/intento/index.js +12 -0
  31. package/mainnet/noble/ibc-data.js +6 -6
  32. package/mainnet/osmosis/ibc-data.js +29 -0
  33. package/mainnet/saga/ibc-data.js +6 -6
  34. package/mainnet/sunrise/chain.js +22 -0
  35. package/mainnet/thorchain/asset-list.js +1 -0
  36. package/noncosmos/binancesmartchain/asset-list.js +22 -0
  37. package/package.json +3 -3
@@ -89,6 +89,7 @@ import * as _imversed from './imversed';
89
89
  import * as _initia from './initia';
90
90
  import * as _injective from './injective';
91
91
  import * as _int3face from './int3face';
92
+ import * as _intento from './intento';
92
93
  import * as _irisnet from './irisnet';
93
94
  import * as _jackal from './jackal';
94
95
  import * as _joltify from './joltify';
@@ -301,6 +302,7 @@ const assetList = [
301
302
  _initia.assetList,
302
303
  _injective.assetList,
303
304
  _int3face.assetList,
305
+ _intento.assetList,
304
306
  _irisnet.assetList,
305
307
  _jackal.assetList,
306
308
  _joltify.assetList,
@@ -937,6 +937,37 @@ const info = {
937
937
  }
938
938
  }]
939
939
  },
940
+ {
941
+ denomUnits: [{
942
+ denom: 'cw20:bbn1p56nwhnh0klnjf9k5ug6nyu84hkee0l2lq8f9kml7zwq9xsrkfcs7ej73n',
943
+ exponent: 0
944
+ }, {
945
+ denom: 'CoBTC',
946
+ exponent: 8
947
+ }],
948
+ base: 'cw20:bbn1p56nwhnh0klnjf9k5ug6nyu84hkee0l2lq8f9kml7zwq9xsrkfcs7ej73n',
949
+ address: 'bbn1p56nwhnh0klnjf9k5ug6nyu84hkee0l2lq8f9kml7zwq9xsrkfcs7ej73n',
950
+ name: 'Coffer Bitcoin',
951
+ display: 'CoBTC',
952
+ symbol: 'CoBTC',
953
+ logoURIs: {
954
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
955
+ },
956
+ typeAsset: 'cw20',
957
+ traces: [{
958
+ type: 'ibc-bridge',
959
+ provider: 'Union',
960
+ counterparty: {
961
+ chainName: 'binancesmartchain',
962
+ baseDenom: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
963
+ channelId: '1'
964
+ },
965
+ chain: {
966
+ channelId: '5',
967
+ path: '0'
968
+ }
969
+ }]
970
+ },
940
971
  {
941
972
  description: 'MilkyWay\'s liquid staked BABY',
942
973
  denomUnits: [{
@@ -89,6 +89,7 @@ import * as _imversed from './imversed';
89
89
  import * as _initia from './initia';
90
90
  import * as _injective from './injective';
91
91
  import * as _int3face from './int3face';
92
+ import * as _intento from './intento';
92
93
  import * as _irisnet from './irisnet';
93
94
  import * as _jackal from './jackal';
94
95
  import * as _joltify from './joltify';
@@ -301,6 +302,7 @@ const chains = [
301
302
  _initia.chain,
302
303
  _injective.chain,
303
304
  _int3face.chain,
305
+ _intento.chain,
304
306
  _irisnet.chain,
305
307
  _jackal.chain,
306
308
  _joltify.chain,
@@ -902,6 +902,49 @@ const info = [
902
902
  }
903
903
  }]
904
904
  },
905
+ {
906
+ $schema: '../ibc_data.schema.json',
907
+ chain1: {
908
+ chainName: 'cosmoshub',
909
+ clientId: '07-tendermint-1436',
910
+ connectionId: 'connection-1175'
911
+ },
912
+ chain2: {
913
+ chainName: 'intento',
914
+ clientId: '07-tendermint-0',
915
+ connectionId: 'connection-0'
916
+ },
917
+ channels: [{
918
+ chain1: {
919
+ channelId: 'channel-1489',
920
+ portId: 'provider'
921
+ },
922
+ chain2: {
923
+ channelId: 'channel-0',
924
+ portId: 'consumer'
925
+ },
926
+ ordering: 'ordered',
927
+ version: 'ics20-1',
928
+ tags: {
929
+ status: 'live'
930
+ }
931
+ }, {
932
+ chain1: {
933
+ channelId: 'channel-1492',
934
+ portId: 'transfer'
935
+ },
936
+ chain2: {
937
+ channelId: 'channel-1',
938
+ portId: 'transfer'
939
+ },
940
+ ordering: 'unordered',
941
+ version: 'ics20-1',
942
+ tags: {
943
+ status: 'live',
944
+ preferred: true
945
+ }
946
+ }]
947
+ },
905
948
  {
906
949
  $schema: '../ibc_data.schema.json',
907
950
  chain1: {
@@ -68,6 +68,7 @@ import * as _imversed from './imversed';
68
68
  import * as _initia from './initia';
69
69
  import * as _injective from './injective';
70
70
  import * as _int3face from './int3face';
71
+ import * as _intento from './intento';
71
72
  import * as _irisnet from './irisnet';
72
73
  import * as _jackal from './jackal';
73
74
  import * as _joltify from './joltify';
@@ -234,6 +235,7 @@ const ibcData = [
234
235
  ..._initia.ibcData,
235
236
  ..._injective.ibcData,
236
237
  ..._int3face.ibcData,
238
+ ..._intento.ibcData,
237
239
  ..._irisnet.ibcData,
238
240
  ..._jackal.ibcData,
239
241
  ..._joltify.ibcData,
@@ -214,6 +214,30 @@ const info = {
214
214
  },
215
215
  typeAsset: 'sdk.coin'
216
216
  },
217
+ {
218
+ description: 'RWA Commercial fishing operation',
219
+ denomUnits: [{
220
+ denom: 'factory/inj1jdt04erw6jdmh6c939u87kldf3mvvmkedsjp3w/OYCI',
221
+ exponent: 0
222
+ }, {
223
+ denom: 'OYCI',
224
+ exponent: 6
225
+ }],
226
+ base: 'factory/inj1jdt04erw6jdmh6c939u87kldf3mvvmkedsjp3w/OYCI',
227
+ name: 'Oyster Cage Initiative',
228
+ display: 'OYCI',
229
+ symbol: 'OYCI',
230
+ logoURIs: {
231
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/oyci.png'
232
+ },
233
+ images: [{
234
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/oyci.png',
235
+ theme: {
236
+ circle: true
237
+ }
238
+ }],
239
+ typeAsset: 'sdk.coin'
240
+ },
217
241
  {
218
242
  description: 'The $WGMI Token - We Gonna Make It. Are you ready?',
219
243
  denomUnits: [{
@@ -0,0 +1,28 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'intento',
4
+ assets: [{
5
+ description: 'The native token of INTENTO',
6
+ denomUnits: [{
7
+ denom: 'uinto',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'into',
11
+ exponent: 6
12
+ }],
13
+ base: 'uinto',
14
+ name: 'Intento',
15
+ display: 'into',
16
+ symbol: 'INTO',
17
+ logoURIs: {
18
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.png',
19
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
20
+ },
21
+ images: [{
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.png',
23
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
24
+ }],
25
+ typeAsset: 'sdk.coin'
26
+ }]
27
+ };
28
+ export default info;
@@ -0,0 +1,62 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'intento',
4
+ status: 'live',
5
+ networkType: 'mainnet',
6
+ prettyName: 'Intento',
7
+ chainType: 'cosmos',
8
+ chainId: 'intento-1',
9
+ bech32Prefix: 'into',
10
+ daemonName: 'intentod',
11
+ nodeHome: '$HOME/.intento',
12
+ keyAlgos: ['secp256k1'],
13
+ slip44: 118,
14
+ fees: {
15
+ feeTokens: [{
16
+ denom: 'uinto',
17
+ fixedMinGasPrice: 0
18
+ }]
19
+ },
20
+ staking: {
21
+ stakingTokens: [{
22
+ denom: 'uinto'
23
+ }]
24
+ },
25
+ codebase: {
26
+ gitRepo: 'https://github.com/trstlabs/intento',
27
+ recommendedVersion: 'v1.0.1',
28
+ compatibleVersions: ['v1.0.1'],
29
+ consensus: {
30
+ type: 'cometbft',
31
+ version: 'v0.38.17'
32
+ },
33
+ genesis: {
34
+ genesisUrl: 'https://raw.githubusercontent.com/trstlabs/networks/refs/heads/main/mainnet/intento-1/genesis.json'
35
+ },
36
+ sdk: {
37
+ type: 'cosmos',
38
+ version: '0.50.14'
39
+ },
40
+ ibc: {
41
+ type: 'go',
42
+ version: 'v8.7.0'
43
+ }
44
+ },
45
+ apis: {
46
+ rpc: [{
47
+ address: 'https://rpc-mainnet.intento.zone',
48
+ provider: 'Intento'
49
+ }],
50
+ rest: [{
51
+ address: 'https://lcd-mainnet.intento.zone',
52
+ provider: 'Intento'
53
+ }],
54
+ grpc: []
55
+ },
56
+ explorers: [{
57
+ kind: 'PingPub',
58
+ url: 'https://explorer.intento.zone',
59
+ txPage: 'https://explorer.intento.zone/intento-mainnet/tx/${txHash}'
60
+ }]
61
+ };
62
+ export default info;
@@ -0,0 +1,72 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'cosmoshub',
5
+ clientId: '07-tendermint-1436',
6
+ connectionId: 'connection-1175'
7
+ },
8
+ chain2: {
9
+ chainName: 'intento',
10
+ clientId: '07-tendermint-0',
11
+ connectionId: 'connection-0'
12
+ },
13
+ channels: [{
14
+ chain1: {
15
+ channelId: 'channel-1489',
16
+ portId: 'provider'
17
+ },
18
+ chain2: {
19
+ channelId: 'channel-0',
20
+ portId: 'consumer'
21
+ },
22
+ ordering: 'ordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live'
26
+ }
27
+ }, {
28
+ chain1: {
29
+ channelId: 'channel-1492',
30
+ portId: 'transfer'
31
+ },
32
+ chain2: {
33
+ channelId: 'channel-1',
34
+ portId: 'transfer'
35
+ },
36
+ ordering: 'unordered',
37
+ version: 'ics20-1',
38
+ tags: {
39
+ status: 'live',
40
+ preferred: true
41
+ }
42
+ }]
43
+ }, {
44
+ $schema: '../ibc_data.schema.json',
45
+ chain1: {
46
+ chainName: 'intento',
47
+ clientId: '07-tendermint-1',
48
+ connectionId: 'connection-1'
49
+ },
50
+ chain2: {
51
+ chainName: 'osmosis',
52
+ clientId: '07-tendermint-3549',
53
+ connectionId: 'connection-10824'
54
+ },
55
+ channels: [{
56
+ chain1: {
57
+ channelId: 'channel-3',
58
+ portId: 'transfer'
59
+ },
60
+ chain2: {
61
+ channelId: 'channel-106076',
62
+ portId: 'transfer'
63
+ },
64
+ ordering: 'unordered',
65
+ version: 'ics20-1',
66
+ tags: {
67
+ status: 'live',
68
+ preferred: true
69
+ }
70
+ }]
71
+ }];
72
+ export default info;
@@ -0,0 +1,6 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ import _ibcData from './ibc-data';
4
+ export const assetList = _assetList;
5
+ export const chain = _chain;
6
+ export const ibcData = _ibcData;
@@ -1216,21 +1216,21 @@ const info = [
1216
1216
  $schema: '../ibc_data.schema.json',
1217
1217
  chain1: {
1218
1218
  chainName: 'noble',
1219
- clientId: '07-tendermint-182',
1220
- connectionId: 'connection-176'
1219
+ clientId: '07-tendermint-181',
1220
+ connectionId: 'connection-175'
1221
1221
  },
1222
1222
  chain2: {
1223
1223
  chainName: 'saga',
1224
- clientId: '07-tendermint-31',
1225
- connectionId: 'connection-26'
1224
+ clientId: '07-tendermint-28',
1225
+ connectionId: 'connection-23'
1226
1226
  },
1227
1227
  channels: [{
1228
1228
  chain1: {
1229
- channelId: 'channel-170',
1229
+ channelId: 'channel-169',
1230
1230
  portId: 'transfer'
1231
1231
  },
1232
1232
  chain2: {
1233
- channelId: 'channel-38',
1233
+ channelId: 'channel-37',
1234
1234
  portId: 'transfer'
1235
1235
  },
1236
1236
  ordering: 'unordered',
@@ -2141,6 +2141,35 @@ const info = [
2141
2141
  }
2142
2142
  }]
2143
2143
  },
2144
+ {
2145
+ $schema: '../ibc_data.schema.json',
2146
+ chain1: {
2147
+ chainName: 'intento',
2148
+ clientId: '07-tendermint-1',
2149
+ connectionId: 'connection-1'
2150
+ },
2151
+ chain2: {
2152
+ chainName: 'osmosis',
2153
+ clientId: '07-tendermint-3549',
2154
+ connectionId: 'connection-10824'
2155
+ },
2156
+ channels: [{
2157
+ chain1: {
2158
+ channelId: 'channel-3',
2159
+ portId: 'transfer'
2160
+ },
2161
+ chain2: {
2162
+ channelId: 'channel-106076',
2163
+ portId: 'transfer'
2164
+ },
2165
+ ordering: 'unordered',
2166
+ version: 'ics20-1',
2167
+ tags: {
2168
+ status: 'live',
2169
+ preferred: true
2170
+ }
2171
+ }]
2172
+ },
2144
2173
  {
2145
2174
  $schema: '../ibc_data.schema.json',
2146
2175
  chain1: {
@@ -90,21 +90,21 @@ const info = [
90
90
  $schema: '../ibc_data.schema.json',
91
91
  chain1: {
92
92
  chainName: 'noble',
93
- clientId: '07-tendermint-182',
94
- connectionId: 'connection-176'
93
+ clientId: '07-tendermint-181',
94
+ connectionId: 'connection-175'
95
95
  },
96
96
  chain2: {
97
97
  chainName: 'saga',
98
- clientId: '07-tendermint-31',
99
- connectionId: 'connection-26'
98
+ clientId: '07-tendermint-28',
99
+ connectionId: 'connection-23'
100
100
  },
101
101
  channels: [{
102
102
  chain1: {
103
- channelId: 'channel-170',
103
+ channelId: 'channel-169',
104
104
  portId: 'transfer'
105
105
  },
106
106
  chain2: {
107
- channelId: 'channel-38',
107
+ channelId: 'channel-37',
108
108
  portId: 'transfer'
109
109
  },
110
110
  ordering: 'unordered',
@@ -74,6 +74,14 @@ const info = {
74
74
  {
75
75
  address: 'https://rpc.sunrise.nodestake.org',
76
76
  provider: 'NodeStake'
77
+ },
78
+ {
79
+ address: 'https://sunrise-rpc.krews.xyz',
80
+ provider: 'Krews'
81
+ },
82
+ {
83
+ address: 'https://sunrise-rpc-2.krews.xyz',
84
+ provider: 'Krews'
77
85
  }
78
86
  ],
79
87
  rest: [
@@ -96,6 +104,14 @@ const info = {
96
104
  {
97
105
  address: 'https://api.sunrise.nodestake.org',
98
106
  provider: 'NodeStake'
107
+ },
108
+ {
109
+ address: 'https://sunrise-api.krews.xyz',
110
+ provider: 'Krews'
111
+ },
112
+ {
113
+ address: 'https://sunrise-api-2.krews.xyz',
114
+ provider: 'Krews'
99
115
  }
100
116
  ],
101
117
  grpc: [
@@ -142,6 +158,12 @@ const info = {
142
158
  url: 'https://explorer.nodestake.org/sunrise',
143
159
  txPage: 'https://explorer.nodestake.org/sunrise/tx/${txHash}',
144
160
  accountPage: 'https://explorer.nodestake.org/sunrise/account/${accountAddress}'
161
+ },
162
+ {
163
+ kind: 'Krews',
164
+ url: 'https://risescan.krews.xyz',
165
+ txPage: 'https://risescan.krews.xyz/sunrise/tx/${txHash}',
166
+ accountPage: 'https://risescan.krews.xyz/sunrise/account/${accountAddress}'
145
167
  }
146
168
  ],
147
169
  images: [{
@@ -90,6 +90,7 @@ const info = {
90
90
  images: [{
91
91
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/auto.png'
92
92
  }],
93
+ coingeckoId: 'auto-2',
93
94
  keywords: [
94
95
  'automation',
95
96
  'ai',
@@ -205,6 +205,28 @@ const info = {
205
205
  circle: true
206
206
  }
207
207
  }]
208
+ },
209
+ {
210
+ description: 'The first non-custodial Bitcoin product designed for DeFi',
211
+ denomUnits: [{
212
+ denom: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
213
+ exponent: 0
214
+ }, {
215
+ denom: 'CoBTC',
216
+ exponent: 8
217
+ }],
218
+ typeAsset: 'erc20',
219
+ address: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
220
+ base: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
221
+ name: 'Coffer Bitcoin',
222
+ display: 'CoBTC',
223
+ symbol: 'CoBTC',
224
+ logoURIs: {
225
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
226
+ },
227
+ images: [{
228
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
229
+ }]
208
230
  }
209
231
  ]
210
232
  };
@@ -114,6 +114,7 @@ const _imversed = __importStar(require("./imversed"));
114
114
  const _initia = __importStar(require("./initia"));
115
115
  const _injective = __importStar(require("./injective"));
116
116
  const _int3face = __importStar(require("./int3face"));
117
+ const _intento = __importStar(require("./intento"));
117
118
  const _irisnet = __importStar(require("./irisnet"));
118
119
  const _jackal = __importStar(require("./jackal"));
119
120
  const _joltify = __importStar(require("./joltify"));
@@ -326,6 +327,7 @@ const assetList = [
326
327
  _initia.assetList,
327
328
  _injective.assetList,
328
329
  _int3face.assetList,
330
+ _intento.assetList,
329
331
  _irisnet.assetList,
330
332
  _jackal.assetList,
331
333
  _joltify.assetList,
@@ -939,6 +939,37 @@ const info = {
939
939
  }
940
940
  }]
941
941
  },
942
+ {
943
+ denomUnits: [{
944
+ denom: 'cw20:bbn1p56nwhnh0klnjf9k5ug6nyu84hkee0l2lq8f9kml7zwq9xsrkfcs7ej73n',
945
+ exponent: 0
946
+ }, {
947
+ denom: 'CoBTC',
948
+ exponent: 8
949
+ }],
950
+ base: 'cw20:bbn1p56nwhnh0klnjf9k5ug6nyu84hkee0l2lq8f9kml7zwq9xsrkfcs7ej73n',
951
+ address: 'bbn1p56nwhnh0klnjf9k5ug6nyu84hkee0l2lq8f9kml7zwq9xsrkfcs7ej73n',
952
+ name: 'Coffer Bitcoin',
953
+ display: 'CoBTC',
954
+ symbol: 'CoBTC',
955
+ logoURIs: {
956
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
957
+ },
958
+ typeAsset: 'cw20',
959
+ traces: [{
960
+ type: 'ibc-bridge',
961
+ provider: 'Union',
962
+ counterparty: {
963
+ chainName: 'binancesmartchain',
964
+ baseDenom: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
965
+ channelId: '1'
966
+ },
967
+ chain: {
968
+ channelId: '5',
969
+ path: '0'
970
+ }
971
+ }]
972
+ },
942
973
  {
943
974
  description: 'MilkyWay\'s liquid staked BABY',
944
975
  denomUnits: [{
package/mainnet/chains.js CHANGED
@@ -114,6 +114,7 @@ const _imversed = __importStar(require("./imversed"));
114
114
  const _initia = __importStar(require("./initia"));
115
115
  const _injective = __importStar(require("./injective"));
116
116
  const _int3face = __importStar(require("./int3face"));
117
+ const _intento = __importStar(require("./intento"));
117
118
  const _irisnet = __importStar(require("./irisnet"));
118
119
  const _jackal = __importStar(require("./jackal"));
119
120
  const _joltify = __importStar(require("./joltify"));
@@ -326,6 +327,7 @@ const chains = [
326
327
  _initia.chain,
327
328
  _injective.chain,
328
329
  _int3face.chain,
330
+ _intento.chain,
329
331
  _irisnet.chain,
330
332
  _jackal.chain,
331
333
  _joltify.chain,
@@ -904,6 +904,49 @@ const info = [
904
904
  }
905
905
  }]
906
906
  },
907
+ {
908
+ $schema: '../ibc_data.schema.json',
909
+ chain1: {
910
+ chainName: 'cosmoshub',
911
+ clientId: '07-tendermint-1436',
912
+ connectionId: 'connection-1175'
913
+ },
914
+ chain2: {
915
+ chainName: 'intento',
916
+ clientId: '07-tendermint-0',
917
+ connectionId: 'connection-0'
918
+ },
919
+ channels: [{
920
+ chain1: {
921
+ channelId: 'channel-1489',
922
+ portId: 'provider'
923
+ },
924
+ chain2: {
925
+ channelId: 'channel-0',
926
+ portId: 'consumer'
927
+ },
928
+ ordering: 'ordered',
929
+ version: 'ics20-1',
930
+ tags: {
931
+ status: 'live'
932
+ }
933
+ }, {
934
+ chain1: {
935
+ channelId: 'channel-1492',
936
+ portId: 'transfer'
937
+ },
938
+ chain2: {
939
+ channelId: 'channel-1',
940
+ portId: 'transfer'
941
+ },
942
+ ordering: 'unordered',
943
+ version: 'ics20-1',
944
+ tags: {
945
+ status: 'live',
946
+ preferred: true
947
+ }
948
+ }]
949
+ },
907
950
  {
908
951
  $schema: '../ibc_data.schema.json',
909
952
  chain1: {
@@ -93,6 +93,7 @@ const _imversed = __importStar(require("./imversed"));
93
93
  const _initia = __importStar(require("./initia"));
94
94
  const _injective = __importStar(require("./injective"));
95
95
  const _int3face = __importStar(require("./int3face"));
96
+ const _intento = __importStar(require("./intento"));
96
97
  const _irisnet = __importStar(require("./irisnet"));
97
98
  const _jackal = __importStar(require("./jackal"));
98
99
  const _joltify = __importStar(require("./joltify"));
@@ -259,6 +260,7 @@ const ibcData = [
259
260
  ..._initia.ibcData,
260
261
  ..._injective.ibcData,
261
262
  ..._int3face.ibcData,
263
+ ..._intento.ibcData,
262
264
  ..._irisnet.ibcData,
263
265
  ..._jackal.ibcData,
264
266
  ..._joltify.ibcData,
@@ -216,6 +216,30 @@ const info = {
216
216
  },
217
217
  typeAsset: 'sdk.coin'
218
218
  },
219
+ {
220
+ description: 'RWA Commercial fishing operation',
221
+ denomUnits: [{
222
+ denom: 'factory/inj1jdt04erw6jdmh6c939u87kldf3mvvmkedsjp3w/OYCI',
223
+ exponent: 0
224
+ }, {
225
+ denom: 'OYCI',
226
+ exponent: 6
227
+ }],
228
+ base: 'factory/inj1jdt04erw6jdmh6c939u87kldf3mvvmkedsjp3w/OYCI',
229
+ name: 'Oyster Cage Initiative',
230
+ display: 'OYCI',
231
+ symbol: 'OYCI',
232
+ logoURIs: {
233
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/oyci.png'
234
+ },
235
+ images: [{
236
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/oyci.png',
237
+ theme: {
238
+ circle: true
239
+ }
240
+ }],
241
+ typeAsset: 'sdk.coin'
242
+ },
219
243
  {
220
244
  description: 'The $WGMI Token - We Gonna Make It. Are you ready?',
221
245
  denomUnits: [{
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chainName: 'intento',
6
+ assets: [{
7
+ description: 'The native token of INTENTO',
8
+ denomUnits: [{
9
+ denom: 'uinto',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'into',
13
+ exponent: 6
14
+ }],
15
+ base: 'uinto',
16
+ name: 'Intento',
17
+ display: 'into',
18
+ symbol: 'INTO',
19
+ logoURIs: {
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.png',
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
22
+ },
23
+ images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.png',
25
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
26
+ }],
27
+ typeAsset: 'sdk.coin'
28
+ }]
29
+ };
30
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const info: Chain;
3
+ export default info;
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chainName: 'intento',
6
+ status: 'live',
7
+ networkType: 'mainnet',
8
+ prettyName: 'Intento',
9
+ chainType: 'cosmos',
10
+ chainId: 'intento-1',
11
+ bech32Prefix: 'into',
12
+ daemonName: 'intentod',
13
+ nodeHome: '$HOME/.intento',
14
+ keyAlgos: ['secp256k1'],
15
+ slip44: 118,
16
+ fees: {
17
+ feeTokens: [{
18
+ denom: 'uinto',
19
+ fixedMinGasPrice: 0
20
+ }]
21
+ },
22
+ staking: {
23
+ stakingTokens: [{
24
+ denom: 'uinto'
25
+ }]
26
+ },
27
+ codebase: {
28
+ gitRepo: 'https://github.com/trstlabs/intento',
29
+ recommendedVersion: 'v1.0.1',
30
+ compatibleVersions: ['v1.0.1'],
31
+ consensus: {
32
+ type: 'cometbft',
33
+ version: 'v0.38.17'
34
+ },
35
+ genesis: {
36
+ genesisUrl: 'https://raw.githubusercontent.com/trstlabs/networks/refs/heads/main/mainnet/intento-1/genesis.json'
37
+ },
38
+ sdk: {
39
+ type: 'cosmos',
40
+ version: '0.50.14'
41
+ },
42
+ ibc: {
43
+ type: 'go',
44
+ version: 'v8.7.0'
45
+ }
46
+ },
47
+ apis: {
48
+ rpc: [{
49
+ address: 'https://rpc-mainnet.intento.zone',
50
+ provider: 'Intento'
51
+ }],
52
+ rest: [{
53
+ address: 'https://lcd-mainnet.intento.zone',
54
+ provider: 'Intento'
55
+ }],
56
+ grpc: []
57
+ },
58
+ explorers: [{
59
+ kind: 'PingPub',
60
+ url: 'https://explorer.intento.zone',
61
+ txPage: 'https://explorer.intento.zone/intento-mainnet/tx/${txHash}'
62
+ }]
63
+ };
64
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { IBCData } from '@chain-registry/types';
2
+ declare const info: IBCData[];
3
+ export default info;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../ibc_data.schema.json',
5
+ chain1: {
6
+ chainName: 'cosmoshub',
7
+ clientId: '07-tendermint-1436',
8
+ connectionId: 'connection-1175'
9
+ },
10
+ chain2: {
11
+ chainName: 'intento',
12
+ clientId: '07-tendermint-0',
13
+ connectionId: 'connection-0'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-1489',
18
+ portId: 'provider'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-0',
22
+ portId: 'consumer'
23
+ },
24
+ ordering: 'ordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ status: 'live'
28
+ }
29
+ }, {
30
+ chain1: {
31
+ channelId: 'channel-1492',
32
+ portId: 'transfer'
33
+ },
34
+ chain2: {
35
+ channelId: 'channel-1',
36
+ portId: 'transfer'
37
+ },
38
+ ordering: 'unordered',
39
+ version: 'ics20-1',
40
+ tags: {
41
+ status: 'live',
42
+ preferred: true
43
+ }
44
+ }]
45
+ }, {
46
+ $schema: '../ibc_data.schema.json',
47
+ chain1: {
48
+ chainName: 'intento',
49
+ clientId: '07-tendermint-1',
50
+ connectionId: 'connection-1'
51
+ },
52
+ chain2: {
53
+ chainName: 'osmosis',
54
+ clientId: '07-tendermint-3549',
55
+ connectionId: 'connection-10824'
56
+ },
57
+ channels: [{
58
+ chain1: {
59
+ channelId: 'channel-3',
60
+ portId: 'transfer'
61
+ },
62
+ chain2: {
63
+ channelId: 'channel-106076',
64
+ portId: 'transfer'
65
+ },
66
+ ordering: 'unordered',
67
+ version: 'ics20-1',
68
+ tags: {
69
+ status: 'live',
70
+ preferred: true
71
+ }
72
+ }]
73
+ }];
74
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ export declare const assetList: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibcData: import("@chain-registry/types").IBCData[];
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ibcData = exports.chain = exports.assetList = void 0;
7
+ const asset_list_1 = __importDefault(require("./asset-list"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ const ibc_data_1 = __importDefault(require("./ibc-data"));
10
+ exports.assetList = asset_list_1.default;
11
+ exports.chain = chain_1.default;
12
+ exports.ibcData = ibc_data_1.default;
@@ -1218,21 +1218,21 @@ const info = [
1218
1218
  $schema: '../ibc_data.schema.json',
1219
1219
  chain1: {
1220
1220
  chainName: 'noble',
1221
- clientId: '07-tendermint-182',
1222
- connectionId: 'connection-176'
1221
+ clientId: '07-tendermint-181',
1222
+ connectionId: 'connection-175'
1223
1223
  },
1224
1224
  chain2: {
1225
1225
  chainName: 'saga',
1226
- clientId: '07-tendermint-31',
1227
- connectionId: 'connection-26'
1226
+ clientId: '07-tendermint-28',
1227
+ connectionId: 'connection-23'
1228
1228
  },
1229
1229
  channels: [{
1230
1230
  chain1: {
1231
- channelId: 'channel-170',
1231
+ channelId: 'channel-169',
1232
1232
  portId: 'transfer'
1233
1233
  },
1234
1234
  chain2: {
1235
- channelId: 'channel-38',
1235
+ channelId: 'channel-37',
1236
1236
  portId: 'transfer'
1237
1237
  },
1238
1238
  ordering: 'unordered',
@@ -2143,6 +2143,35 @@ const info = [
2143
2143
  }
2144
2144
  }]
2145
2145
  },
2146
+ {
2147
+ $schema: '../ibc_data.schema.json',
2148
+ chain1: {
2149
+ chainName: 'intento',
2150
+ clientId: '07-tendermint-1',
2151
+ connectionId: 'connection-1'
2152
+ },
2153
+ chain2: {
2154
+ chainName: 'osmosis',
2155
+ clientId: '07-tendermint-3549',
2156
+ connectionId: 'connection-10824'
2157
+ },
2158
+ channels: [{
2159
+ chain1: {
2160
+ channelId: 'channel-3',
2161
+ portId: 'transfer'
2162
+ },
2163
+ chain2: {
2164
+ channelId: 'channel-106076',
2165
+ portId: 'transfer'
2166
+ },
2167
+ ordering: 'unordered',
2168
+ version: 'ics20-1',
2169
+ tags: {
2170
+ status: 'live',
2171
+ preferred: true
2172
+ }
2173
+ }]
2174
+ },
2146
2175
  {
2147
2176
  $schema: '../ibc_data.schema.json',
2148
2177
  chain1: {
@@ -92,21 +92,21 @@ const info = [
92
92
  $schema: '../ibc_data.schema.json',
93
93
  chain1: {
94
94
  chainName: 'noble',
95
- clientId: '07-tendermint-182',
96
- connectionId: 'connection-176'
95
+ clientId: '07-tendermint-181',
96
+ connectionId: 'connection-175'
97
97
  },
98
98
  chain2: {
99
99
  chainName: 'saga',
100
- clientId: '07-tendermint-31',
101
- connectionId: 'connection-26'
100
+ clientId: '07-tendermint-28',
101
+ connectionId: 'connection-23'
102
102
  },
103
103
  channels: [{
104
104
  chain1: {
105
- channelId: 'channel-170',
105
+ channelId: 'channel-169',
106
106
  portId: 'transfer'
107
107
  },
108
108
  chain2: {
109
- channelId: 'channel-38',
109
+ channelId: 'channel-37',
110
110
  portId: 'transfer'
111
111
  },
112
112
  ordering: 'unordered',
@@ -76,6 +76,14 @@ const info = {
76
76
  {
77
77
  address: 'https://rpc.sunrise.nodestake.org',
78
78
  provider: 'NodeStake'
79
+ },
80
+ {
81
+ address: 'https://sunrise-rpc.krews.xyz',
82
+ provider: 'Krews'
83
+ },
84
+ {
85
+ address: 'https://sunrise-rpc-2.krews.xyz',
86
+ provider: 'Krews'
79
87
  }
80
88
  ],
81
89
  rest: [
@@ -98,6 +106,14 @@ const info = {
98
106
  {
99
107
  address: 'https://api.sunrise.nodestake.org',
100
108
  provider: 'NodeStake'
109
+ },
110
+ {
111
+ address: 'https://sunrise-api.krews.xyz',
112
+ provider: 'Krews'
113
+ },
114
+ {
115
+ address: 'https://sunrise-api-2.krews.xyz',
116
+ provider: 'Krews'
101
117
  }
102
118
  ],
103
119
  grpc: [
@@ -144,6 +160,12 @@ const info = {
144
160
  url: 'https://explorer.nodestake.org/sunrise',
145
161
  txPage: 'https://explorer.nodestake.org/sunrise/tx/${txHash}',
146
162
  accountPage: 'https://explorer.nodestake.org/sunrise/account/${accountAddress}'
163
+ },
164
+ {
165
+ kind: 'Krews',
166
+ url: 'https://risescan.krews.xyz',
167
+ txPage: 'https://risescan.krews.xyz/sunrise/tx/${txHash}',
168
+ accountPage: 'https://risescan.krews.xyz/sunrise/account/${accountAddress}'
147
169
  }
148
170
  ],
149
171
  images: [{
@@ -92,6 +92,7 @@ const info = {
92
92
  images: [{
93
93
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/auto.png'
94
94
  }],
95
+ coingeckoId: 'auto-2',
95
96
  keywords: [
96
97
  'automation',
97
98
  'ai',
@@ -207,6 +207,28 @@ const info = {
207
207
  circle: true
208
208
  }
209
209
  }]
210
+ },
211
+ {
212
+ description: 'The first non-custodial Bitcoin product designed for DeFi',
213
+ denomUnits: [{
214
+ denom: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
215
+ exponent: 0
216
+ }, {
217
+ denom: 'CoBTC',
218
+ exponent: 8
219
+ }],
220
+ typeAsset: 'erc20',
221
+ address: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
222
+ base: '0x918b3aa73e2D42D96CF64CBdB16838985992dAbc',
223
+ name: 'Coffer Bitcoin',
224
+ display: 'CoBTC',
225
+ symbol: 'CoBTC',
226
+ logoURIs: {
227
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
228
+ },
229
+ images: [{
230
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/CoBTC.svg'
231
+ }]
210
232
  }
211
233
  ]
212
234
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.48",
3
+ "version": "2.0.49",
4
4
  "description": "Cosmos chain registry ⚛️",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
@@ -29,7 +29,7 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "dependencies": {
32
- "@chain-registry/types": "^2.0.48"
32
+ "@chain-registry/types": "^2.0.49"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "7fbb144b3a0a51c8b0be697e267b12d370c8a2ef"
42
+ "gitHead": "59c0da6f87e9e03e6c68325569ef0608c755e784"
43
43
  }