chain-registry 1.69.580 → 1.69.581

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.
@@ -0,0 +1,32 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'amitis',
4
+ assets: [{
5
+ description: 'The native token of the Amitis Network. AMTS powers the cooperative Layer 1 blockchain that returns 80% of transaction fees to users.',
6
+ type_asset: 'sdk.coin',
7
+ denom_units: [{
8
+ denom: 'uamts',
9
+ exponent: 0
10
+ }, {
11
+ denom: 'amts',
12
+ exponent: 6
13
+ }],
14
+ base: 'uamts',
15
+ name: 'Amitis',
16
+ display: 'amts',
17
+ symbol: 'AMTS',
18
+ logo_URIs: {
19
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/amitis/images/amts.svg'
20
+ },
21
+ images: [{
22
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/amitis/images/amts.svg'
23
+ }],
24
+ keywords: [
25
+ 'native',
26
+ 'staking',
27
+ 'fee-rebate',
28
+ 'dex'
29
+ ]
30
+ }]
31
+ };
32
+ export default info;
@@ -0,0 +1,63 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'amitis',
4
+ chain_type: 'cosmos',
5
+ status: 'live',
6
+ network_type: 'mainnet',
7
+ pretty_name: 'Amitis Network',
8
+ chain_id: 'amitis-network',
9
+ bech32_prefix: 'amitis',
10
+ daemon_name: 'amisd',
11
+ node_home: '$HOME/.amitis',
12
+ key_algos: ['secp256k1'],
13
+ slip44: 118,
14
+ fees: {
15
+ fee_tokens: [{
16
+ denom: 'uamts',
17
+ fixed_min_gas_price: 0,
18
+ low_gas_price: 0.01,
19
+ average_gas_price: 0.025,
20
+ high_gas_price: 0.04
21
+ }]
22
+ },
23
+ staking: {
24
+ staking_tokens: [{
25
+ denom: 'uamts'
26
+ }],
27
+ lock_duration: {
28
+ time: '1814400s'
29
+ }
30
+ },
31
+ codebase: {
32
+ git_repo: 'https://github.com/amitis-network/amitis-network',
33
+ recommended_version: 'v1.0.0',
34
+ compatible_versions: ['v1.0.0'],
35
+ consensus: {
36
+ type: 'cometbft',
37
+ version: '0.38.11'
38
+ },
39
+ genesis: {
40
+ genesis_url: 'https://rpc.amitis.network/genesis'
41
+ }
42
+ },
43
+ description: 'Amitis Network is a cooperative Layer 1 blockchain built on the Cosmos SDK. Our philosophy is friendship through shared prosperity — the network returns 80% of transaction fees directly to users at the protocol level, making it one of the most user-aligned blockchains in the Cosmos ecosystem. Amitis features 21 fixed validator slots, a native DEX, and native liquid staking built directly into the protocol.',
44
+ apis: {
45
+ rpc: [{
46
+ address: 'https://rpc.amitis.network',
47
+ provider: 'Amitis Network'
48
+ }],
49
+ rest: [{
50
+ address: 'https://rest.amitis.network',
51
+ provider: 'Amitis Network'
52
+ }]
53
+ },
54
+ explorers: [],
55
+ keywords: [
56
+ 'cosmos',
57
+ 'fee-rebate',
58
+ 'dex',
59
+ 'cooperative',
60
+ 'layer1'
61
+ ]
62
+ };
63
+ export default info;
@@ -0,0 +1,31 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain_1: {
4
+ chain_name: 'amitis',
5
+ chain_id: 'amitis-network',
6
+ client_id: '07-tendermint-0',
7
+ connection_id: 'connection-0'
8
+ },
9
+ chain_2: {
10
+ chain_name: 'osmosis',
11
+ chain_id: 'osmosis-1',
12
+ client_id: '07-tendermint-3701',
13
+ connection_id: 'connection-11055'
14
+ },
15
+ channels: [{
16
+ chain_1: {
17
+ channel_id: 'channel-1',
18
+ port_id: 'transfer'
19
+ },
20
+ chain_2: {
21
+ channel_id: 'channel-110089',
22
+ port_id: 'transfer'
23
+ },
24
+ ordering: 'unordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ preferred: true
28
+ }
29
+ }]
30
+ }];
31
+ export default info;
@@ -0,0 +1,6 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ import _ibc from './ibc';
4
+ export const assets = _assets;
5
+ export const chain = _chain;
6
+ export const ibc = _ibc;
@@ -12,6 +12,7 @@ import * as _aioz from './aioz';
12
12
  import * as _akash from './akash';
