chain-registry 2.0.243 → 2.0.245

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 (40) hide show
  1. package/esm/mainnet/asset-lists.js +2 -0
  2. package/esm/mainnet/chains.js +2 -0
  3. package/esm/mainnet/cosmoshub/asset-list.js +25 -0
  4. package/esm/mainnet/ibc-data.js +2 -0
  5. package/esm/mainnet/noble/ibc-data.js +31 -0
  6. package/esm/mainnet/osmosis/asset-list.js +41 -0
  7. package/esm/mainnet/ritbit/chain.js +31 -6
  8. package/esm/mainnet/ritbit/ibc-data.js +32 -0
  9. package/esm/mainnet/ritbit/index.js +2 -0
  10. package/esm/mainnet/zerone/asset-list.js +45 -0
  11. package/esm/mainnet/zerone/chain.js +89 -0
  12. package/esm/mainnet/zerone/index.js +4 -0
  13. package/esm/testnet/ibc-data.js +2 -0
  14. package/esm/testnet/limonatatestnet/ibc-data.js +32 -0
  15. package/esm/testnet/limonatatestnet/index.js +2 -0
  16. package/esm/testnet/osmosistestnet/ibc-data.js +31 -0
  17. package/mainnet/asset-lists.js +2 -0
  18. package/mainnet/chains.js +2 -0
  19. package/mainnet/cosmoshub/asset-list.js +25 -0
  20. package/mainnet/ibc-data.js +2 -0
  21. package/mainnet/noble/ibc-data.js +31 -0
  22. package/mainnet/osmosis/asset-list.js +41 -0
  23. package/mainnet/ritbit/chain.js +31 -6
  24. package/mainnet/ritbit/ibc-data.d.ts +3 -0
  25. package/mainnet/ritbit/ibc-data.js +34 -0
  26. package/mainnet/ritbit/index.d.ts +1 -0
  27. package/mainnet/ritbit/index.js +3 -1
  28. package/mainnet/zerone/asset-list.d.ts +3 -0
  29. package/mainnet/zerone/asset-list.js +47 -0
  30. package/mainnet/zerone/chain.d.ts +3 -0
  31. package/mainnet/zerone/chain.js +91 -0
  32. package/mainnet/zerone/index.d.ts +2 -0
  33. package/mainnet/zerone/index.js +10 -0
  34. package/package.json +3 -3
  35. package/testnet/ibc-data.js +2 -0
  36. package/testnet/limonatatestnet/ibc-data.d.ts +3 -0
  37. package/testnet/limonatatestnet/ibc-data.js +34 -0
  38. package/testnet/limonatatestnet/index.d.ts +1 -0
  39. package/testnet/limonatatestnet/index.js +3 -1
  40. package/testnet/osmosistestnet/ibc-data.js +31 -0
@@ -222,6 +222,7 @@ import * as _xpla from './xpla';
222
222
  import * as _xrplevm from './xrplevm';
223
223
  import * as _xyra from './xyra';
224
224
  import * as _zenrock from './zenrock';
225
+ import * as _zerone from './zerone';
225
226
  import * as _zetachain from './zetachain';
226
227
  import * as _zigchain from './zigchain';
227
228
  const assetList = [
@@ -449,6 +450,7 @@ const assetList = [
449
450
  _xrplevm.assetList,
450
451
  _xyra.assetList,
451
452
  _zenrock.assetList,
453
+ _zerone.assetList,
452
454
  _zetachain.assetList,
453
455
  _zigchain.assetList
454
456
  ];
@@ -222,6 +222,7 @@ import * as _xpla from './xpla';
222
222
  import * as _xrplevm from './xrplevm';
223
223
  import * as _xyra from './xyra';
224
224
  import * as _zenrock from './zenrock';
225
+ import * as _zerone from './zerone';
225
226
  import * as _zetachain from './zetachain';
226
227
  import * as _zigchain from './zigchain';
227
228
  const chains = [
@@ -449,6 +450,7 @@ const chains = [
449
450
  _xrplevm.chain,
450
451
  _xyra.chain,
451
452
  _zenrock.chain,
453
+ _zerone.chain,
452
454
  _zetachain.chain,
453
455
  _zigchain.chain
454
456
  ];
@@ -1217,6 +1217,31 @@ const info = {
1217
1217
  website: 'https://posthuman.digital/',
1218
1218
  x: 'https://x.com/POSTHUMAN_DVS'
1219
1219
  }
1220
+ },
1221
+ {
1222
+ description: 'pARTy (ART) - where art meets party in the interchain. A fair-launched community art token minted natively on Cosmos Hub via tokenfactory.',
1223
+ denomUnits: [{
1224
+ denom: 'factory/cosmos1w9ee57gnduzm4l9h6xwn9tee9pyh8wlr4r9r35/art',
1225
+ exponent: 0
1226
+ }, {
1227
+ denom: 'art',
1228
+ exponent: 6
1229
+ }],
1230
+ typeAsset: 'sdk.coin',
1231
+ base: 'factory/cosmos1w9ee57gnduzm4l9h6xwn9tee9pyh8wlr4r9r35/art',
1232
+ name: 'pARTy',
1233
+ display: 'art',
1234
+ symbol: 'ART',
1235
+ logoURIs: {
1236
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/art.png'
1237
+ },
1238
+ images: [{
1239
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/art.png'
1240
+ }],
1241
+ socials: {
1242
+ website: 'https://pic.zone',
1243
+ x: 'https://x.com/pARTy_in_Cosmos'
1244
+ }
1220
1245
  }
1221
1246
  ]
