chain-registry 2.0.150 → 2.0.151

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.
@@ -80,6 +80,7 @@ import * as _gateway from './gateway';
80
80
  import * as _genesisl1 from './genesisl1';
81
81
  import * as _ggezchain from './ggezchain';
82
82
  import * as _gitopia from './gitopia';
83
+ import * as _gnodi from './gnodi';
83
84
  import * as _gonka from './gonka';
84
85
  import * as _govgen from './govgen';
85
86
  import * as _gravitybridge from './gravitybridge';
@@ -308,6 +309,7 @@ const assetList = [
308
309
  _genesisl1.assetList,
309
310
  _ggezchain.assetList,
310
311
  _gitopia.assetList,
312
+ _gnodi.assetList,
311
313
  _gonka.assetList,
312
314
  _govgen.assetList,
313
315
  _gravitybridge.assetList,
@@ -80,6 +80,7 @@ import * as _gateway from './gateway';
80
80
  import * as _genesisl1 from './genesisl1';
81
81
  import * as _ggezchain from './ggezchain';
82
82
  import * as _gitopia from './gitopia';
83
+ import * as _gnodi from './gnodi';
83
84
  import * as _gonka from './gonka';
84
85
  import * as _govgen from './govgen';
85
86
  import * as _gravitybridge from './gravitybridge';
@@ -308,6 +309,7 @@ const chains = [
308
309
  _genesisl1.chain,
309
310
  _ggezchain.chain,
310
311
  _gitopia.chain,
312
+ _gnodi.chain,
311
313
  _gonka.chain,
312
314
  _govgen.chain,
313
315
  _gravitybridge.chain,
@@ -0,0 +1,23 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'gnodi',
4
+ assets: [{
5
+ description: 'The native token of gnodi',
6
+ denomUnits: [{
7
+ denom: 'uGNOD',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'GNOD',
11
+ exponent: 6
12
+ }],
13
+ typeAsset: 'sdk.coin',
14
+ base: 'uGNOD',
15
+ name: 'GNOD',
16
+ display: 'GNOD',
17
+ symbol: 'GNOD',
18
+ images: [{
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gnodi/images/gnod.png'
20
+ }]
21
+ }]
22
+ };
23
+ export default info;
@@ -0,0 +1,90 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'gnodi',
4
+ status: 'live',
5
+ networkType: 'mainnet',
6
+ website: 'https://gnodiblockchain.org/',
7
+ prettyName: 'Gnodi',
8
+ chainType: 'cosmos',
9
+ chainId: 'gnodi',
10
+ bech32Prefix: 'gnodi',
11
+ daemonName: 'gnodid',
12
+ nodeHome: '$HOME/.gnodi',
13
+ keyAlgos: ['secp256k1'],
14
+ slip44: 118,
15
+ fees: {
16
+ feeTokens: [{
17
+ denom: 'uGNOD',
18
+ fixedMinGasPrice: 1,
19
+ lowGasPrice: 1,
20
+ averageGasPrice: 1.5,
21
+ highGasPrice: 2
22
+ }]
23
+ },
24
+ staking: {
25
+ stakingTokens: [{
26
+ denom: 'uGNOD'
27
+ }],
28
+ lockDuration: {
29
+ time: '1814400s'
30
+ }
31
+ },
32
+ codebase: {
33
+ gitRepo: 'https://github.com/gnodi-network/gnodi',
34
+ genesis: {
35
+ name: 'v1',
36
+ genesisUrl: 'https://raw.githubusercontent.com/gnodi-network/genesis-mainnet/refs/heads/main/genesis.json'
37
+ },
38
+ recommendedVersion: '1.0.1',
39
+ compatibleVersions: ['1.0.1'],
40
+ consensus: {
41
+ type: 'cometbft',
42
+ version: '0.38.17',
43
+ repo: 'https://github.com/cometbft/cometbft',
44
+ tag: 'v0.38.17'
45
+ },
46
+ sdk: {
47
+ type: 'cosmos',
48
+ version: '0.53.3',
49
+ repo: 'https://github.com/cosmos/cosmos-sdk',
50
+ tag: 'v0.53.3'
51
+ },
52
+ ibc: {
53
+ type: 'go',
54
+ version: '10.2.0',
55
+ repo: 'https://github.com/cosmos/ibc-go',
56
+ tag: 'v10.2.0',
57
+ icsEnabled: ['ics20-1']
58
+ },
59
+ language: {
60
+ type: 'go',
61
+ version: '1.24.0'
62
+ },
63
+ tag: 'v1.0.1'
64
+ },
65
+ images: [{
66
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gnodi/images/gnod.png'
67
+ }],
68
+ description: 'The Gnodi Blockchain is a community-governed, decentralized infrastructure that empowers individuals to own their digital identity and data. Guided by principles of autonomy, transparency, and equity, it bridges today’s internet with a fair, participatory digital future.',
69
+ apis: {
70
+ rpc: [{
71
+ address: 'https://rpc.gnodi.zone:443',
72
+ provider: 'Gnodi Team'
73
+ }],
74
+ rest: [{
75
+ address: 'https://api.gnodi.zone:443',
76
+ provider: 'Gnodi Team'
77
+ }],
78
+ grpc: [{
79
+ address: 'grpc.gnodi.zone:443',
80
+ provider: 'Gnodi Team'
81
+ }]
82
+ },
83
+ explorers: [{
84
+ kind: 'Big Dipper',
85
+ url: 'https://explore.gnodi.org/gnodi',
86
+ txPage: 'https://explore.gnodi.org/gnodi/transactions',
87
+ accountPage: 'https://explore.gnodi.org/gnodi/accounts/${accountAddress}'
88
+ }]
89
+ };
90
+ export default info;
@@ -0,0 +1,32 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'gnodi',
5
+ chainId: 'gnodi',
6
+ clientId: '07-tendermint-1',
7
+ connectionId: 'connection-5'
8
+ },
9
+ chain2: {
10
+ chainName: 'osmosis',
11
+ chainId: 'osmosis-1',
12
+ clientId: '07-tendermint-3665',
13
+ connectionId: 'connection-11024'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-0',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-108866',
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;
@@ -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;
@@ -64,6 +64,7 @@ import * as _galaxy from './galaxy';
64
64
  import * as _gateway from './gateway';
65
65
  import * as _genesisl1 from './genesisl1';
66
66
  import * as _gitopia from './gitopia';
67
+ import * as _gnodi from './gnodi';
67
68
  import * as _gravitybridge from './gravitybridge';
68
69
  import * as _haqq from './haqq';
69
70
  import * as _hippoprotocol from './hippoprotocol';
@@ -241,6 +242,7 @@ const ibcData = [
241
242
  ..._gateway.ibcData,
242
243
  ..._genesisl1.ibcData,
243
244
  ..._gitopia.ibcData,
245
+ ..._gnodi.ibcData,
244
246
  ..._gravitybridge.ibcData,
245
247
  ..._haqq.ibcData,
246
248
  ..._hippoprotocol.ibcData,
@@ -63,6 +63,10 @@ const info = {
63
63
  address: 'https://lumen-api.linknode.org',
64
64
  provider: 'AstroStake'
65
65
  },
66
+ {
67
+ address: 'https://api-lumen.onenov.xyz',
68
+ provider: 'OneNov'
69
+ },
66
70
  {
67
71
  address: 'https://api.lumen.chaintools.tech',
68
72
  provider: 'ChainTools'
@@ -2043,6 +2043,37 @@ const info = [
2043
2043
  }
2044
2044
  }]
2045
2045
  },
