chain-registry 2.0.122 → 2.0.124

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/beezee/asset-list.js +44 -0
  3. package/esm/mainnet/chains.js +2 -0
  4. package/esm/mainnet/divine/asset-list.js +31 -0
  5. package/esm/mainnet/divine/chain.js +110 -0
  6. package/esm/mainnet/divine/index.js +4 -0
  7. package/esm/mainnet/epix/asset-list.js +1 -1
  8. package/esm/mainnet/injective/chain.js +8 -0
  9. package/esm/mainnet/zigchain/chain.js +9 -9
  10. package/esm/testnet/asset-lists.js +2 -0
  11. package/esm/testnet/chains.js +2 -0
  12. package/esm/testnet/divinetestnet/asset-list.js +43 -0
  13. package/esm/testnet/divinetestnet/chain.js +109 -0
  14. package/esm/testnet/divinetestnet/index.js +4 -0
  15. package/esm/testnet/epixtestnet/asset-list.js +1 -1
  16. package/mainnet/asset-lists.js +2 -0
  17. package/mainnet/beezee/asset-list.js +44 -0
  18. package/mainnet/chains.js +2 -0
  19. package/mainnet/divine/asset-list.d.ts +3 -0
  20. package/mainnet/divine/asset-list.js +33 -0
  21. package/mainnet/divine/chain.d.ts +3 -0
  22. package/mainnet/divine/chain.js +112 -0
  23. package/mainnet/divine/index.d.ts +2 -0
  24. package/mainnet/divine/index.js +10 -0
  25. package/mainnet/epix/asset-list.js +1 -1
  26. package/mainnet/injective/chain.js +8 -0
  27. package/mainnet/zigchain/chain.js +9 -9
  28. package/package.json +3 -3
  29. package/testnet/asset-lists.js +2 -0
  30. package/testnet/chains.js +2 -0
  31. package/testnet/divinetestnet/asset-list.d.ts +3 -0
  32. package/testnet/divinetestnet/asset-list.js +45 -0
  33. package/testnet/divinetestnet/chain.d.ts +3 -0
  34. package/testnet/divinetestnet/chain.js +111 -0
  35. package/testnet/divinetestnet/index.d.ts +2 -0
  36. package/testnet/divinetestnet/index.js +10 -0
  37. package/testnet/epixtestnet/asset-list.js +1 -1
@@ -56,6 +56,7 @@ import * as _cryptoorgchain from './cryptoorgchain';
56
56
  import * as _decentr from './decentr';
57
57
  import * as _desmos from './desmos';
58
58
  import * as _dhealth from './dhealth';
59
+ import * as _divine from './divine';
59
60
  import * as _doravota from './doravota';
60
61
  import * as _dungeon from './dungeon';
61
62
  import * as _dydx from './dydx';
@@ -279,6 +280,7 @@ const assetList = [
279
280
  _decentr.assetList,
280
281
  _desmos.assetList,
281
282
  _dhealth.assetList,
283
+ _divine.assetList,
282
284
  _doravota.assetList,
283
285
  _dungeon.assetList,
284
286
  _dydx.assetList,
@@ -514,6 +514,50 @@ const info = {
514
514
  x: 'https://x.com/CryproTrtl'
515
515
  },
516
516
  typeAsset: 'sdk.coin'
517
+ },
518
+ {
519
+ description: 'The fee token of AtomOne',
520
+ denomUnits: [{
521
+ denom: 'ibc/82931180F0962712BFABB189083A94C77EA90E269ABFC6D310AF922B2B14E011',
522
+ exponent: 0
523
+ }, {
524
+ denom: 'photon',
525
+ exponent: 6
526
+ }],
527
+ base: 'ibc/82931180F0962712BFABB189083A94C77EA90E269ABFC6D310AF922B2B14E011',
528
+ name: 'Photon',
529
+ display: 'photon',
530
+ symbol: 'PHOTON',
531
+ logoURIs: {
532
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/photon.png',
533
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/photon.svg'
534
+ },
535
+ images: [{
536
+ imageSync: {
537
+ chainName: 'atomone',
538
+ baseDenom: 'uphoton'
539
+ },
540
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/photon.png',
541
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/photon.svg'
542
+ }],
543
+ socials: {
544
+ website: 'https://atom.one',
545
+ x: 'https://x.com/_atomone'
546
+ },
547
+ coingeckoId: 'photon-2',
548
+ typeAsset: 'ics20',
549
+ traces: [{
550
+ type: 'ibc',
551
+ counterparty: {
552
+ chainName: 'atomone',
553
+ baseDenom: 'uphoton',
554
+ channelId: 'channel-1'
555
+ },
556
+ chain: {
557
+ channelId: 'channel-6',
558
+ path: 'transfer/channel-6/uphoton'
559
+ }
560
+ }]
517
561
  }
518
562
  ]
519
563
  };
@@ -56,6 +56,7 @@ import * as _cryptoorgchain from './cryptoorgchain';
56
56
  import * as _decentr from './decentr';
57
57
  import * as _desmos from './desmos';
58
58
  import * as _dhealth from './dhealth';