1222
1247
  };
@@ -131,6 +131,7 @@ import * as _qwoyn from './qwoyn';
131
131
  import * as _realio from './realio';
132
132
  import * as _rebus from './rebus';
133
133
  import * as _regen from './regen';
134
+ import * as _ritbit from './ritbit';
134
135
  import * as _rizon from './rizon';
135
136
  import * as _safrochain from './safrochain';
136
137
  import * as _saga from './saga';
@@ -303,6 +304,7 @@ const ibcData = [
303
304
  ..._realio.ibcData,
304
305
  ..._rebus.ibcData,
305
306
  ..._regen.ibcData,
307
+ ..._ritbit.ibcData,
306
308
  ..._rizon.ibcData,
307
309
  ..._safrochain.ibcData,
308
310
  ..._saga.ibcData,
@@ -1324,6 +1324,37 @@ const info = [
1324
1324
  }
1325
1325
  }]
1326
1326
  },
1327
+ {
1328
+ $schema: '../ibc_data.schema.json',
1329
+ chain1: {
1330
+ chainName: 'noble',
1331
+ chainId: 'noble-1',
1332
+ clientId: '07-tendermint-228',
1333
+ connectionId: 'connection-212'
1334
+ },
1335
+ chain2: {
1336
+ chainName: 'ritbit',
1337
+ chainId: 'ritbit-mainnet',
1338
+ clientId: '07-tendermint-0',
1339
+ connectionId: 'connection-0'
1340
+ },
1341
+ channels: [{
1342
+ chain1: {
1343
+ channelId: 'channel-607',
1344
+ portId: 'transfer'
1345
+ },
1346
+ chain2: {
1347
+ channelId: 'channel-0',
1348
+ portId: 'transfer'
1349
+ },
1350
+ ordering: 'unordered',
1351
+ version: 'ics20-1',
1352
+ tags: {
1353
+ preferred: true,
1354
+ status: 'ACTIVE'
1355
+ }
1356
+ }]
1357
+ },
1327
1358
  {
1328
1359
  $schema: '../ibc_data.schema.json',
1329
1360
  chain1: {
@@ -23064,6 +23064,47 @@ const info = {
23064
23064
  socials: {
23065
23065
  website: 'https://aoe2war.com'
23066
23066
  }
23067
+ },
23068
+ {
23069
+ description: 'pARTy (ART) - where art meets party in the interchain. A fair-launched community art token minted natively on Cosmos Hub via tokenfactory.',
23070
+ denomUnits: [{
23071
+ denom: 'ibc/7D72341AF4AB0B2975BF933A425B81DAC2C940E50E7549207E2B3C6B14A9DAB2',
23072
+ exponent: 0
23073
+ }, {
23074
+ denom: 'art',
23075
+ exponent: 6
23076
+ }],
23077
+ typeAsset: 'ics20',
23078
+ base: 'ibc/7D72341AF4AB0B2975BF933A425B81DAC2C940E50E7549207E2B3C6B14A9DAB2',
23079
+ name: 'pARTy',
23080
+ display: 'art',
23081
+ symbol: 'ART',
23082
+ traces: [{
23083
+ type: 'ibc',
23084
+ counterparty: {
23085
+ chainName: 'cosmoshub',
23086
+ baseDenom: 'factory/cosmos1w9ee57gnduzm4l9h6xwn9tee9pyh8wlr4r9r35/art',
23087
+ channelId: 'channel-141'
23088
+ },
23089
+ chain: {
23090
+ channelId: 'channel-0',
23091
+ path: 'transfer/channel-0/factory/cosmos1w9ee57gnduzm4l9h6xwn9tee9pyh8wlr4r9r35/art'
23092
+ }
23093
+ }],
23094
+ images: [{
23095
+ imageSync: {
23096
+ chainName: 'cosmoshub',
23097
+ baseDenom: 'factory/cosmos1w9ee57gnduzm4l9h6xwn9tee9pyh8wlr4r9r35/art'
23098
+ },
23099
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/art.png'
23100
+ }],
23101
+ logoURIs: {
23102
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/art.png'
23103
+ },
23104
+ socials: {
23105
+ website: 'https://pic.zone',
23106
+ x: 'https://x.com/pARTy_in_Cosmos'
23107
+ }
23067
23108
  }
23068
23109
  ]
23069
23110
  };