13
13
  import * as _allora from './allora';
14
14
  import * as _althea from './althea';
15
+ import * as _amitis from './amitis';
15
16
  import * as _andromeda from './andromeda';
16
17
  import * as _archway from './archway';
17
18
  import * as _arkeo from './arkeo';
@@ -247,6 +248,7 @@ const assets = [
247
248
  _akash.assets,
248
249
  _allora.assets,
249
250
  _althea.assets,
251
+ _amitis.assets,
250
252
  _andromeda.assets,
251
253
  _archway.assets,
252
254
  _arkeo.assets,
@@ -12,6 +12,7 @@ import * as _aioz from './aioz';
12
12
  import * as _akash from './akash';
13
13
  import * as _allora from './allora';
14
14
  import * as _althea from './althea';
15
+ import * as _amitis from './amitis';
15
16
  import * as _andromeda from './andromeda';
16
17
  import * as _archway from './archway';
17
18
  import * as _arkeo from './arkeo';
@@ -247,6 +248,7 @@ const chains = [
247
248
  _akash.chain,
248
249
  _allora.chain,
249
250
  _althea.chain,
251
+ _amitis.chain,
250
252
  _andromeda.chain,
251
253
  _archway.chain,
252
254
  _arkeo.chain,
@@ -162,7 +162,6 @@ const info = {
162
162
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/sara.png',
163
163
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/sara.svg'
164
164
  },
165
- coingecko_id: 'pulsara',
166
165
  keywords: [
167
166
  'dex',
168
167
  'staking',
@@ -8,6 +8,7 @@ import * as _agoric from './agoric';
8
8
  import * as _aioz from './aioz';
9
9
  import * as _akash from './akash';
10
10
  import * as _allora from './allora';
11
+ import * as _amitis from './amitis';
11
12
  import * as _andromeda from './andromeda';
12
13
  import * as _archway from './archway';
13
14
  import * as _arkeo from './arkeo';
@@ -188,6 +189,7 @@ const ibc = [
188
189
  ..._aioz.ibc,
189
190
  ..._akash.ibc,
190
191
  ..._allora.ibc,
192
+ ..._amitis.ibc,
191
193
  ..._andromeda.ibc,
192
194
  ..._archway.ibc,
193
195
  ..._arkeo.ibc,
@@ -12,6 +12,7 @@ export * as aioz from './aioz';
12
12
  export * as akash from './akash';
13
13
  export * as allora from './allora';
14
14
  export * as althea from './althea';
15
+ export * as amitis from './amitis';
15
16
  export * as andromeda from './andromeda';
16
17
  export * as archway from './archway';
17
18
  export * as arkeo from './arkeo';
@@ -185,6 +185,36 @@ const info = [
185
185
  }
186
186
  }]
187
187
  },
188
+ {
189
+ $schema: '../ibc_data.schema.json',
190
+ chain_1: {
191
+ chain_name: 'amitis',
192
+ chain_id: 'amitis-network',
193
+ client_id: '07-tendermint-0',
194
+ connection_id: 'connection-0'
195
+ },
196
+ chain_2: {
197
+ chain_name: 'osmosis',
198
+ chain_id: 'osmosis-1',
199
+ client_id: '07-tendermint-3701',
200
+ connection_id: 'connection-11055'
201
+ },
202
+ channels: [{
203
+ chain_1: {
204
+ channel_id: 'channel-1',
205
+ port_id: 'transfer'
206
+ },
207
+ chain_2: {
208
+ channel_id: 'channel-110089',
209
+ port_id: 'transfer'
210
+ },
211
+ ordering: 'unordered',
212
+ version: 'ics20-1',
213
+ tags: {
214
+ preferred: true
215
+ }
216
+ }]
217
+ },
188
218
  {
189
219
  $schema: '../ibc_data.schema.json',
190
220
  chain_1: {
@@ -56,20 +56,34 @@ const info = {
56
56
  },
57
57
  description: 'The Jay Network is a Cosmos SDK-based blockchain providing fast, secure, and scalable infrastructure for decentralized applications.',
58
58
  apis: {
59
- rpc: [{
59
+ rpc: [
60
+ {
60
61
  address: 'https://jayscan.duckdns.org/rpc',
61
62
  provider: 'Jay Network'
62
- }, {
63
+ },
64
+ {
63
65
  address: 'http://34.67.101.201:26657',
64
66
  provider: 'Jay Network (direct)'
65
- }],
66
- rest: [{
67
+ },
68
+ {
69
+ address: 'https://rpc-jay.onenov.xyz',
70
+ provider: 'OneNov'
71
+ }
72
+ ],
73
+ rest: [
74
+ {
67
75
  address: 'https://jayscan.duckdns.org/api',
68
76
  provider: 'Jay Network'
69
- }, {
77
+ },
78
+ {
70
79
  address: 'http://34.67.101.201:1317',
71
80
  provider: 'Jay Network (direct)'
72
- }],
81
+ },
82
+ {
83
+ address: 'https://api-jay.onenov.xyz',
84
+ provider: 'OneNov'
85
+ }
86
+ ],
73
87
  grpc: [{
74
88
  address: '34.67.101.201:9090',
75
89
  provider: 'Jay Network'
@@ -83,6 +97,11 @@ const info = {
83
97
  url: 'https://jayscan.duckdns.org',
84
98
  tx_page: 'https://jayscan.duckdns.org/?tx=${txHash}',
85
99
  account_page: 'https://jayscan.duckdns.org/?account=${accountAddress}'
100
+ }, {
101
+ kind: 'Jay Network Explorer',
102
+ url: 'https://jay-explorer.onenov.xyz',
103
+ tx_page: 'https://jay-explorer.onenov.xyz/transactions/${txHash}',
104
+ account_page: 'https://jay-explorer.onenov.xyz/accounts/${accountAddress}'
86
105
  }],
87
106
  images: [{
88
107
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/thejaynetwork.png'
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chain_name: 'amitis',
6
+ assets: [{
7
+ description: 'The native token of the Amitis Network. AMTS powers the cooperative Layer 1 blockchain that returns 80% of transaction fees to users.',
8
+ type_asset: 'sdk.coin',
9
+ denom_units: [{
10
+ denom: 'uamts',
11
+ exponent: 0
12
+ }, {
13
+ denom: 'amts',
14
+ exponent: 6
15
+ }],
16
+ base: 'uamts',
17
+ name: 'Amitis',
18
+ display: 'amts',
19
+ symbol: 'AMTS',
20
+ logo_URIs: {
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/amitis/images/amts.svg'
22
+ },
23
+ images: [{
24
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/amitis/images/amts.svg'
25
+ }],
26
+ keywords: [
27
+ 'native',
28
+ 'staking',
29
+ 'fee-rebate',
30
+ 'dex'
31
+ ]
32
+ }]
33
+ };
34
+ 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,65 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chain_name: 'amitis',
6
+ chain_type: 'cosmos',
7
+ status: 'live',
8
+ network_type: 'mainnet',
9
+ pretty_name: 'Amitis Network',
10
+ chain_id: 'amitis-network',
11
+ bech32_prefix: 'amitis',
12
+ daemon_name: 'amisd',
13
+ node_home: '$HOME/.amitis',
14
+ key_algos: ['secp256k1'],
15
+ slip44: 118,
16
+ fees: {
17
+ fee_tokens: [{
18
+ denom: 'uamts',
19
+ fixed_min_gas_price: 0,
20
+ low_gas_price: 0.01,
21
+ average_gas_price: 0.025,
22
+ high_gas_price: 0.04
23
+ }]
24
+ },
25
+ staking: {
26
+ staking_tokens: [{
27
+ denom: 'uamts'
28
+ }],
29
+ lock_duration: {
30
+ time: '1814400s'
31
+ }
32
+ },
33
+ codebase: {
34
+ git_repo: 'https://github.com/amitis-network/amitis-network',
35
+ recommended_version: 'v1.0.0',
36
+ compatible_versions: ['v1.0.0'],
37
+ consensus: {
38
+ type: 'cometbft',
39
+ version: '0.38.11'
40
+ },
41
+ genesis: {
42
+ genesis_url: 'https://rpc.amitis.network/genesis'
43
+ }
44
+ },
45
+ description: 'Amitis Network is a cooperative Layer 1 blockchain built on the Cosmos SDK. Our philosophy is friendship through shared prosperity — the network returns 80% of transaction fees directly to users at the protocol level, making it one of the most user-aligned blockchains in the Cosmos ecosystem. Amitis features 21 fixed validator slots, a native DEX, and native liquid staking built directly into the protocol.',
46
+ apis: {
47
+ rpc: [{
48
+ address: 'https://rpc.amitis.network',
49
+ provider: 'Amitis Network'
50
+ }],
51
+ rest: [{
52
+ address: 'https://rest.amitis.network',
53
+ provider: 'Amitis Network'
54
+ }]
55
+ },
56
+ explorers: [],
57
+ keywords: [
58
+ 'cosmos',
59
+ 'fee-rebate',
60
+ 'dex',
61
+ 'cooperative',
62
+ 'layer1'
63
+ ]
64
+ };
65
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { IBCInfo } from '@chain-registry/types';
2
+ declare const info: IBCInfo[];
3
+ export default info;
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../ibc_data.schema.json',
5
+ chain_1: {
6
+ chain_name: 'amitis',
7
+ chain_id: 'amitis-network',
8
+ client_id: '07-tendermint-0',
9
+ connection_id: 'connection-0'
10
+ },
11
+ chain_2: {
12
+ chain_name: 'osmosis',
13
+ chain_id: 'osmosis-1',
14
+ client_id: '07-tendermint-3701',
15
+ connection_id: 'connection-11055'
16
+ },
17
+ channels: [{
18
+ chain_1: {
19
+ channel_id: 'channel-1',
20
+ port_id: 'transfer'
21
+ },
22
+ chain_2: {
23
+ channel_id: 'channel-110089',
24
+ port_id: 'transfer'
25
+ },
26
+ ordering: 'unordered',
27
+ version: 'ics20-1',
28
+ tags: {
29
+ preferred: true
30
+ }
31
+ }]
32
+ }];
33
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ export declare const assets: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibc: import("@chain-registry/types").IBCInfo[];
@@ -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.ibc = exports.chain = exports.assets = void 0;
7
+ const assets_1 = __importDefault(require("./assets"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ const ibc_1 = __importDefault(require("./ibc"));
10
+ exports.assets = assets_1.default;
11
+ exports.chain = chain_1.default;
12
+ exports.ibc = ibc_1.default;
package/mainnet/assets.js CHANGED
@@ -37,6 +37,7 @@ const _aioz = __importStar(require("./aioz"));
37
37
  const _akash = __importStar(require("./akash"));
38
38
  const _allora = __importStar(require("./allora"));
39
39
  const _althea = __importStar(require("./althea"));
40
+ const _amitis = __importStar(require("./amitis"));
40
41
  const _andromeda = __importStar(require("./andromeda"));
41
42
  const _archway = __importStar(require("./archway"));
42
43
  const _arkeo = __importStar(require("./arkeo"));
@@ -272,6 +273,7 @@ const assets = [
272
273
  _akash.assets,
273
274
  _allora.assets,
274
275
  _althea.assets,
276
+ _amitis.assets,
275
277
  _andromeda.assets,
276
278
  _archway.assets,
277
279
  _arkeo.assets,
package/mainnet/chains.js CHANGED
@@ -37,6 +37,7 @@ const _aioz = __importStar(require("./aioz"));
37
37
  const _akash = __importStar(require("./akash"));
38
38
  const _allora = __importStar(require("./allora"));
39
39
  const _althea = __importStar(require("./althea"));
40
+ const _amitis = __importStar(require("./amitis"));
40
41
  const _andromeda = __importStar(require("./andromeda"));
41
42
  const _archway = __importStar(require("./archway"));
42
43
  const _arkeo = __importStar(require("./arkeo"));
@@ -272,6 +273,7 @@ const chains = [
272
273
  _akash.chain,
273
274
  _allora.chain,
274
275
  _althea.chain,
276
+ _amitis.chain,
275
277
  _andromeda.chain,
276
278
  _archway.chain,
277
279
  _arkeo.chain,
@@ -164,7 +164,6 @@ const info = {
164
164
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/sara.png',
165
165
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/sara.svg'
166
166
  },
167
- coingecko_id: 'pulsara',
168
167
  keywords: [
169
168
  'dex',
170
169
  'staking',
package/mainnet/ibc.js CHANGED
@@ -33,6 +33,7 @@ const _agoric = __importStar(require("./agoric"));
33
33
  const _aioz = __importStar(require("./aioz"));
34
34
  const _akash = __importStar(require("./akash"));
35
35
  const _allora = __importStar(require("./allora"));
36
+ const _amitis = __importStar(require("./amitis"));
36
37
  const _andromeda = __importStar(require("./andromeda"));
37
38
  const _archway = __importStar(require("./archway"));
38
39
  const _arkeo = __importStar(require("./arkeo"));
@@ -213,6 +214,7 @@ const ibc = [
213
214
  ..._aioz.ibc,
214
215
  ..._akash.ibc,
215
216
  ..._allora.ibc,
217
+ ..._amitis.ibc,
216
218
  ..._andromeda.ibc,
217
219
  ..._archway.ibc,
218
220
  ..._arkeo.ibc,
@@ -12,6 +12,7 @@ export * as aioz from './aioz';
12
12
  export * as akash from './akash';
13
13
  export * as allora from './allora';
14
14
  export * as althea from './althea';
15
+ export * as amitis from './amitis';
15
16
  export * as andromeda from './andromeda';
16
17
  export * as archway from './archway';
17
18
  export * as arkeo from './arkeo';
package/mainnet/named.js CHANGED
@@ -23,11 +23,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.celestia = exports.carbon = exports.canto = exports.buycex = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitway = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.babylon = exports.axone = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = exports.arkeo = exports.archway = exports.andromeda = exports.althea = exports.allora = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports.aaronetwork = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.penumbra = exports.namada = exports.ethereum = void 0;
27
- exports.irisnet = exports.intento = exports.int3face = exports.injective = exports.initia = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.hippoprotocol = exports.highbury = exports.heli = exports.hazinachain = exports.haqq = exports.gravitybridge = exports.govgen = exports.gonka = exports.gnodi = exports.gitopia = exports.ggezchain = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.fandomchain = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.elys = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = exports.doravota = exports.divine = exports.dhealth = exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = void 0;
28
- exports.nyx = exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nillion = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.moo = exports.mises = exports.mirage = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mantrachain = exports.manifest = exports.mande = exports.lumnetwork = exports.lumiwaveprotocol = exports.lumera = exports.lumen = exports.ltrstchain = exports.loyal = exports.lorenzo = exports.loop = exports.lombardledger = exports.logos = exports.likecoin = exports.lefeef = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.kudora = exports.kopi = exports.konstellation = exports.kimanetwork = exports.kiichain = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = void 0;
29
- exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.sidechain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.qubetics = exports.quasar = exports.qie = exports.qfs = exports.pylons = exports.pundix = exports.provenance = exports.point = exports.pocket = exports.planq = exports.persistence = exports.paxi = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.optio = exports.opct = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = void 0;
30
- exports.zigchain = exports.zetachain = exports.zenrock = exports.xyra = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.wardenprotocol = exports.vector = exports.uptick = exports.ununifi = exports.union = exports.unification = exports.unicorn = exports.umee = exports.turkchain = exports.titan = exports.thorchain = exports.thejaynetwork = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.symphony = exports.sunrise = exports.stride = exports.stratos = exports.stoc = exports.starname = void 0;
26
+ exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.celestia = exports.carbon = exports.canto = exports.buycex = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitway = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.babylon = exports.axone = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = exports.arkeo = exports.archway = exports.andromeda = exports.amitis = exports.althea = exports.allora = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports.aaronetwork = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.penumbra = exports.namada = exports.ethereum = void 0;
27
+ exports.intento = exports.int3face = exports.injective = exports.initia = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.hippoprotocol = exports.highbury = exports.heli = exports.hazinachain = exports.haqq = exports.gravitybridge = exports.govgen = exports.gonka = exports.gnodi = exports.gitopia = exports.ggezchain = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.fandomchain = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.elys = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = exports.doravota = exports.divine = exports.dhealth = exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = void 0;
28
+ exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nillion = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.moo = exports.mises = exports.mirage = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mantrachain = exports.manifest = exports.mande = exports.lumnetwork = exports.lumiwaveprotocol = exports.lumera = exports.lumen = exports.ltrstchain = exports.loyal = exports.lorenzo = exports.loop = exports.lombardledger = exports.logos = exports.likecoin = exports.lefeef = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.kudora = exports.kopi = exports.konstellation = exports.kimanetwork = exports.kiichain = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = void 0;
29
+ exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.sidechain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.qubetics = exports.quasar = exports.qie = exports.qfs = exports.pylons = exports.pundix = exports.provenance = exports.point = exports.pocket = exports.planq = exports.persistence = exports.paxi = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.optio = exports.opct = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = void 0;
30
+ exports.zigchain = exports.zetachain = exports.zenrock = exports.xyra = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.wardenprotocol = exports.vector = exports.uptick = exports.ununifi = exports.union = exports.unification = exports.unicorn = exports.umee = exports.turkchain = exports.titan = exports.thorchain = exports.thejaynetwork = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.symphony = exports.sunrise = exports.stride = exports.stratos = exports.stoc = exports.starname = exports.stargaze = void 0;
31
31
  exports.ethereum = __importStar(require("./ethereum"));
32
32
  exports.namada = __importStar(require("./namada"));
33
33
  exports.penumbra = __importStar(require("./penumbra"));
@@ -42,6 +42,7 @@ exports.aioz = __importStar(require("./aioz"));
42
42
  exports.akash = __importStar(require("./akash"));
43
43
  exports.allora = __importStar(require("./allora"));
44
44
  exports.althea = __importStar(require("./althea"));
45
+ exports.amitis = __importStar(require("./amitis"));
45
46
  exports.andromeda = __importStar(require("./andromeda"));
46
47
  exports.archway = __importStar(require("./archway"));
47
48
  exports.arkeo = __importStar(require("./arkeo"));
@@ -187,6 +187,36 @@ const info = [
187
187
  }
188
188
  }]
189
189
  },
190
+ {
191
+ $schema: '../ibc_data.schema.json',
192
+ chain_1: {
193
+ chain_name: 'amitis',
194
+ chain_id: 'amitis-network',
195
+ client_id: '07-tendermint-0',
196
+ connection_id: 'connection-0'
197
+ },
198
+ chain_2: {
199
+ chain_name: 'osmosis',
200
+ chain_id: 'osmosis-1',
201
+ client_id: '07-tendermint-3701',
202
+ connection_id: 'connection-11055'
203
+ },
204
+ channels: [{
205
+ chain_1: {
206
+ channel_id: 'channel-1',
207
+ port_id: 'transfer'
208
+ },
209
+ chain_2: {
210
+ channel_id: 'channel-110089',
211
+ port_id: 'transfer'
212
+ },
213
+ ordering: 'unordered',
214
+ version: 'ics20-1',
215
+ tags: {
216
+ preferred: true
217
+ }
218
+ }]
219
+ },
190
220
  {
191
221
  $schema: '../ibc_data.schema.json',
192
222
  chain_1: {
@@ -58,20 +58,34 @@ const info = {
58
58
  },
59
59
  description: 'The Jay Network is a Cosmos SDK-based blockchain providing fast, secure, and scalable infrastructure for decentralized applications.',
60
60
  apis: {
61
- rpc: [{
61
+ rpc: [
62
+ {
62
63
  address: 'https://jayscan.duckdns.org/rpc',
63
64
  provider: 'Jay Network'
64
- }, {
65
+ },
66
+ {
65
67
  address: 'http://34.67.101.201:26657',
66
68
  provider: 'Jay Network (direct)'
67
- }],
68
- rest: [{
69
+ },
70
+ {
71
+ address: 'https://rpc-jay.onenov.xyz',
72
+ provider: 'OneNov'
73
+ }
74
+ ],
75
+ rest: [
76
+ {
69
77
  address: 'https://jayscan.duckdns.org/api',
70
78
  provider: 'Jay Network'
71
- }, {
79
+ },
80
+ {
72
81
  address: 'http://34.67.101.201:1317',
73
82
  provider: 'Jay Network (direct)'
74
- }],
83
+ },
84
+ {
85
+ address: 'https://api-jay.onenov.xyz',
86
+ provider: 'OneNov'
87
+ }
88
+ ],
75
89
  grpc: [{
76
90
  address: '34.67.101.201:9090',
77
91
  provider: 'Jay Network'
@@ -85,6 +99,11 @@ const info = {
85
99
  url: 'https://jayscan.duckdns.org',
86
100
  tx_page: 'https://jayscan.duckdns.org/?tx=${txHash}',
87
101
  account_page: 'https://jayscan.duckdns.org/?account=${accountAddress}'
102
+ }, {
103
+ kind: 'Jay Network Explorer',
104
+ url: 'https://jay-explorer.onenov.xyz',
105
+ tx_page: 'https://jay-explorer.onenov.xyz/transactions/${txHash}',
106
+ account_page: 'https://jay-explorer.onenov.xyz/accounts/${accountAddress}'
88
107
  }],
89
108
  images: [{
90
109
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/thejaynetwork.png'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "1.69.580",
3
+ "version": "1.69.581",
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": "^0.50.358"
32
+ "@chain-registry/types": "^0.50.359"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "6cb7f927cf47fd68ddf5dd652f2de60595b0b9fe"
42
+ "gitHead": "3f5968d87573c4a0930ab89aeaced0ba9dcb922f"
43
43
  }