2046
+ {
2047
+ $schema: '../ibc_data.schema.json',
2048
+ chain1: {
2049
+ chainName: 'gnodi',
2050
+ chainId: 'gnodi',
2051
+ clientId: '07-tendermint-1',
2052
+ connectionId: 'connection-5'
2053
+ },
2054
+ chain2: {
2055
+ chainName: 'osmosis',
2056
+ chainId: 'osmosis-1',
2057
+ clientId: '07-tendermint-3665',
2058
+ connectionId: 'connection-11024'
2059
+ },
2060
+ channels: [{
2061
+ chain1: {
2062
+ channelId: 'channel-0',
2063
+ portId: 'transfer'
2064
+ },
2065
+ chain2: {
2066
+ channelId: 'channel-108866',
2067
+ portId: 'transfer'
2068
+ },
2069
+ ordering: 'unordered',
2070
+ version: 'ics20-1',
2071
+ tags: {
2072
+ preferred: true,
2073
+ status: 'ACTIVE'
2074
+ }
2075
+ }]
2076
+ },
2046
2077
  {
2047
2078
  $schema: '../ibc_data.schema.json',
2048
2079
  chain1: {
@@ -105,6 +105,7 @@ const _gateway = __importStar(require("./gateway"));
105
105
  const _genesisl1 = __importStar(require("./genesisl1"));
106
106
  const _ggezchain = __importStar(require("./ggezchain"));
107
107
  const _gitopia = __importStar(require("./gitopia"));
108
+ const _gnodi = __importStar(require("./gnodi"));
108
109
  const _gonka = __importStar(require("./gonka"));
109
110
  const _govgen = __importStar(require("./govgen"));
110
111
  const _gravitybridge = __importStar(require("./gravitybridge"));
@@ -333,6 +334,7 @@ const assetList = [
333
334
  _genesisl1.assetList,
334
335
  _ggezchain.assetList,
335
336
  _gitopia.assetList,
337
+ _gnodi.assetList,
336
338
  _gonka.assetList,
337
339
  _govgen.assetList,
338
340
  _gravitybridge.assetList,
package/mainnet/chains.js CHANGED
@@ -105,6 +105,7 @@ const _gateway = __importStar(require("./gateway"));
105
105
  const _genesisl1 = __importStar(require("./genesisl1"));
106
106
  const _ggezchain = __importStar(require("./ggezchain"));
107
107
  const _gitopia = __importStar(require("./gitopia"));
108
+ const _gnodi = __importStar(require("./gnodi"));
108
109
  const _gonka = __importStar(require("./gonka"));
109
110
  const _govgen = __importStar(require("./govgen"));
110
111
  const _gravitybridge = __importStar(require("./gravitybridge"));
@@ -333,6 +334,7 @@ const chains = [
333
334
  _genesisl1.chain,
334
335
  _ggezchain.chain,
335
336
  _gitopia.chain,
337
+ _gnodi.chain,
336
338
  _gonka.chain,
337
339
  _govgen.chain,
338
340
  _gravitybridge.chain,
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chainName: 'gnodi',
6
+ assets: [{
7
+ description: 'The native token of gnodi',
8
+ denomUnits: [{
9
+ denom: 'uGNOD',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'GNOD',
13
+ exponent: 6
14
+ }],
15
+ typeAsset: 'sdk.coin',
16
+ base: 'uGNOD',
17
+ name: 'GNOD',
18
+ display: 'GNOD',
19
+ symbol: 'GNOD',
20
+ images: [{
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gnodi/images/gnod.png'
22
+ }]
23
+ }]
24
+ };
25
+ 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,92 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chainName: 'gnodi',
6
+ status: 'live',
7
+ networkType: 'mainnet',
8
+ website: 'https://gnodiblockchain.org/',
9
+ prettyName: 'Gnodi',
10
+ chainType: 'cosmos',
11
+ chainId: 'gnodi',
12
+ bech32Prefix: 'gnodi',
13
+ daemonName: 'gnodid',
14
+ nodeHome: '$HOME/.gnodi',
15
+ keyAlgos: ['secp256k1'],
16
+ slip44: 118,
17
+ fees: {
18
+ feeTokens: [{
19
+ denom: 'uGNOD',
20
+ fixedMinGasPrice: 1,
21
+ lowGasPrice: 1,
22
+ averageGasPrice: 1.5,
23
+ highGasPrice: 2
24
+ }]
25
+ },
26
+ staking: {
27
+ stakingTokens: [{
28
+ denom: 'uGNOD'
29
+ }],
30
+ lockDuration: {
31
+ time: '1814400s'
32
+ }
33
+ },
34
+ codebase: {
35
+ gitRepo: 'https://github.com/gnodi-network/gnodi',
36
+ genesis: {
37
+ name: 'v1',
38
+ genesisUrl: 'https://raw.githubusercontent.com/gnodi-network/genesis-mainnet/refs/heads/main/genesis.json'
39
+ },
40
+ recommendedVersion: '1.0.1',
41
+ compatibleVersions: ['1.0.1'],
42
+ consensus: {
43
+ type: 'cometbft',
44
+ version: '0.38.17',
45
+ repo: 'https://github.com/cometbft/cometbft',
46
+ tag: 'v0.38.17'
47
+ },
48
+ sdk: {
49
+ type: 'cosmos',
50
+ version: '0.53.3',
51
+ repo: 'https://github.com/cosmos/cosmos-sdk',
52
+ tag: 'v0.53.3'
53
+ },
54
+ ibc: {
55
+ type: 'go',
56
+ version: '10.2.0',
57
+ repo: 'https://github.com/cosmos/ibc-go',
58
+ tag: 'v10.2.0',
59
+ icsEnabled: ['ics20-1']
60
+ },
61
+ language: {
62
+ type: 'go',
63
+ version: '1.24.0'
64
+ },
65
+ tag: 'v1.0.1'
66
+ },
67
+ images: [{
68
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gnodi/images/gnod.png'
69
+ }],
70
+ description: 'The Gnodi Blockchain is a community-governed, decentralized infrastructure that empowers individuals to own their digital identity and data. Guided by principles of autonomy, transparency, and equity, it bridges today’s internet with a fair, participatory digital future.',
71
+ apis: {
72
+ rpc: [{
73
+ address: 'https://rpc.gnodi.zone:443',
74
+ provider: 'Gnodi Team'
75
+ }],
76
+ rest: [{
77
+ address: 'https://api.gnodi.zone:443',
78
+ provider: 'Gnodi Team'
79
+ }],
80
+ grpc: [{
81
+ address: 'grpc.gnodi.zone:443',
82
+ provider: 'Gnodi Team'
83
+ }]
84
+ },
85
+ explorers: [{
86
+ kind: 'Big Dipper',
87
+ url: 'https://explore.gnodi.org/gnodi',
88
+ txPage: 'https://explore.gnodi.org/gnodi/transactions',
89
+ accountPage: 'https://explore.gnodi.org/gnodi/accounts/${accountAddress}'
90
+ }]
91
+ };
92
+ 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,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../ibc_data.schema.json',
5
+ chain1: {
6
+ chainName: 'gnodi',
7
+ chainId: 'gnodi',
8
+ clientId: '07-tendermint-1',
9
+ connectionId: 'connection-5'
10
+ },
11
+ chain2: {
12
+ chainName: 'osmosis',
13
+ chainId: 'osmosis-1',
14
+ clientId: '07-tendermint-3665',
15
+ connectionId: 'connection-11024'
16
+ },
17
+ channels: [{
18
+ chain1: {
19
+ channelId: 'channel-0',
20
+ portId: 'transfer'
21
+ },
22
+ chain2: {
23
+ channelId: 'channel-108866',
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;
@@ -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;
@@ -89,6 +89,7 @@ const _galaxy = __importStar(require("./galaxy"));
89
89
  const _gateway = __importStar(require("./gateway"));
90
90
  const _genesisl1 = __importStar(require("./genesisl1"));
91
91
  const _gitopia = __importStar(require("./gitopia"));
92
+ const _gnodi = __importStar(require("./gnodi"));
92
93
  const _gravitybridge = __importStar(require("./gravitybridge"));
93
94
  const _haqq = __importStar(require("./haqq"));
94
95
  const _hippoprotocol = __importStar(require("./hippoprotocol"));
@@ -266,6 +267,7 @@ const ibcData = [
266
267
  ..._gateway.ibcData,
267
268
  ..._genesisl1.ibcData,
268
269
  ..._gitopia.ibcData,
270
+ ..._gnodi.ibcData,
269
271
  ..._gravitybridge.ibcData,
270
272
  ..._haqq.ibcData,
271
273
  ..._hippoprotocol.ibcData,
@@ -65,6 +65,10 @@ const info = {
65
65
  address: 'https://lumen-api.linknode.org',
66
66
  provider: 'AstroStake'
67
67
  },
68
+ {
69
+ address: 'https://api-lumen.onenov.xyz',
70
+ provider: 'OneNov'
71
+ },
68
72
  {
69
73
  address: 'https://api.lumen.chaintools.tech',
70
74
  provider: 'ChainTools'
@@ -2045,6 +2045,37 @@ const info = [
2045
2045
  }
2046
2046
  }]
2047
2047
  },
2048
+ {
2049
+ $schema: '../ibc_data.schema.json',
2050
+ chain1: {
2051
+ chainName: 'gnodi',
2052
+ chainId: 'gnodi',
2053
+ clientId: '07-tendermint-1',
2054
+ connectionId: 'connection-5'
2055
+ },
2056
+ chain2: {
2057
+ chainName: 'osmosis',
2058
+ chainId: 'osmosis-1',
2059
+ clientId: '07-tendermint-3665',
2060
+ connectionId: 'connection-11024'
2061
+ },
2062
+ channels: [{
2063
+ chain1: {
2064
+ channelId: 'channel-0',
2065
+ portId: 'transfer'
2066
+ },
2067
+ chain2: {
2068
+ channelId: 'channel-108866',
2069
+ portId: 'transfer'
2070
+ },
2071
+ ordering: 'unordered',
2072
+ version: 'ics20-1',
2073
+ tags: {
2074
+ preferred: true,
2075
+ status: 'ACTIVE'
2076
+ }
2077
+ }]
2078
+ },
2048
2079
  {
2049
2080
  $schema: '../ibc_data.schema.json',
2050
2081
  chain1: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.150",
3
+ "version": "2.0.151",
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.150"
32
+ "@chain-registry/types": "^2.0.151"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "20bcd8e7ffc125182f58c3d1f128a6d795795f80"
42
+ "gitHead": "ff89633a6aebdffce131c71592ce36e61bbc6533"
43
43
  }