@@ -4,18 +4,21 @@ const info = {
4
4
  status: 'live',
5
5
  website: 'https://rubin.trade/',
6
6
  networkType: 'mainnet',
7
- prettyName: 'RITBIT',
7
+ prettyName: 'Rubin',
8
8
  chainType: 'cosmos',
9
9
  chainId: 'ritbit-mainnet',
10
10
  bech32Prefix: 'rit',
11
+ daemonName: 'ritbitd',
12
+ nodeHome: '$HOME/.ritbit',
13
+ keyAlgos: ['secp256k1'],
11
14
  slip44: 118,
12
15
  fees: {
13
16
  feeTokens: [{
14
17
  denom: 'urit',
15
- fixedMinGasPrice: 12500000000,
16
- lowGasPrice: 12500000000,
17
- averageGasPrice: 12500000000,
18
- highGasPrice: 20000000000
18
+ fixedMinGasPrice: 25000000000,
19
+ lowGasPrice: 25000000000,
20
+ averageGasPrice: 25000000000,
21
+ highGasPrice: 40000000000
19
22
  }, {
20
23
  denom: 'uusdc',
21
24
  fixedMinGasPrice: 0.025,
@@ -29,10 +32,32 @@ const info = {
29
32
  denom: 'urit'
30
33
  }]
31
34
  },
35
+ codebase: {
36
+ recommendedVersion: 'v27.6',
37
+ compatibleVersions: ['v27.6'],
38
+ consensus: {
39
+ type: 'cometbft',
40
+ version: 'v0.39.3'
41
+ },
42
+ sdk: {
43
+ type: 'cosmos',
44
+ version: 'v0.54.3'
45
+ },
46
+ ibc: {
47
+ type: 'go',
48
+ version: 'v11.2.0'
49
+ },
50
+ genesis: {
51
+ genesisUrl: 'https://cdn.rubin.trade/scripts/genesis.json'
52
+ },
53
+ binaries: {
54
+ "linux/amd64": 'https://storage.yandexcloud.net/ritbit-upgrade/v27.6/ritbitd-v27.6-linux-amd64.tar.gz?checksum=sha256:9f6134e883fc52e44033b2ba52a90edf705c99799a7b4e885a8dce15938a6502'
55
+ }
56
+ },
32
57
  logoURIs: {
33
58
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
34
59
  },
35
- description: 'RITBIT is the network that powers Rubin Trade — a self-custody decentralized exchange for crypto perpetual futures and spot trading.',
60
+ description: 'Rubin is a self-custody decentralized exchange for crypto perpetual futures and spot trading.',
36
61
  apis: {
37
62
  rpc: [{
38
63
  address: 'https://rpc.mainnet.rubin.trade',
@@ -0,0 +1,32 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'noble',
5
+ chainId: 'noble-1',
6
+ clientId: '07-tendermint-228',
7
+ connectionId: 'connection-212'
8
+ },
9
+ chain2: {
10
+ chainName: 'ritbit',
11
+ chainId: 'ritbit-mainnet',
12
+ clientId: '07-tendermint-0',
13
+ connectionId: 'connection-0'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-607',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-0',
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;
@@ -0,0 +1,45 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'zerone',
4
+ assets: [{
5
+ description: 'The native staking and governance token of Zerone',
6
+ denomUnits: [
7
+ {
8
+ denom: 'uzrn',
9
+ exponent: 0,
10
+ aliases: ['microzrn']
11
+ },
12
+ {
13
+ denom: 'mzrn',
14
+ exponent: 3,
15
+ aliases: ['millizrn']
16
+ },
17
+ {
18
+ denom: 'zrn',
19
+ exponent: 6
20
+ }
21
+ ],
22
+ typeAsset: 'sdk.coin',
23
+ base: 'uzrn',
24
+ name: 'Zerone',
25
+ display: 'zrn',
26
+ symbol: 'ZRN',
27
+ images: [{
28
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zerone/images/zrn.svg',
29
+ theme: {
30
+ circle: false
31
+ }
32
+ }],
33
+ keywords: [
34
+ 'ai',
35
+ 'agents',
36
+ 'knowledge',
37
+ 'provenance'
38
+ ],
39
+ socials: {
40
+ website: 'https://zerone.ai/',
41
+ github: 'https://github.com/cambridgetcg/zerone-core'
42
+ }
43
+ }]
44
+ };
45
+ export default info;
@@ -0,0 +1,89 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'zerone',
4
+ status: 'live',
5
+ networkType: 'mainnet',
6
+ website: 'https://zerone.ai/',
7
+ prettyName: 'Zerone',
8
+ chainType: 'cosmos',
9
+ chainId: 'zerone-1',
10
+ bech32Prefix: 'zrn',
11
+ bech32Config: {
12
+ bech32PrefixAccAddr: 'zrn',
13
+ bech32PrefixAccPub: 'zrnpub',
14
+ bech32PrefixValAddr: 'zrnvaloper',
15
+ bech32PrefixValPub: 'zrnvaloperpub',
16
+ bech32PrefixConsAddr: 'zrnvalcons',
17
+ bech32PrefixConsPub: 'zrnvalconspub'
18
+ },
19
+ daemonName: 'zeroned',
20
+ nodeHome: '$HOME/.zeroned',
21
+ keyAlgos: ['secp256k1'],
22
+ slip44: 118,
23
+ fees: {
24
+ feeTokens: [{
25
+ denom: 'uzrn',
26
+ fixedMinGasPrice: 0.025,
27
+ lowGasPrice: 0.025,
28
+ averageGasPrice: 1,
29
+ highGasPrice: 1.2,
30
+ gasCosts: {
31
+ cosmosSend: 200000
32
+ }
33
+ }]
34
+ },
35
+ staking: {
36
+ stakingTokens: [{
37
+ denom: 'uzrn'
38
+ }],
39
+ lockDuration: {
40
+ time: '1814400s'
41
+ }
42
+ },
43
+ codebase: {
44
+ gitRepo: 'https://github.com/cambridgetcg/zerone-core',
45
+ language: {
46
+ type: 'go',
47
+ version: '1.24.0'
48
+ },
49
+ sdk: {
50
+ type: 'cosmos',
51
+ version: 'v0.50.15',
52
+ repo: 'https://github.com/cosmos/cosmos-sdk'
53
+ },
54
+ consensus: {
55
+ type: 'cometbft',
56
+ version: 'v0.38.20',
57
+ repo: 'https://github.com/cometbft/cometbft'
58
+ },
59
+ genesis: {
60
+ name: 'zerone-1',
61
+ genesisUrl: 'https://raw.githubusercontent.com/cambridgetcg/zerone-core/main/deploy/mainnet/artifacts/genesis.json'
62
+ }
63
+ },
64
+ images: [{
65
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zerone/images/zrn.svg',
66
+ theme: {
67
+ circle: false
68
+ }
69
+ }],
70
+ description: 'Zerone is a Cosmos SDK blockchain that records challenged agent work, knowledge, and provenance. ZRN is its native staking, governance, and fee token.',
71
+ apis: {
72
+ rpc: [{
73
+ address: 'http://169.155.55.44:26657',
74
+ provider: 'Zerone'
75
+ }]
76
+ },
77
+ explorers: [{
78
+ kind: 'Zerone Dashboard',
79
+ url: 'https://zerone.ai/'
80
+ }],
81
+ keywords: [
82
+ 'ai',
83
+ 'agents',
84
+ 'knowledge',
85
+ 'provenance',
86
+ 'proof-of-truth'
87
+ ]
88
+ };
89
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ export const assetList = _assetList;
4
+ export const chain = _chain;
@@ -24,6 +24,7 @@ import * as _kujiratestnet from './kujiratestnet';
24
24
  import * as _kyvetestnet from './kyvetestnet';
25
25
  import * as _lavatestnet from './lavatestnet';
26
26
  import * as _likecointestnet from './likecointestnet';
27
+ import * as _limonatatestnet from './limonatatestnet';
27
28
  import * as _lumeratestnet from './lumeratestnet';
28
29
  import * as _manifesttestnet from './manifesttestnet';
29
30
  import * as _mantrachaintestnet2 from './mantrachaintestnet2';
@@ -77,6 +78,7 @@ const ibcData = [
77
78
  ..._kyvetestnet.ibcData,
78
79
  ..._lavatestnet.ibcData,
79
80
  ..._likecointestnet.ibcData,
81
+ ..._limonatatestnet.ibcData,
80
82
  ..._lumeratestnet.ibcData,
81
83
  ..._manifesttestnet.ibcData,
82
84
  ..._mantrachaintestnet2.ibcData,
@@ -0,0 +1,32 @@
1
+ const info = [{
2
+ $schema: '../../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'limonatatestnet',
5
+ chainId: 'limonata_10777-1',
6
+ clientId: '07-tendermint-0',
7
+ connectionId: 'connection-0'
8
+ },
9
+ chain2: {
10
+ chainName: 'osmosistestnet',
11
+ chainId: 'osmo-test-5',
12
+ clientId: '07-tendermint-5256',
13
+ connectionId: 'connection-4584'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-0',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-11808',
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;
@@ -758,6 +758,37 @@ const info = [
758
758
  }
759
759
  }]
760
760
  },
761
+ {
762
+ $schema: '../../ibc_data.schema.json',
763
+ chain1: {
764
+ chainName: 'limonatatestnet',
765
+ chainId: 'limonata_10777-1',
766
+ clientId: '07-tendermint-0',
767
+ connectionId: 'connection-0'
768
+ },
769
+ chain2: {
770
+ chainName: 'osmosistestnet',
771
+ chainId: 'osmo-test-5',
772
+ clientId: '07-tendermint-5256',
773
+ connectionId: 'connection-4584'
774
+ },
775
+ channels: [{
776
+ chain1: {
777
+ channelId: 'channel-0',
778
+ portId: 'transfer'
779
+ },
780
+ chain2: {
781
+ channelId: 'channel-11808',
782
+ portId: 'transfer'
783
+ },
784
+ ordering: 'unordered',
785
+ version: 'ics20-1',
786
+ tags: {
787
+ preferred: true,
788
+ status: 'ACTIVE'
789
+ }
790
+ }]
791
+ },
761
792
  {
762
793
  $schema: '../../ibc_data.schema.json',
763
794
  chain1: {
@@ -247,6 +247,7 @@ const _xpla = __importStar(require("./xpla"));
247
247
  const _xrplevm = __importStar(require("./xrplevm"));
248
248
  const _xyra = __importStar(require("./xyra"));
249
249
  const _zenrock = __importStar(require("./zenrock"));
250
+ const _zerone = __importStar(require("./zerone"));
250
251
  const _zetachain = __importStar(require("./zetachain"));
251
252
  const _zigchain = __importStar(require("./zigchain"));
252
253
  const assetList = [
@@ -474,6 +475,7 @@ const assetList = [
474
475
  _xrplevm.assetList,
475
476
  _xyra.assetList,
476
477
  _zenrock.assetList,
478
+ _zerone.assetList,
477
479
  _zetachain.assetList,
478
480
  _zigchain.assetList
479
481
  ];
package/mainnet/chains.js CHANGED
@@ -247,6 +247,7 @@ const _xpla = __importStar(require("./xpla"));
247
247
  const _xrplevm = __importStar(require("./xrplevm"));
248
248
  const _xyra = __importStar(require("./xyra"));
249
249
  const _zenrock = __importStar(require("./zenrock"));
250
+ const _zerone = __importStar(require("./zerone"));
250
251
  const _zetachain = __importStar(require("./zetachain"));
251
252
  const _zigchain = __importStar(require("./zigchain"));
252
253
  const chains = [
@@ -474,6 +475,7 @@ const chains = [
474
475
  _xrplevm.chain,
475
476
  _xyra.chain,
476
477
  _zenrock.chain,
478
+ _zerone.chain,
477
479
  _zetachain.chain,
478
480
  _zigchain.chain
479
481
  ];
@@ -1219,6 +1219,31 @@ const info = {
1219
1219
  website: 'https://posthuman.digital/',
1220
1220
  x: 'https://x.com/POSTHUMAN_DVS'
1221
1221
  }
1222
+ },
1223
+ {
1224
+ description: 'pARTy (ART) - where art meets party in the interchain. A fair-launched community art token minted natively on Cosmos Hub via tokenfactory.',
1225
+ denomUnits: [{
1226
+ denom: 'factory/cosmos1w9ee57gnduzm4l9h6xwn9tee9pyh8wlr4r9r35/art',
1227
+ exponent: 0
1228
+ }, {
1229
+ denom: 'art',
1230
+ exponent: 6
1231
+ }],
1232
+ typeAsset: 'sdk.coin',
1233
+ base: 'factory/cosmos1w9ee57gnduzm4l9h6xwn9tee9pyh8wlr4r9r35/art',
1234
+ name: 'pARTy',
1235
+ display: 'art',
1236
+ symbol: 'ART',
1237
+ logoURIs: {
1238
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/art.png'
1239
+ },
1240
+ images: [{
1241
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/art.png'
1242
+ }],
1243
+ socials: {
1244
+ website: 'https://pic.zone',
1245
+ x: 'https://x.com/pARTy_in_Cosmos'
1246
+ }
1222
1247
  }
1223
1248
  ]
1224
1249
  };
@@ -156,6 +156,7 @@ const _qwoyn = __importStar(require("./qwoyn"));
156
156
  const _realio = __importStar(require("./realio"));
157
157
  const _rebus = __importStar(require("./rebus"));
158
158
  const _regen = __importStar(require("./regen"));
159
+ const _ritbit = __importStar(require("./ritbit"));
159
160
  const _rizon = __importStar(require("./rizon"));
160
161
  const _safrochain = __importStar(require("./safrochain"));
161
162
  const _saga = __importStar(require("./saga"));
@@ -328,6 +329,7 @@ const ibcData = [
328
329
  ..._realio.ibcData,
329
330
  ..._rebus.ibcData,
330
331
  ..._regen.ibcData,
332
+ ..._ritbit.ibcData,
331
333
  ..._rizon.ibcData,
332
334
  ..._safrochain.ibcData,
333
335
  ..._saga.ibcData,
@@ -1326,6 +1326,37 @@ const info = [
1326
1326
  }
1327
1327
  }]
1328
1328
  },
1329
+ {
1330
+ $schema: '../ibc_data.schema.json',
1331
+ chain1: {
1332
+ chainName: 'noble',
1333
+ chainId: 'noble-1',
1334
+ clientId: '07-tendermint-228',
1335
+ connectionId: 'connection-212'
1336
+ },
1337
+ chain2: {
1338
+ chainName: 'ritbit',
1339
+ chainId: 'ritbit-mainnet',
1340
+ clientId: '07-tendermint-0',
1341
+ connectionId: 'connection-0'
1342
+ },
1343
+ channels: [{
1344
+ chain1: {
1345
+ channelId: 'channel-607',
1346
+ portId: 'transfer'
1347
+ },
1348
+ chain2: {
1349
+ channelId: 'channel-0',
1350
+ portId: 'transfer'
1351
+ },
1352
+ ordering: 'unordered',
1353
+ version: 'ics20-1',
1354
+ tags: {
1355
+ preferred: true,
1356
+ status: 'ACTIVE'
1357
+ }
1358
+ }]
1359
+ },
1329
1360
  {
1330
1361
  $schema: '../ibc_data.schema.json',
1331
1362
  chain1: {
@@ -23066,6 +23066,47 @@ const info = {
23066
23066
  socials: {
23067
23067
  website: 'https://aoe2war.com'
23068
23068
  }
23069
+ },
23070
+ {
23071
+ description: 'pARTy (ART) - where art meets party in the interchain. A fair-launched community art token minted natively on Cosmos Hub via tokenfactory.',
23072
+ denomUnits: [{
23073
+ denom: 'ibc/7D72341AF4AB0B2975BF933A425B81DAC2C940E50E7549207E2B3C6B14A9DAB2',
23074
+ exponent: 0
23075
+ }, {
23076
+ denom: 'art',
23077
+ exponent: 6
23078
+ }],
23079
+ typeAsset: 'ics20',
23080
+ base: 'ibc/7D72341AF4AB0B2975BF933A425B81DAC2C940E50E7549207E2B3C6B14A9DAB2',
23081
+ name: 'pARTy',
23082
+ display: 'art',
23083
+ symbol: 'ART',
23084
+ traces: [{
23085
+ type: 'ibc',
23086
+ counterparty: {
23087
+ chainName: 'cosmoshub',
23088
+ baseDenom: 'factory/cosmos1w9ee57gnduzm4l9h6xwn9tee9pyh8wlr4r9r35/art',
23089
+ channelId: 'channel-141'
23090
+ },
23091
+ chain: {
23092
+ channelId: 'channel-0',
23093
+ path: 'transfer/channel-0/factory/cosmos1w9ee57gnduzm4l9h6xwn9tee9pyh8wlr4r9r35/art'
23094
+ }
23095
+ }],
23096
+ images: [{
23097
+ imageSync: {
23098
+ chainName: 'cosmoshub',
23099
+ baseDenom: 'factory/cosmos1w9ee57gnduzm4l9h6xwn9tee9pyh8wlr4r9r35/art'
23100
+ },
23101
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/art.png'
23102
+ }],
23103
+ logoURIs: {
23104
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/art.png'
23105
+ },
23106
+ socials: {
23107
+ website: 'https://pic.zone',
23108
+ x: 'https://x.com/pARTy_in_Cosmos'
23109
+ }
23069
23110
  }
23070
23111
  ]
23071
23112
  };
@@ -6,18 +6,21 @@ const info = {
6
6
  status: 'live',
7
7
  website: 'https://rubin.trade/',
8
8
  networkType: 'mainnet',
9
- prettyName: 'RITBIT',
9
+ prettyName: 'Rubin',
10
10
  chainType: 'cosmos',
11
11
  chainId: 'ritbit-mainnet',
12
12
  bech32Prefix: 'rit',
13
+ daemonName: 'ritbitd',
14
+ nodeHome: '$HOME/.ritbit',
15
+ keyAlgos: ['secp256k1'],
13
16
  slip44: 118,
14
17
  fees: {
15
18
  feeTokens: [{
16
19
  denom: 'urit',
17
- fixedMinGasPrice: 12500000000,
18
- lowGasPrice: 12500000000,
19
- averageGasPrice: 12500000000,
20
- highGasPrice: 20000000000
20
+ fixedMinGasPrice: 25000000000,
21
+ lowGasPrice: 25000000000,
22
+ averageGasPrice: 25000000000,
23
+ highGasPrice: 40000000000
21
24
  }, {
22
25
  denom: 'uusdc',
23
26
  fixedMinGasPrice: 0.025,
@@ -31,10 +34,32 @@ const info = {
31
34
  denom: 'urit'
32
35
  }]
33
36
  },
37
+ codebase: {
38
+ recommendedVersion: 'v27.6',
39
+ compatibleVersions: ['v27.6'],
40
+ consensus: {
41
+ type: 'cometbft',
42
+ version: 'v0.39.3'
43
+ },
44
+ sdk: {
45
+ type: 'cosmos',
46
+ version: 'v0.54.3'
47
+ },
48
+ ibc: {
49
+ type: 'go',
50
+ version: 'v11.2.0'
51
+ },
52
+ genesis: {
53
+ genesisUrl: 'https://cdn.rubin.trade/scripts/genesis.json'
54
+ },
55
+ binaries: {
56
+ "linux/amd64": 'https://storage.yandexcloud.net/ritbit-upgrade/v27.6/ritbitd-v27.6-linux-amd64.tar.gz?checksum=sha256:9f6134e883fc52e44033b2ba52a90edf705c99799a7b4e885a8dce15938a6502'
57
+ }
58
+ },
34
59
  logoURIs: {
35
60
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ritbit/images/ritbit.png'
36
61
  },
37
- description: 'RITBIT is the network that powers Rubin Trade — a self-custody decentralized exchange for crypto perpetual futures and spot trading.',
62
+ description: 'Rubin is a self-custody decentralized exchange for crypto perpetual futures and spot trading.',
38
63
  apis: {
39
64
  rpc: [{
40
65
  address: 'https://rpc.mainnet.rubin.trade',
@@ -0,0 +1,3 @@
1
+ import { IBCData } from '@chain-registry/types';
2
+ declare const info: IBCData[];
3
+ export default info;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../ibc_data.schema.json',
5
+ chain1: {
6
+ chainName: 'noble',
7
+ chainId: 'noble-1',
8
+ clientId: '07-tendermint-228',
9
+ connectionId: 'connection-212'
10
+ },
11
+ chain2: {
12
+ chainName: 'ritbit',
13
+ chainId: 'ritbit-mainnet',
14
+ clientId: '07-tendermint-0',
15
+ connectionId: 'connection-0'
16
+ },
17
+ channels: [{
18
+ chain1: {
19
+ channelId: 'channel-607',
20
+ portId: 'transfer'
21
+ },
22
+ chain2: {
23
+ channelId: 'channel-0',
24
+ portId: 'transfer'
25
+ },
26
+ ordering: 'unordered',
27
+ version: 'ics20-1',
28
+ tags: {
29
+ preferred: true,
30
+ status: 'ACTIVE'
31
+ }
32
+ }]
33
+ }];
34
+ exports.default = info;
@@ -1,2 +1,3 @@
1
1
  export declare const assetList: import("@chain-registry/types").AssetList;
2
2
  export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibcData: import("@chain-registry/types").IBCData[];
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.chain = exports.assetList = void 0;
6
+ exports.ibcData = exports.chain = exports.assetList = void 0;
7
7
  const asset_list_1 = __importDefault(require("./asset-list"));
8
8
  const chain_1 = __importDefault(require("./chain"));
9
+ const ibc_data_1 = __importDefault(require("./ibc-data"));
9
10
  exports.assetList = asset_list_1.default;
10
11
  exports.chain = chain_1.default;
12
+ exports.ibcData = ibc_data_1.default;
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chainName: 'zerone',
6
+ assets: [{
7
+ description: 'The native staking and governance token of Zerone',
8
+ denomUnits: [
9
+ {
10
+ denom: 'uzrn',
11
+ exponent: 0,
12
+ aliases: ['microzrn']
13
+ },
14
+ {
15
+ denom: 'mzrn',
16
+ exponent: 3,
17
+ aliases: ['millizrn']
18
+ },
19
+ {
20
+ denom: 'zrn',
21
+ exponent: 6
22
+ }
23
+ ],
24
+ typeAsset: 'sdk.coin',
25
+ base: 'uzrn',
26
+ name: 'Zerone',
27
+ display: 'zrn',
28
+ symbol: 'ZRN',
29
+ images: [{
30
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zerone/images/zrn.svg',
31
+ theme: {
32
+ circle: false
33
+ }
34
+ }],
35
+ keywords: [
36
+ 'ai',
37
+ 'agents',
38
+ 'knowledge',
39
+ 'provenance'
40
+ ],
41
+ socials: {
42
+ website: 'https://zerone.ai/',
43
+ github: 'https://github.com/cambridgetcg/zerone-core'
44
+ }
45
+ }]
46
+ };
47
+ 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,91 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chainName: 'zerone',
6
+ status: 'live',
7
+ networkType: 'mainnet',
8
+ website: 'https://zerone.ai/',
9
+ prettyName: 'Zerone',
10
+ chainType: 'cosmos',
11
+ chainId: 'zerone-1',
12
+ bech32Prefix: 'zrn',
13
+ bech32Config: {
14
+ bech32PrefixAccAddr: 'zrn',
15
+ bech32PrefixAccPub: 'zrnpub',
16
+ bech32PrefixValAddr: 'zrnvaloper',
17
+ bech32PrefixValPub: 'zrnvaloperpub',
18
+ bech32PrefixConsAddr: 'zrnvalcons',
19
+ bech32PrefixConsPub: 'zrnvalconspub'
20
+ },
21
+ daemonName: 'zeroned',
22
+ nodeHome: '$HOME/.zeroned',
23
+ keyAlgos: ['secp256k1'],
24
+ slip44: 118,
25
+ fees: {
26
+ feeTokens: [{
27
+ denom: 'uzrn',
28
+ fixedMinGasPrice: 0.025,
29
+ lowGasPrice: 0.025,
30
+ averageGasPrice: 1,
31
+ highGasPrice: 1.2,
32
+ gasCosts: {
33
+ cosmosSend: 200000
34
+ }
35
+ }]
36
+ },
37
+ staking: {
38
+ stakingTokens: [{
39
+ denom: 'uzrn'
40
+ }],
41
+ lockDuration: {
42
+ time: '1814400s'
43
+ }
44
+ },
45
+ codebase: {
46
+ gitRepo: 'https://github.com/cambridgetcg/zerone-core',
47
+ language: {
48
+ type: 'go',
49
+ version: '1.24.0'
50
+ },
51
+ sdk: {
52
+ type: 'cosmos',
53
+ version: 'v0.50.15',
54
+ repo: 'https://github.com/cosmos/cosmos-sdk'
55
+ },
56
+ consensus: {
57
+ type: 'cometbft',
58
+ version: 'v0.38.20',
59
+ repo: 'https://github.com/cometbft/cometbft'
60
+ },
61
+ genesis: {
62
+ name: 'zerone-1',
63
+ genesisUrl: 'https://raw.githubusercontent.com/cambridgetcg/zerone-core/main/deploy/mainnet/artifacts/genesis.json'
64
+ }
65
+ },
66
+ images: [{
67
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zerone/images/zrn.svg',
68
+ theme: {
69
+ circle: false
70
+ }
71
+ }],
72
+ description: 'Zerone is a Cosmos SDK blockchain that records challenged agent work, knowledge, and provenance. ZRN is its native staking, governance, and fee token.',
73
+ apis: {
74
+ rpc: [{
75
+ address: 'http://169.155.55.44:26657',
76
+ provider: 'Zerone'
77
+ }]
78
+ },
79
+ explorers: [{
80
+ kind: 'Zerone Dashboard',
81
+ url: 'https://zerone.ai/'
82
+ }],
83
+ keywords: [
84
+ 'ai',
85
+ 'agents',
86
+ 'knowledge',
87
+ 'provenance',
88
+ 'proof-of-truth'
89
+ ]
90
+ };
91
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assetList: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
@@ -0,0 +1,10 @@
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.chain = exports.assetList = void 0;
7
+ const asset_list_1 = __importDefault(require("./asset-list"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assetList = asset_list_1.default;
10
+ exports.chain = chain_1.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.243",
3
+ "version": "2.0.245",
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.243"
32
+ "@chain-registry/types": "^2.0.245"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "38535fa24d20200a2a5ad893c3227685c3e64f47"
42
+ "gitHead": "b021e30051cb14b1d94a3cf221ee5cd9ae1b59a9"
43
43
  }
@@ -49,6 +49,7 @@ const _kujiratestnet = __importStar(require("./kujiratestnet"));
49
49
  const _kyvetestnet = __importStar(require("./kyvetestnet"));
50
50
  const _lavatestnet = __importStar(require("./lavatestnet"));
51
51
  const _likecointestnet = __importStar(require("./likecointestnet"));
52
+ const _limonatatestnet = __importStar(require("./limonatatestnet"));
52
53
  const _lumeratestnet = __importStar(require("./lumeratestnet"));
53
54
  const _manifesttestnet = __importStar(require("./manifesttestnet"));
54
55
  const _mantrachaintestnet2 = __importStar(require("./mantrachaintestnet2"));
@@ -102,6 +103,7 @@ const ibcData = [
102
103
  ..._kyvetestnet.ibcData,
103
104
  ..._lavatestnet.ibcData,
104
105
  ..._likecointestnet.ibcData,
106
+ ..._limonatatestnet.ibcData,
105
107
  ..._lumeratestnet.ibcData,
106
108
  ..._manifesttestnet.ibcData,
107
109
  ..._mantrachaintestnet2.ibcData,
@@ -0,0 +1,3 @@
1
+ import { IBCData } from '@chain-registry/types';
2
+ declare const info: IBCData[];
3
+ export default info;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../../ibc_data.schema.json',
5
+ chain1: {
6
+ chainName: 'limonatatestnet',
7
+ chainId: 'limonata_10777-1',
8
+ clientId: '07-tendermint-0',
9
+ connectionId: 'connection-0'
10
+ },
11
+ chain2: {
12
+ chainName: 'osmosistestnet',
13
+ chainId: 'osmo-test-5',
14
+ clientId: '07-tendermint-5256',
15
+ connectionId: 'connection-4584'
16
+ },
17
+ channels: [{
18
+ chain1: {
19
+ channelId: 'channel-0',
20
+ portId: 'transfer'
21
+ },
22
+ chain2: {
23
+ channelId: 'channel-11808',
24
+ portId: 'transfer'
25
+ },
26
+ ordering: 'unordered',
27
+ version: 'ics20-1',
28
+ tags: {
29
+ preferred: true,
30
+ status: 'ACTIVE'
31
+ }
32
+ }]
33
+ }];
34
+ exports.default = info;
@@ -1,2 +1,3 @@
1
1
  export declare const assetList: import("@chain-registry/types").AssetList;
2
2
  export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibcData: import("@chain-registry/types").IBCData[];
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.chain = exports.assetList = void 0;
6
+ exports.ibcData = exports.chain = exports.assetList = void 0;
7
7
  const asset_list_1 = __importDefault(require("./asset-list"));
8
8
  const chain_1 = __importDefault(require("./chain"));
9
+ const ibc_data_1 = __importDefault(require("./ibc-data"));
9
10
  exports.assetList = asset_list_1.default;
10
11
  exports.chain = chain_1.default;
12
+ exports.ibcData = ibc_data_1.default;
@@ -760,6 +760,37 @@ const info = [
760
760
  }
761
761
  }]
762
762
  },
763
+ {
764
+ $schema: '../../ibc_data.schema.json',
765
+ chain1: {
766
+ chainName: 'limonatatestnet',
767
+ chainId: 'limonata_10777-1',
768
+ clientId: '07-tendermint-0',
769
+ connectionId: 'connection-0'
770
+ },
771
+ chain2: {
772
+ chainName: 'osmosistestnet',
773
+ chainId: 'osmo-test-5',
774
+ clientId: '07-tendermint-5256',
775
+ connectionId: 'connection-4584'
776
+ },
777
+ channels: [{
778
+ chain1: {
779
+ channelId: 'channel-0',
780
+ portId: 'transfer'
781
+ },
782
+ chain2: {
783
+ channelId: 'channel-11808',
784
+ portId: 'transfer'
785
+ },
786
+ ordering: 'unordered',
787
+ version: 'ics20-1',
788
+ tags: {
789
+ preferred: true,
790
+ status: 'ACTIVE'
791
+ }
792
+ }]
793
+ },
763
794
  {
764
795
  $schema: '../../ibc_data.schema.json',
765
796
  chain1: {