59
+ import * as _divine from './divine';
59
60
  import * as _doravota from './doravota';
60
61
  import * as _dungeon from './dungeon';
61
62
  import * as _dydx from './dydx';
@@ -279,6 +280,7 @@ const chains = [
279
280
  _decentr.chain,
280
281
  _desmos.chain,
281
282
  _dhealth.chain,
283
+ _divine.chain,
282
284
  _doravota.chain,
283
285
  _dungeon.chain,
284
286
  _dydx.chain,
@@ -0,0 +1,31 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'divine',
4
+ assets: [{
5
+ description: 'Divine Ray Chain (DRC) powers a public-permissioned blockchain designed for conscious creators and community networks. DRC is the native asset used to secure the chain, enable transactions, reward participation, and support the emerging divine digital economy.',
6
+ denomUnits: [{
7
+ denom: 'uDRC',
8
+ exponent: 0,
9
+ aliases: ['microDRC']
10
+ }, {
11
+ denom: 'DRC',
12
+ exponent: 6
13
+ }],
14
+ base: 'uDRC',
15
+ name: 'Divine',
16
+ display: 'DRC',
17
+ symbol: 'DRC',
18
+ logoURIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
20
+ },
21
+ images: [{
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
23
+ }],
24
+ socials: {
25
+ website: 'https://divineray.ca/',
26
+ telegram: 'https://t.me/+WF9GmuVpuOFmOTEx'
27
+ },
28
+ typeAsset: 'sdk.coin'
29
+ }]
30
+ };
31
+ export default info;
@@ -0,0 +1,110 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'divine',
4
+ status: 'live',
5
+ networkType: 'mainnet',
6
+ website: 'https://divineray.ca/',
7
+ prettyName: 'Divine',
8
+ chainType: 'cosmos',
9
+ chainId: 'divine-1',
10
+ bech32Prefix: 'divine',
11
+ daemonName: 'divined',
12
+ nodeHome: '$HOME/.divine',
13
+ slip44: 118,
14
+ staking: {
15
+ stakingTokens: [{
16
+ denom: 'uDRC'
17
+ }],
18
+ lockDuration: {
19
+ time: '2592000s'
20
+ }
21
+ },
22
+ fees: {
23
+ feeTokens: [{
24
+ denom: 'uDRC',
25
+ lowGasPrice: 0.0025,
26
+ averageGasPrice: 0.005,
27
+ highGasPrice: 0.05
28
+ }]
29
+ },
30
+ codebase: {
31
+ gitRepo: 'https://github.com/Divine-Ray-Coin/divinechain.git',
32
+ genesis: {
33
+ genesisUrl: 'https://raw.githubusercontent.com/Divine-Ray-Coin/divinechain/refs/heads/main/genesis/genesis.json'
34
+ },
35
+ recommendedVersion: 'v1.0.0',
36
+ compatibleVersions: ['v1.0.0'],
37
+ consensus: {
38
+ type: 'cometbft',
39
+ version: 'v0.38.17'
40
+ },
41
+ cosmwasm: {
42
+ enabled: false
43
+ },
44
+ language: {
45
+ type: 'go',
46
+ version: '1.24.5'
47
+ },
48
+ sdk: {
49
+ type: 'cosmos',
50
+ version: 'v0.53.3'
51
+ },
52
+ ibc: {
53
+ type: 'go',
54
+ version: 'v10.2.0'
55
+ }
56
+ },
57
+ logoURIs: {
58
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
59
+ },
60
+ description: 'Divine Ray Chain (DRC) powers a public-permissioned blockchain designed for conscious creators and community networks. DRC is the native asset used to secure the chain, enable transactions, reward participation, and support the emerging divine digital economy.',
61
+ apis: {
62
+ rpc: [
63
+ {
64
+ address: 'https://rpc-mainnet.divineray.ca:443',
65
+ provider: 'divineRay'
66
+ },
67
+ {
68
+ address: 'https://rpc-mainnet-node2.divineray.ca:443',
69
+ provider: 'divineRay'
70
+ },
71
+ {
72
+ address: 'https://rpc-mainnet-node3.divineray.ca:443',
73
+ provider: 'divineRay'
74
+ }
75
+ ],
76
+ rest: [
77
+ {
78
+ address: 'https://rest-mainnet.divineray.ca:443',
79
+ provider: 'divineRay'
80
+ },
81
+ {
82
+ address: 'https://rest-mainnet-node2.divineray.ca:443',
83
+ provider: 'divineRay'
84
+ },
85
+ {
86
+ address: 'https://rest-mainnet-node3.divineray.ca:443',
87
+ provider: 'divineRay'
88
+ }
89
+ ],
90
+ grpc: [
91
+ {
92
+ address: 'grpc-mainnet.divineray.ca:443',
93
+ provider: 'divineRay'
94
+ },
95
+ {
96
+ address: 'grpc-mainnet-node2.divineray.ca:443',
97
+ provider: 'divineRay'
98
+ },
99
+ {
100
+ address: 'grpc-mainnet-node3.divineray.ca:443',
101
+ provider: 'divineRay'
102
+ }
103
+ ]
104
+ },
105
+ explorers: [],
106
+ images: [{
107
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
108
+ }]
109
+ };
110
+ 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;
@@ -2,7 +2,7 @@ const info = {
2
2
  $schema: '../assetlist.schema.json',
3
3
  chainName: 'epix',
4
4
  assets: [{
5
- description: 'The EPIX coin, the lifeblood of the Epix network, providing the utility that powers every interaction and transaction within the ecosystem.',
5
+ description: 'Epix is designed to power a completely decentralized internet, where websites are hosted by everyone and controlled by no one, making the web unstoppable.',
6
6
  denomUnits: [{
7
7
  denom: 'aepix',
8
8
  exponent: 0
@@ -230,6 +230,14 @@ const info = {
230
230
  {
231
231
  address: 'https://injective-evm-rpc.highstakes.ch',
232
232
  provider: 'High Stakes 🇨🇭'
233
+ },
234
+ {
235
+ address: 'https://sentry.evm-rpc.injective.network',
236
+ provider: 'injectivelabs.org'
237
+ },
238
+ {
239
+ address: 'https://injectiveevm-rpc.polkachu.com',
240
+ provider: 'Polkachu'
233
241
  }
234
242
  ]
235
243
  },
@@ -32,19 +32,19 @@ const info = {
32
32
  },
33
33
  codebase: {
34
34
  gitRepo: 'https://github.com/ZIGChain/zigchain',
35
- recommendedVersion: '1.2.0',
36
- compatibleVersions: ['1.2.0'],
35
+ recommendedVersion: '2.0.0',
36
+ compatibleVersions: ['2.0.0'],
37
37
  consensus: {
38
38
  type: 'cometbft',
39
- version: '0.38.17'
39
+ version: '0.38.19'
40
40
  },
41
41
  sdk: {
42
42
  type: 'cosmos',
43
- version: '0.50.14'
43
+ version: '0.53.4'
44
44
  },
45
45
  ibc: {
46
46
  type: 'go',
47
- version: '8.4.0'
47
+ version: '10.1.0'
48
48
  },
49
49
  cosmwasm: {
50
50
  version: '0.55.1',
@@ -54,11 +54,11 @@ const info = {
54
54
  genesisUrl: 'https://github.com/ZIGChain/networks/raw/main/zigchain-1/genesis.json'
55
55
  },
56
56
  binaries: {
57
- "linux/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v1.2.0-linux-amd64.tar.gz',
58
- "darwin/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v1.2.0-darwin-amd64.tar.gz',
59
- "darwin/arm64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v1.2.0-darwin-amd64.tar.gz'
57
+ "linux/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v2.0.0-linux-amd64.tar.gz?checksum=sha256:8f2a4a51fa2d73b7bc61c33d30332fb61e76ed0be4a381a37d27aa17115a9040',
58
+ "darwin/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v2.0.0-darwin-amd64.tar.gz?checksum=sha256:6269882ccb1caf0af7600f2d24f5aeae7710290aba299d0d4ed607c6e63da803',
59
+ "darwin/arm64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v2.0.0-darwin-arm64.tar.gz?checksum=sha256:07f59514973d67e0d09c27b1be50da78f3b824518f1ee4735c09322ec1bd3789'
60
60
  },
61
- tag: '1.2.0'
61
+ tag: 'v2.0.0'
62
62
  },
63
63
  logoURIs: {
64
64
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
@@ -31,6 +31,7 @@ import * as _daodiseotestnet from './daodiseotestnet';
31
31
  import * as _deardogetestnet from './deardogetestnet';
32
32
  import * as _desmostestnet from './desmostestnet';
33
33
  import * as _dhealthtestnet from './dhealthtestnet';
34
+ import * as _divinetestnet from './divinetestnet';
34
35
  import * as _doravotatestnet from './doravotatestnet';
35
36
  import * as _dydxtestnet from './dydxtestnet';
36
37
  import * as _dymensiontestnet1 from './dymensiontestnet1';
@@ -171,6 +172,7 @@ const assetList = [
171
172
  _deardogetestnet.assetList,
172
173
  _desmostestnet.assetList,
173
174
  _dhealthtestnet.assetList,
175
+ _divinetestnet.assetList,
174
176
  _doravotatestnet.assetList,
175
177
  _dydxtestnet.assetList,
176
178
  _dymensiontestnet1.assetList,
@@ -31,6 +31,7 @@ import * as _daodiseotestnet from './daodiseotestnet';
31
31
  import * as _deardogetestnet from './deardogetestnet';
32
32
  import * as _desmostestnet from './desmostestnet';
33
33
  import * as _dhealthtestnet from './dhealthtestnet';
34
+ import * as _divinetestnet from './divinetestnet';
34
35
  import * as _doravotatestnet from './doravotatestnet';
35
36
  import * as _dydxtestnet from './dydxtestnet';
36
37
  import * as _dymensiontestnet1 from './dymensiontestnet1';
@@ -171,6 +172,7 @@ const chains = [
171
172
  _deardogetestnet.chain,
172
173
  _desmostestnet.chain,
173
174
  _dhealthtestnet.chain,
175
+ _divinetestnet.chain,
174
176
  _doravotatestnet.chain,
175
177
  _dydxtestnet.chain,
176
178
  _dymensiontestnet1.chain,
@@ -0,0 +1,43 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chainName: 'divinetestnet',
4
+ assets: [{
5
+ description: 'Divine Ray Chain (DRC) powers a public-permissioned blockchain designed for conscious creators and community networks. DRC is the native asset used to secure the chain, enable transactions, reward participation, and support the emerging divine digital economy.',
6
+ denomUnits: [{
7
+ denom: 'uDRC',
8
+ exponent: 0,
9
+ aliases: ['microDRC']
10
+ }, {
11
+ denom: 'DRC',
12
+ exponent: 6
13
+ }],
14
+ base: 'uDRC',
15
+ name: 'Divine Testnet',
16
+ display: 'DRC',
17
+ symbol: 'DRC',
18
+ logoURIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
20
+ },
21
+ images: [{
22
+ imageSync: {
23
+ chainName: 'divine',
24
+ baseDenom: 'uDRC'
25
+ },
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
27
+ }],
28
+ traces: [{
29
+ type: 'test-mintage',
30
+ counterparty: {
31
+ chainName: 'divine',
32
+ baseDenom: 'uDRC'
33
+ },
34
+ provider: 'DivineRay'
35
+ }],
36
+ socials: {
37
+ website: 'https://divineray.ca/',
38
+ telegram: 'https://t.me/+WF9GmuVpuOFmOTEx'
39
+ },
40
+ typeAsset: 'sdk.coin'
41
+ }]
42
+ };
43
+ export default info;
@@ -0,0 +1,109 @@
1
+ const info = {
2
+ $schema: '../../chain.schema.json',
3
+ chainName: 'divinetestnet',
4
+ status: 'live',
5
+ networkType: 'testnet',
6
+ prettyName: 'Divine Testnet',
7
+ chainType: 'cosmos',
8
+ chainId: 'divine-testnet-1',
9
+ bech32Prefix: 'divine',
10
+ daemonName: 'divined',
11
+ nodeHome: '$HOME/.divine',
12
+ slip44: 118,
13
+ staking: {
14
+ stakingTokens: [{
15
+ denom: 'uDRC'
16
+ }],
17
+ lockDuration: {
18
+ time: '2592000s'
19
+ }
20
+ },
21
+ fees: {
22
+ feeTokens: [{
23
+ denom: 'uDRC',
24
+ lowGasPrice: 0.0025,
25
+ averageGasPrice: 0.025,
26
+ highGasPrice: 0.05
27
+ }]
28
+ },
29
+ codebase: {
30
+ gitRepo: 'https://github.com/Divine-Ray-Coin/divinechain.git',
31
+ genesis: {
32
+ genesisUrl: 'https://raw.githubusercontent.com/Divine-Ray-Coin/divinechain/refs/heads/main/genesis/genesis.json'
33
+ },
34
+ recommendedVersion: 'v1.0.0',
35
+ compatibleVersions: ['v1.0.0'],
36
+ consensus: {
37
+ type: 'cometbft',
38
+ version: 'v0.38.17'
39
+ },
40
+ cosmwasm: {
41
+ enabled: false
42
+ },
43
+ language: {
44
+ type: 'go',
45
+ version: '1.24.5'
46
+ },
47
+ sdk: {
48
+ type: 'cosmos',
49
+ version: 'v0.53.3'
50
+ },
51
+ ibc: {
52
+ type: 'go',
53
+ version: 'v10.2.0'
54
+ }
55
+ },
56
+ logoURIs: {
57
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
58
+ },
59
+ description: 'Divine Ray Chain (DRC) powers a public-permissioned blockchain designed for conscious creators and community networks. DRC is the native asset used to secure the chain, enable transactions, reward participation, and support the emerging divine digital economy.',
60
+ apis: {
61
+ rpc: [
62
+ {
63
+ address: 'https://rpc-testnet-node1.divineray.ca:443',
64
+ provider: 'divineRay'
65
+ },
66
+ {
67
+ address: 'https://rpc-testnet-node2.divineray.ca:443',
68
+ provider: 'divineRay'
69
+ },
70
+ {
71
+ address: 'https://rpc-testnet-node3.divineray.ca:443',
72
+ provider: 'divineRay'
73
+ }
74
+ ],
75
+ rest: [
76
+ {
77
+ address: 'https://rest-testnet-node1.divineray.ca:443',
78
+ provider: 'divineRay'
79
+ },
80
+ {
81
+ address: 'https://rest-testnet-node2.divineray.ca:443',
82
+ provider: 'divineRay'
83
+ },
84
+ {
85
+ address: 'https://rest-testnet-node3.divineray.ca:443',
86
+ provider: 'divineRay'
87
+ }
88
+ ],
89
+ grpc: [
90
+ {
91
+ address: 'grpc-testnet-node1.divineray.ca:443',
92
+ provider: 'divineRay'
93
+ },
94
+ {
95
+ address: 'grpc-testnet-node2.divineray.ca:443',
96
+ provider: 'divineRay'
97
+ },
98
+ {
99
+ address: 'grpc-testnet-node3.divineray.ca:443',
100
+ provider: 'divineRay'
101
+ }
102
+ ]
103
+ },
104
+ explorers: [],
105
+ images: [{
106
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
107
+ }]
108
+ };
109
+ 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;
@@ -2,7 +2,7 @@ const info = {
2
2
  $schema: '../../assetlist.schema.json',
3
3
  chainName: 'epixtestnet',
4
4
  assets: [{
5
- description: 'The EPIX coin, the lifeblood of the Epix network, providing the utility that powers every interaction and transaction within the ecosystem.',
5
+ description: 'Epix is designed to power a completely decentralized internet, where websites are hosted by everyone and controlled by no one, making the web unstoppable.',
6
6
  denomUnits: [{
7
7
  denom: 'aepix',
8
8
  exponent: 0
@@ -81,6 +81,7 @@ const _cryptoorgchain = __importStar(require("./cryptoorgchain"));
81
81
  const _decentr = __importStar(require("./decentr"));
82
82
  const _desmos = __importStar(require("./desmos"));
83
83
  const _dhealth = __importStar(require("./dhealth"));
84
+ const _divine = __importStar(require("./divine"));
84
85
  const _doravota = __importStar(require("./doravota"));
85
86
  const _dungeon = __importStar(require("./dungeon"));
86
87
  const _dydx = __importStar(require("./dydx"));
@@ -304,6 +305,7 @@ const assetList = [
304
305
  _decentr.assetList,
305
306
  _desmos.assetList,
306
307
  _dhealth.assetList,
308
+ _divine.assetList,
307
309
  _doravota.assetList,
308
310
  _dungeon.assetList,
309
311
  _dydx.assetList,
@@ -516,6 +516,50 @@ const info = {
516
516
  x: 'https://x.com/CryproTrtl'
517
517
  },
518
518
  typeAsset: 'sdk.coin'
519
+ },
520
+ {
521
+ description: 'The fee token of AtomOne',
522
+ denomUnits: [{
523
+ denom: 'ibc/82931180F0962712BFABB189083A94C77EA90E269ABFC6D310AF922B2B14E011',
524
+ exponent: 0
525
+ }, {
526
+ denom: 'photon',
527
+ exponent: 6
528
+ }],
529
+ base: 'ibc/82931180F0962712BFABB189083A94C77EA90E269ABFC6D310AF922B2B14E011',
530
+ name: 'Photon',
531
+ display: 'photon',
532
+ symbol: 'PHOTON',
533
+ logoURIs: {
534
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/photon.png',
535
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/photon.svg'
536
+ },
537
+ images: [{
538
+ imageSync: {
539
+ chainName: 'atomone',
540
+ baseDenom: 'uphoton'
541
+ },
542
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/photon.png',
543
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/photon.svg'
544
+ }],
545
+ socials: {
546
+ website: 'https://atom.one',
547
+ x: 'https://x.com/_atomone'
548
+ },
549
+ coingeckoId: 'photon-2',
550
+ typeAsset: 'ics20',
551
+ traces: [{
552
+ type: 'ibc',
553
+ counterparty: {
554
+ chainName: 'atomone',
555
+ baseDenom: 'uphoton',
556
+ channelId: 'channel-1'
557
+ },
558
+ chain: {
559
+ channelId: 'channel-6',
560
+ path: 'transfer/channel-6/uphoton'
561
+ }
562
+ }]
519
563
  }
520
564
  ]
521
565
  };
package/mainnet/chains.js CHANGED
@@ -81,6 +81,7 @@ const _cryptoorgchain = __importStar(require("./cryptoorgchain"));
81
81
  const _decentr = __importStar(require("./decentr"));
82
82
  const _desmos = __importStar(require("./desmos"));
83
83
  const _dhealth = __importStar(require("./dhealth"));
84
+ const _divine = __importStar(require("./divine"));
84
85
  const _doravota = __importStar(require("./doravota"));
85
86
  const _dungeon = __importStar(require("./dungeon"));
86
87
  const _dydx = __importStar(require("./dydx"));
@@ -304,6 +305,7 @@ const chains = [
304
305
  _decentr.chain,
305
306
  _desmos.chain,
306
307
  _dhealth.chain,
308
+ _divine.chain,
307
309
  _doravota.chain,
308
310
  _dungeon.chain,
309
311
  _dydx.chain,
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chainName: 'divine',
6
+ assets: [{
7
+ description: 'Divine Ray Chain (DRC) powers a public-permissioned blockchain designed for conscious creators and community networks. DRC is the native asset used to secure the chain, enable transactions, reward participation, and support the emerging divine digital economy.',
8
+ denomUnits: [{
9
+ denom: 'uDRC',
10
+ exponent: 0,
11
+ aliases: ['microDRC']
12
+ }, {
13
+ denom: 'DRC',
14
+ exponent: 6
15
+ }],
16
+ base: 'uDRC',
17
+ name: 'Divine',
18
+ display: 'DRC',
19
+ symbol: 'DRC',
20
+ logoURIs: {
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
22
+ },
23
+ images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
25
+ }],
26
+ socials: {
27
+ website: 'https://divineray.ca/',
28
+ telegram: 'https://t.me/+WF9GmuVpuOFmOTEx'
29
+ },
30
+ typeAsset: 'sdk.coin'
31
+ }]
32
+ };
33
+ 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,112 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chainName: 'divine',
6
+ status: 'live',
7
+ networkType: 'mainnet',
8
+ website: 'https://divineray.ca/',
9
+ prettyName: 'Divine',
10
+ chainType: 'cosmos',
11
+ chainId: 'divine-1',
12
+ bech32Prefix: 'divine',
13
+ daemonName: 'divined',
14
+ nodeHome: '$HOME/.divine',
15
+ slip44: 118,
16
+ staking: {
17
+ stakingTokens: [{
18
+ denom: 'uDRC'
19
+ }],
20
+ lockDuration: {
21
+ time: '2592000s'
22
+ }
23
+ },
24
+ fees: {
25
+ feeTokens: [{
26
+ denom: 'uDRC',
27
+ lowGasPrice: 0.0025,
28
+ averageGasPrice: 0.005,
29
+ highGasPrice: 0.05
30
+ }]
31
+ },
32
+ codebase: {
33
+ gitRepo: 'https://github.com/Divine-Ray-Coin/divinechain.git',
34
+ genesis: {
35
+ genesisUrl: 'https://raw.githubusercontent.com/Divine-Ray-Coin/divinechain/refs/heads/main/genesis/genesis.json'
36
+ },
37
+ recommendedVersion: 'v1.0.0',
38
+ compatibleVersions: ['v1.0.0'],
39
+ consensus: {
40
+ type: 'cometbft',
41
+ version: 'v0.38.17'
42
+ },
43
+ cosmwasm: {
44
+ enabled: false
45
+ },
46
+ language: {
47
+ type: 'go',
48
+ version: '1.24.5'
49
+ },
50
+ sdk: {
51
+ type: 'cosmos',
52
+ version: 'v0.53.3'
53
+ },
54
+ ibc: {
55
+ type: 'go',
56
+ version: 'v10.2.0'
57
+ }
58
+ },
59
+ logoURIs: {
60
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
61
+ },
62
+ description: 'Divine Ray Chain (DRC) powers a public-permissioned blockchain designed for conscious creators and community networks. DRC is the native asset used to secure the chain, enable transactions, reward participation, and support the emerging divine digital economy.',
63
+ apis: {
64
+ rpc: [
65
+ {
66
+ address: 'https://rpc-mainnet.divineray.ca:443',
67
+ provider: 'divineRay'
68
+ },
69
+ {
70
+ address: 'https://rpc-mainnet-node2.divineray.ca:443',
71
+ provider: 'divineRay'
72
+ },
73
+ {
74
+ address: 'https://rpc-mainnet-node3.divineray.ca:443',
75
+ provider: 'divineRay'
76
+ }
77
+ ],
78
+ rest: [
79
+ {
80
+ address: 'https://rest-mainnet.divineray.ca:443',
81
+ provider: 'divineRay'
82
+ },
83
+ {
84
+ address: 'https://rest-mainnet-node2.divineray.ca:443',
85
+ provider: 'divineRay'
86
+ },
87
+ {
88
+ address: 'https://rest-mainnet-node3.divineray.ca:443',
89
+ provider: 'divineRay'
90
+ }
91
+ ],
92
+ grpc: [
93
+ {
94
+ address: 'grpc-mainnet.divineray.ca:443',
95
+ provider: 'divineRay'
96
+ },
97
+ {
98
+ address: 'grpc-mainnet-node2.divineray.ca:443',
99
+ provider: 'divineRay'
100
+ },
101
+ {
102
+ address: 'grpc-mainnet-node3.divineray.ca:443',
103
+ provider: 'divineRay'
104
+ }
105
+ ]
106
+ },
107
+ explorers: [],
108
+ images: [{
109
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
110
+ }]
111
+ };
112
+ 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;
@@ -4,7 +4,7 @@ const info = {
4
4
  $schema: '../assetlist.schema.json',
5
5
  chainName: 'epix',
6
6
  assets: [{
7
- description: 'The EPIX coin, the lifeblood of the Epix network, providing the utility that powers every interaction and transaction within the ecosystem.',
7
+ description: 'Epix is designed to power a completely decentralized internet, where websites are hosted by everyone and controlled by no one, making the web unstoppable.',
8
8
  denomUnits: [{
9
9
  denom: 'aepix',
10
10
  exponent: 0
@@ -232,6 +232,14 @@ const info = {
232
232
  {
233
233
  address: 'https://injective-evm-rpc.highstakes.ch',
234
234
  provider: 'High Stakes 🇨🇭'
235
+ },
236
+ {
237
+ address: 'https://sentry.evm-rpc.injective.network',
238
+ provider: 'injectivelabs.org'
239
+ },
240
+ {
241
+ address: 'https://injectiveevm-rpc.polkachu.com',
242
+ provider: 'Polkachu'
235
243
  }
236
244
  ]
237
245
  },
@@ -34,19 +34,19 @@ const info = {
34
34
  },
35
35
  codebase: {
36
36
  gitRepo: 'https://github.com/ZIGChain/zigchain',
37
- recommendedVersion: '1.2.0',
38
- compatibleVersions: ['1.2.0'],
37
+ recommendedVersion: '2.0.0',
38
+ compatibleVersions: ['2.0.0'],
39
39
  consensus: {
40
40
  type: 'cometbft',
41
- version: '0.38.17'
41
+ version: '0.38.19'
42
42
  },
43
43
  sdk: {
44
44
  type: 'cosmos',
45
- version: '0.50.14'
45
+ version: '0.53.4'
46
46
  },
47
47
  ibc: {
48
48
  type: 'go',
49
- version: '8.4.0'
49
+ version: '10.1.0'
50
50
  },
51
51
  cosmwasm: {
52
52
  version: '0.55.1',
@@ -56,11 +56,11 @@ const info = {
56
56
  genesisUrl: 'https://github.com/ZIGChain/networks/raw/main/zigchain-1/genesis.json'
57
57
  },
58
58
  binaries: {
59
- "linux/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v1.2.0-linux-amd64.tar.gz',
60
- "darwin/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v1.2.0-darwin-amd64.tar.gz',
61
- "darwin/arm64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v1.2.0-darwin-amd64.tar.gz'
59
+ "linux/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v2.0.0-linux-amd64.tar.gz?checksum=sha256:8f2a4a51fa2d73b7bc61c33d30332fb61e76ed0be4a381a37d27aa17115a9040',
60
+ "darwin/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v2.0.0-darwin-amd64.tar.gz?checksum=sha256:6269882ccb1caf0af7600f2d24f5aeae7710290aba299d0d4ed607c6e63da803',
61
+ "darwin/arm64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v2.0.0-darwin-arm64.tar.gz?checksum=sha256:07f59514973d67e0d09c27b1be50da78f3b824518f1ee4735c09322ec1bd3789'
62
62
  },
63
- tag: '1.2.0'
63
+ tag: 'v2.0.0'
64
64
  },
65
65
  logoURIs: {
66
66
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.122",
3
+ "version": "2.0.124",
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.122"
32
+ "@chain-registry/types": "^2.0.124"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "664be9797c350a2b0a64046d96d6a9efac11f11a"
42
+ "gitHead": "77c8d85d0c75fb6e566385825d71b68f2bbc20e4"
43
43
  }
@@ -56,6 +56,7 @@ const _daodiseotestnet = __importStar(require("./daodiseotestnet"));
56
56
  const _deardogetestnet = __importStar(require("./deardogetestnet"));
57
57
  const _desmostestnet = __importStar(require("./desmostestnet"));
58
58
  const _dhealthtestnet = __importStar(require("./dhealthtestnet"));
59
+ const _divinetestnet = __importStar(require("./divinetestnet"));
59
60
  const _doravotatestnet = __importStar(require("./doravotatestnet"));
60
61
  const _dydxtestnet = __importStar(require("./dydxtestnet"));
61
62
  const _dymensiontestnet1 = __importStar(require("./dymensiontestnet1"));
@@ -196,6 +197,7 @@ const assetList = [
196
197
  _deardogetestnet.assetList,
197
198
  _desmostestnet.assetList,
198
199
  _dhealthtestnet.assetList,
200
+ _divinetestnet.assetList,
199
201
  _doravotatestnet.assetList,
200
202
  _dydxtestnet.assetList,
201
203
  _dymensiontestnet1.assetList,
package/testnet/chains.js CHANGED
@@ -56,6 +56,7 @@ const _daodiseotestnet = __importStar(require("./daodiseotestnet"));
56
56
  const _deardogetestnet = __importStar(require("./deardogetestnet"));
57
57
  const _desmostestnet = __importStar(require("./desmostestnet"));
58
58
  const _dhealthtestnet = __importStar(require("./dhealthtestnet"));
59
+ const _divinetestnet = __importStar(require("./divinetestnet"));
59
60
  const _doravotatestnet = __importStar(require("./doravotatestnet"));
60
61
  const _dydxtestnet = __importStar(require("./dydxtestnet"));
61
62
  const _dymensiontestnet1 = __importStar(require("./dymensiontestnet1"));
@@ -196,6 +197,7 @@ const chains = [
196
197
  _deardogetestnet.chain,
197
198
  _desmostestnet.chain,
198
199
  _dhealthtestnet.chain,
200
+ _divinetestnet.chain,
199
201
  _doravotatestnet.chain,
200
202
  _dydxtestnet.chain,
201
203
  _dymensiontestnet1.chain,
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../assetlist.schema.json',
5
+ chainName: 'divinetestnet',
6
+ assets: [{
7
+ description: 'Divine Ray Chain (DRC) powers a public-permissioned blockchain designed for conscious creators and community networks. DRC is the native asset used to secure the chain, enable transactions, reward participation, and support the emerging divine digital economy.',
8
+ denomUnits: [{
9
+ denom: 'uDRC',
10
+ exponent: 0,
11
+ aliases: ['microDRC']
12
+ }, {
13
+ denom: 'DRC',
14
+ exponent: 6
15
+ }],
16
+ base: 'uDRC',
17
+ name: 'Divine Testnet',
18
+ display: 'DRC',
19
+ symbol: 'DRC',
20
+ logoURIs: {
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
22
+ },
23
+ images: [{
24
+ imageSync: {
25
+ chainName: 'divine',
26
+ baseDenom: 'uDRC'
27
+ },
28
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
29
+ }],
30
+ traces: [{
31
+ type: 'test-mintage',
32
+ counterparty: {
33
+ chainName: 'divine',
34
+ baseDenom: 'uDRC'
35
+ },
36
+ provider: 'DivineRay'
37
+ }],
38
+ socials: {
39
+ website: 'https://divineray.ca/',
40
+ telegram: 'https://t.me/+WF9GmuVpuOFmOTEx'
41
+ },
42
+ typeAsset: 'sdk.coin'
43
+ }]
44
+ };
45
+ 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,111 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../chain.schema.json',
5
+ chainName: 'divinetestnet',
6
+ status: 'live',
7
+ networkType: 'testnet',
8
+ prettyName: 'Divine Testnet',
9
+ chainType: 'cosmos',
10
+ chainId: 'divine-testnet-1',
11
+ bech32Prefix: 'divine',
12
+ daemonName: 'divined',
13
+ nodeHome: '$HOME/.divine',
14
+ slip44: 118,
15
+ staking: {
16
+ stakingTokens: [{
17
+ denom: 'uDRC'
18
+ }],
19
+ lockDuration: {
20
+ time: '2592000s'
21
+ }
22
+ },
23
+ fees: {
24
+ feeTokens: [{
25
+ denom: 'uDRC',
26
+ lowGasPrice: 0.0025,
27
+ averageGasPrice: 0.025,
28
+ highGasPrice: 0.05
29
+ }]
30
+ },
31
+ codebase: {
32
+ gitRepo: 'https://github.com/Divine-Ray-Coin/divinechain.git',
33
+ genesis: {
34
+ genesisUrl: 'https://raw.githubusercontent.com/Divine-Ray-Coin/divinechain/refs/heads/main/genesis/genesis.json'
35
+ },
36
+ recommendedVersion: 'v1.0.0',
37
+ compatibleVersions: ['v1.0.0'],
38
+ consensus: {
39
+ type: 'cometbft',
40
+ version: 'v0.38.17'
41
+ },
42
+ cosmwasm: {
43
+ enabled: false
44
+ },
45
+ language: {
46
+ type: 'go',
47
+ version: '1.24.5'
48
+ },
49
+ sdk: {
50
+ type: 'cosmos',
51
+ version: 'v0.53.3'
52
+ },
53
+ ibc: {
54
+ type: 'go',
55
+ version: 'v10.2.0'
56
+ }
57
+ },
58
+ logoURIs: {
59
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
60
+ },
61
+ description: 'Divine Ray Chain (DRC) powers a public-permissioned blockchain designed for conscious creators and community networks. DRC is the native asset used to secure the chain, enable transactions, reward participation, and support the emerging divine digital economy.',
62
+ apis: {
63
+ rpc: [
64
+ {
65
+ address: 'https://rpc-testnet-node1.divineray.ca:443',
66
+ provider: 'divineRay'
67
+ },
68
+ {
69
+ address: 'https://rpc-testnet-node2.divineray.ca:443',
70
+ provider: 'divineRay'
71
+ },
72
+ {
73
+ address: 'https://rpc-testnet-node3.divineray.ca:443',
74
+ provider: 'divineRay'
75
+ }
76
+ ],
77
+ rest: [
78
+ {
79
+ address: 'https://rest-testnet-node1.divineray.ca:443',
80
+ provider: 'divineRay'
81
+ },
82
+ {
83
+ address: 'https://rest-testnet-node2.divineray.ca:443',
84
+ provider: 'divineRay'
85
+ },
86
+ {
87
+ address: 'https://rest-testnet-node3.divineray.ca:443',
88
+ provider: 'divineRay'
89
+ }
90
+ ],
91
+ grpc: [
92
+ {
93
+ address: 'grpc-testnet-node1.divineray.ca:443',
94
+ provider: 'divineRay'
95
+ },
96
+ {
97
+ address: 'grpc-testnet-node2.divineray.ca:443',
98
+ provider: 'divineRay'
99
+ },
100
+ {
101
+ address: 'grpc-testnet-node3.divineray.ca:443',
102
+ provider: 'divineRay'
103
+ }
104
+ ]
105
+ },
106
+ explorers: [],
107
+ images: [{
108
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/divine/images/udrc.png'
109
+ }]
110
+ };
111
+ 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;
@@ -4,7 +4,7 @@ const info = {
4
4
  $schema: '../../assetlist.schema.json',
5
5
  chainName: 'epixtestnet',
6
6
  assets: [{
7
- description: 'The EPIX coin, the lifeblood of the Epix network, providing the utility that powers every interaction and transaction within the ecosystem.',
7
+ description: 'Epix is designed to power a completely decentralized internet, where websites are hosted by everyone and controlled by no one, making the web unstoppable.',
8
8
  denomUnits: [{
9
9
  denom: 'aepix',
10
10
  exponent: 0