chain-registry 1.61.6 → 1.61.8

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 (75) hide show
  1. package/devnet/assets.js +2 -0
  2. package/devnet/chains.js +2 -0
  3. package/devnet/named.d.ts +1 -0
  4. package/devnet/named.js +2 -1
  5. package/devnet/neuradevnet/assets.d.ts +3 -0
  6. package/devnet/neuradevnet/assets.js +36 -0
  7. package/devnet/neuradevnet/chain.d.ts +3 -0
  8. package/devnet/neuradevnet/chain.js +36 -0
  9. package/devnet/neuradevnet/index.d.ts +2 -0
  10. package/devnet/neuradevnet/index.js +10 -0
  11. package/esm/devnet/assets.js +2 -0
  12. package/esm/devnet/chains.js +2 -0
  13. package/esm/devnet/named.js +1 -0
  14. package/esm/devnet/neuradevnet/assets.js +34 -0
  15. package/esm/devnet/neuradevnet/chain.js +34 -0
  16. package/esm/devnet/neuradevnet/index.js +4 -0
  17. package/esm/mainnet/assets.js +2 -0
  18. package/esm/mainnet/canto/chain.js +0 -10
  19. package/esm/mainnet/chain4energy/assets.js +2 -1
  20. package/esm/mainnet/chains.js +2 -0
  21. package/esm/mainnet/chihuahua/assets.js +23 -0
  22. package/esm/mainnet/cosmoshub/chain.js +4 -0
  23. package/esm/mainnet/injective/assets.js +85 -0
  24. package/esm/mainnet/named.js +1 -0
  25. package/esm/mainnet/neura/assets.js +39 -0
  26. package/esm/mainnet/neura/chain.js +31 -0
  27. package/esm/mainnet/neura/index.js +4 -0
  28. package/esm/mainnet/noble/ibc.js +29 -0
  29. package/esm/mainnet/osmosis/assets.js +36 -0
  30. package/esm/mainnet/regen/ibc.js +29 -0
  31. package/esm/mainnet/seda/chain.js +8 -0
  32. package/esm/mainnet/shido/chain.js +14 -0
  33. package/esm/noncosmos/ethereum/assets.js +25 -0
  34. package/esm/testnet/assets.js +2 -0
  35. package/esm/testnet/axelartestnet/ibc.js +6 -6
  36. package/esm/testnet/chains.js +2 -0
  37. package/esm/testnet/mantrachaintestnet/ibc.js +6 -6
  38. package/esm/testnet/named.js +1 -0
  39. package/esm/testnet/neuratestnet/assets.js +34 -0
  40. package/esm/testnet/neuratestnet/chain.js +49 -0
  41. package/esm/testnet/neuratestnet/index.js +4 -0
  42. package/mainnet/assets.js +2 -0
  43. package/mainnet/canto/chain.js +0 -10
  44. package/mainnet/chain4energy/assets.js +2 -1
  45. package/mainnet/chains.js +2 -0
  46. package/mainnet/chihuahua/assets.js +23 -0
  47. package/mainnet/cosmoshub/chain.js +4 -0
  48. package/mainnet/injective/assets.js +85 -0
  49. package/mainnet/named.d.ts +1 -0
  50. package/mainnet/named.js +4 -3
  51. package/mainnet/neura/assets.d.ts +3 -0
  52. package/mainnet/neura/assets.js +41 -0
  53. package/mainnet/neura/chain.d.ts +3 -0
  54. package/mainnet/neura/chain.js +33 -0
  55. package/mainnet/neura/index.d.ts +2 -0
  56. package/mainnet/neura/index.js +10 -0
  57. package/mainnet/noble/ibc.js +29 -0
  58. package/mainnet/osmosis/assets.js +36 -0
  59. package/mainnet/regen/ibc.js +29 -0
  60. package/mainnet/seda/chain.js +8 -0
  61. package/mainnet/shido/chain.js +14 -0
  62. package/noncosmos/ethereum/assets.js +25 -0
  63. package/package.json +4 -4
  64. package/testnet/assets.js +2 -0
  65. package/testnet/axelartestnet/ibc.js +6 -6
  66. package/testnet/chains.js +2 -0
  67. package/testnet/mantrachaintestnet/ibc.js +6 -6
  68. package/testnet/named.d.ts +1 -0
  69. package/testnet/named.js +2 -1
  70. package/testnet/neuratestnet/assets.d.ts +3 -0
  71. package/testnet/neuratestnet/assets.js +36 -0
  72. package/testnet/neuratestnet/chain.d.ts +3 -0
  73. package/testnet/neuratestnet/chain.js +51 -0
  74. package/testnet/neuratestnet/index.d.ts +2 -0
  75. package/testnet/neuratestnet/index.js +10 -0
package/devnet/assets.js CHANGED
@@ -27,6 +27,7 @@ const _bitcannadevnet2 = __importStar(require("./bitcannadevnet2"));
27
27
  const _celestiatestnet2 = __importStar(require("./celestiatestnet2"));
28
28
  const _impacthubdevnet = __importStar(require("./impacthubdevnet"));
29
29
  const _kyvedevnet = __importStar(require("./kyvedevnet"));
30
+ const _neuradevnet = __importStar(require("./neuradevnet"));
30
31
  const _nibirudevnet = __importStar(require("./nibirudevnet"));
31
32
  const _nibirudevnet2 = __importStar(require("./nibirudevnet2"));
32
33
  const _seidevnet3 = __importStar(require("./seidevnet3"));
@@ -35,6 +36,7 @@ const assets = [
35
36
  _celestiatestnet2.assets,
36
37
  _impacthubdevnet.assets,
37
38
  _kyvedevnet.assets,
39
+ _neuradevnet.assets,
38
40
  _nibirudevnet.assets,
39
41
  _nibirudevnet2.assets,
40
42
  _seidevnet3.assets
package/devnet/chains.js CHANGED
@@ -27,6 +27,7 @@ const _bitcannadevnet2 = __importStar(require("./bitcannadevnet2"));
27
27
  const _celestiatestnet2 = __importStar(require("./celestiatestnet2"));
28
28
  const _impacthubdevnet = __importStar(require("./impacthubdevnet"));
29
29
  const _kyvedevnet = __importStar(require("./kyvedevnet"));
30
+ const _neuradevnet = __importStar(require("./neuradevnet"));
30
31
  const _nibirudevnet = __importStar(require("./nibirudevnet"));
31
32
  const _nibirudevnet2 = __importStar(require("./nibirudevnet2"));
32
33
  const _seidevnet3 = __importStar(require("./seidevnet3"));
@@ -35,6 +36,7 @@ const chains = [
35
36
  _celestiatestnet2.chain,
36
37
  _impacthubdevnet.chain,
37
38
  _kyvedevnet.chain,
39
+ _neuradevnet.chain,
38
40
  _nibirudevnet.chain,
39
41
  _nibirudevnet2.chain,
40
42
  _seidevnet3.chain
package/devnet/named.d.ts CHANGED
@@ -2,6 +2,7 @@ export * as bitcannadevnet2 from './bitcannadevnet2';
2
2
  export * as celestiatestnet2 from './celestiatestnet2';
3
3
  export * as impacthubdevnet from './impacthubdevnet';
4
4
  export * as kyvedevnet from './kyvedevnet';
5
+ export * as neuradevnet from './neuradevnet';
5
6
  export * as nibirudevnet from './nibirudevnet';
6
7
  export * as nibirudevnet2 from './nibirudevnet2';
7
8
  export * as seidevnet3 from './seidevnet3';
package/devnet/named.js CHANGED
@@ -23,11 +23,12 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.seidevnet3 = exports.nibirudevnet2 = exports.nibirudevnet = exports.kyvedevnet = exports.impacthubdevnet = exports.celestiatestnet2 = exports.bitcannadevnet2 = void 0;
26
+ exports.seidevnet3 = exports.nibirudevnet2 = exports.nibirudevnet = exports.neuradevnet = exports.kyvedevnet = exports.impacthubdevnet = exports.celestiatestnet2 = exports.bitcannadevnet2 = void 0;
27
27
  exports.bitcannadevnet2 = __importStar(require("./bitcannadevnet2"));
28
28
  exports.celestiatestnet2 = __importStar(require("./celestiatestnet2"));
29
29
  exports.impacthubdevnet = __importStar(require("./impacthubdevnet"));
30
30
  exports.kyvedevnet = __importStar(require("./kyvedevnet"));
31
+ exports.neuradevnet = __importStar(require("./neuradevnet"));
31
32
  exports.nibirudevnet = __importStar(require("./nibirudevnet"));
32
33
  exports.nibirudevnet2 = __importStar(require("./nibirudevnet2"));
33
34
  exports.seidevnet3 = __importStar(require("./seidevnet3"));
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../assetlist.schema.json',
5
+ chain_name: 'neuradevnet',
6
+ assets: [{
7
+ description: 'ANKR: The native EVM, governance, and staking token for Neura, enabling secure transactions, and seamless GPU resourcing within the ecosystem.',
8
+ denom_units: [{
9
+ denom: 'atankr',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'ankr',
13
+ exponent: 18
14
+ }],
15
+ base: 'atankr',
16
+ name: 'Neura Devnet',
17
+ display: 'ankr',
18
+ symbol: 'ANKR',
19
+ traces: [{
20
+ type: 'test-mintage',
21
+ counterparty: {
22
+ chain_name: 'neura',
23
+ base_denom: 'atankr'
24
+ },
25
+ provider: 'Neura'
26
+ }],
27
+ images: [{
28
+ image_sync: {
29
+ chain_name: 'neura',
30
+ base_denom: 'atankr'
31
+ },
32
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ankr.svg'
33
+ }]
34
+ }]
35
+ };
36
+ 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,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../../chain.schema.json',
5
+ chain_name: 'neuradevnet',
6
+ chain_id: 'neura_268-1',
7
+ bech32_prefix: 'neura',
8
+ pretty_name: 'Neura Devnet',
9
+ website: 'https://www.neuraprotocol.io/',
10
+ description: 'Neura is an AI-centric, EVM-compatible Layer 1 blockchain built on the Cosmos SDK. We democratize GPU access and revolutionize AI project funding with IMO’s to advance AI development.',
11
+ status: 'live',
12
+ network_type: 'devnet',
13
+ node_home: '$HOME/.neurad',
14
+ daemon_name: 'neurad',
15
+ key_algos: ['ethsecp256k1'],
16
+ extra_codecs: ['ethermint'],
17
+ slip44: 1,
18
+ fees: {
19
+ fee_tokens: [{
20
+ denom: 'atankr'
21
+ }]
22
+ },
23
+ staking: {
24
+ staking_tokens: [{
25
+ denom: 'atankr'
26
+ }]
27
+ },
28
+ codebase: {},
29
+ images: [{
30
+ image_sync: {
31
+ chain_name: 'neura'
32
+ },
33
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neura/images/neura.png'
34
+ }]
35
+ };
36
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assets: 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.assets = void 0;
7
+ const assets_1 = __importDefault(require("./assets"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assets = assets_1.default;
10
+ exports.chain = chain_1.default;
@@ -2,6 +2,7 @@ import * as _bitcannadevnet2 from './bitcannadevnet2';
2
2
  import * as _celestiatestnet2 from './celestiatestnet2';
3
3
  import * as _impacthubdevnet from './impacthubdevnet';
4
4
  import * as _kyvedevnet from './kyvedevnet';
5
+ import * as _neuradevnet from './neuradevnet';
5
6
  import * as _nibirudevnet from './nibirudevnet';
6
7
  import * as _nibirudevnet2 from './nibirudevnet2';
7
8
  import * as _seidevnet3 from './seidevnet3';
@@ -10,6 +11,7 @@ const assets = [
10
11
  _celestiatestnet2.assets,
11
12
  _impacthubdevnet.assets,
12
13
  _kyvedevnet.assets,
14
+ _neuradevnet.assets,
13
15
  _nibirudevnet.assets,
14
16
  _nibirudevnet2.assets,
15
17
  _seidevnet3.assets
@@ -2,6 +2,7 @@ import * as _bitcannadevnet2 from './bitcannadevnet2';
2
2
  import * as _celestiatestnet2 from './celestiatestnet2';
3
3
  import * as _impacthubdevnet from './impacthubdevnet';
4
4
  import * as _kyvedevnet from './kyvedevnet';
5
+ import * as _neuradevnet from './neuradevnet';
5
6
  import * as _nibirudevnet from './nibirudevnet';
6
7
  import * as _nibirudevnet2 from './nibirudevnet2';
7
8
  import * as _seidevnet3 from './seidevnet3';
@@ -10,6 +11,7 @@ const chains = [
10
11
  _celestiatestnet2.chain,
11
12
  _impacthubdevnet.chain,
12
13
  _kyvedevnet.chain,
14
+ _neuradevnet.chain,
13
15
  _nibirudevnet.chain,
14
16
  _nibirudevnet2.chain,
15
17
  _seidevnet3.chain
@@ -2,6 +2,7 @@ export * as bitcannadevnet2 from './bitcannadevnet2';
2
2
  export * as celestiatestnet2 from './celestiatestnet2';
3
3
  export * as impacthubdevnet from './impacthubdevnet';
4
4
  export * as kyvedevnet from './kyvedevnet';
5
+ export * as neuradevnet from './neuradevnet';
5
6
  export * as nibirudevnet from './nibirudevnet';
6
7
  export * as nibirudevnet2 from './nibirudevnet2';
7
8
  export * as seidevnet3 from './seidevnet3';
@@ -0,0 +1,34 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chain_name: 'neuradevnet',
4
+ assets: [{
5
+ description: 'ANKR: The native EVM, governance, and staking token for Neura, enabling secure transactions, and seamless GPU resourcing within the ecosystem.',
6
+ denom_units: [{
7
+ denom: 'atankr',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'ankr',
11
+ exponent: 18
12
+ }],
13
+ base: 'atankr',
14
+ name: 'Neura Devnet',
15
+ display: 'ankr',
16
+ symbol: 'ANKR',
17
+ traces: [{
18
+ type: 'test-mintage',
19
+ counterparty: {
20
+ chain_name: 'neura',
21
+ base_denom: 'atankr'
22
+ },
23
+ provider: 'Neura'
24
+ }],
25
+ images: [{
26
+ image_sync: {
27
+ chain_name: 'neura',
28
+ base_denom: 'atankr'
29
+ },
30
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ankr.svg'
31
+ }]
32
+ }]
33
+ };
34
+ export default info;
@@ -0,0 +1,34 @@
1
+ const info = {
2
+ $schema: '../../chain.schema.json',
3
+ chain_name: 'neuradevnet',
4
+ chain_id: 'neura_268-1',
5
+ bech32_prefix: 'neura',
6
+ pretty_name: 'Neura Devnet',
7
+ website: 'https://www.neuraprotocol.io/',
8
+ description: 'Neura is an AI-centric, EVM-compatible Layer 1 blockchain built on the Cosmos SDK. We democratize GPU access and revolutionize AI project funding with IMO’s to advance AI development.',
9
+ status: 'live',
10
+ network_type: 'devnet',
11
+ node_home: '$HOME/.neurad',
12
+ daemon_name: 'neurad',
13
+ key_algos: ['ethsecp256k1'],
14
+ extra_codecs: ['ethermint'],
15
+ slip44: 1,
16
+ fees: {
17
+ fee_tokens: [{
18
+ denom: 'atankr'
19
+ }]
20
+ },
21
+ staking: {
22
+ staking_tokens: [{
23
+ denom: 'atankr'
24
+ }]
25
+ },
26
+ codebase: {},
27
+ images: [{
28
+ image_sync: {
29
+ chain_name: 'neura'
30
+ },
31
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neura/images/neura.png'
32
+ }]
33
+ };
34
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ export const assets = _assets;
4
+ export const chain = _chain;
@@ -94,6 +94,7 @@ import * as _migaloo from './migaloo';
94
94
  import * as _mises from './mises';
95
95
  import * as _mun from './mun';
96
96
  import * as _mythos from './mythos';
97
+ import * as _neura from './neura';
97
98
  import * as _neutaro from './neutaro';
98
99
  import * as _neutron from './neutron';
99
100
  import * as _nibiru from './nibiru';
@@ -259,6 +260,7 @@ const assets = [
259
260
  _mises.assets,
260
261
  _mun.assets,
261
262
  _mythos.assets,
263
+ _neura.assets,
262
264
  _neutaro.assets,
263
265
  _neutron.assets,
264
266
  _nibiru.assets,
@@ -128,16 +128,6 @@ const info = {
128
128
  ]
129
129
  },
130
130
  explorers: [
131
- {
132
- kind: 'bigdipper',
133
- url: 'https://cosmos.explorer.canto.io',
134
- tx_page: 'https://cosmos.explorer.canto.io/transactions/${txHash}'
135
- },
136
- {
137
- kind: 'blockscout',
138
- url: 'https://evm.explorer.canto.io/',
139
- tx_page: 'https://evm.explorer.canto.io/tx/${txHash}'
140
- },
141
131
  {
142
132
  kind: 'ping.pub',
143
133
  url: 'https://cosmos-explorers.neobase.one/canto',
@@ -3,6 +3,7 @@ const info = {
3
3
  chain_name: 'chain4energy',
4
4
  assets: [{
5
5
  description: 'The native token of Chain4Energy',
6
+ extended_description: 'C4E is a DePIN L1 Blockchain platform, designed to support a variety of innovative energy and e-mobility applications by creating a decentralized and democratized community-powered ecosystem.',
6
7
  denom_units: [{
7
8
  denom: 'uc4e',
8
9
  exponent: 0
@@ -17,7 +18,7 @@ const info = {
17
18
  logo_URIs: {
18
19
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png'
19
20
  },
20
- coingecko_id: '',
21
+ coingecko_id: 'chain4energy',
21
22
  images: [{
22
23
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png'
23
24
  }],
@@ -96,6 +96,7 @@ import * as _migaloo from './migaloo';
96
96
  import * as _mises from './mises';
97
97
  import * as _mun from './mun';
98
98
  import * as _mythos from './mythos';
99
+ import * as _neura from './neura';
99
100
  import * as _neutaro from './neutaro';
100
101
  import * as _neutron from './neutron';
101
102
  import * as _nibiru from './nibiru';
@@ -264,6 +265,7 @@ const chains = [
264
265
  _mises.chain,
265
266
  _mun.chain,
266
267
  _mythos.chain,
268
+ _neura.chain,
267
269
  _neutaro.chain,
268
270
  _neutron.chain,
269
271
  _nibiru.chain,
@@ -189,6 +189,29 @@ const info = {
189
189
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bhuahua.png'
190
190
  },
191
191
  coingecko_id: 'backbone-labs-staked-huahua'
192
+ },
193
+ {
194
+ description: 'ashHUAHUA - Burned HUAHUA',
195
+ extended_description: 'ashHUAHUA - receipt token recieved when burning HUAHUA via ASH DAOs Furnace',
196
+ denom_units: [{
197
+ denom: 'factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash',
198
+ exponent: 0
199
+ }, {
200
+ denom: 'ashHUAHUA',
201
+ exponent: 6
202
+ }],
203
+ type_asset: 'sdk.coin',
204
+ address: 'chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0',
205
+ base: 'factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash',
206
+ name: 'Burned HUAHUA',
207
+ display: 'ashHUAHUA',
208
+ symbol: 'ashHUAHUA',
209
+ images: [{
210
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/ashhuahua.png'
211
+ }],
212
+ logo_URIs: {
213
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/ashhuahua.png'
214
+ }
192
215
  }
193
216
  ]
194
217
  };
@@ -59,6 +59,10 @@ const info = {
59
59
  address: 'https://rpc-cosmoshub.ecostake.com',
60
60
  provider: 'ecostake'
61
61
  },
62
+ {
63
+ address: 'https://go.getblock.io/17515cb3ec0e43b7817f182e5de6066a',
64
+ provider: 'GetBlock RPC Nodes'
65
+ },
62
66
  {
63
67
  address: 'https://rpc-cosmoshub.pupmos.network',
64
68
  provider: 'PUPMØS'
@@ -401,6 +401,91 @@ const info = {
401
401
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg'
402
402
  }
403
403
  },
404
+ {
405
+ description: 'A receipt token for lent INJ issued by the Neptune Protocol.',
406
+ denom_units: [{
407
+ denom: 'inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f',
408
+ exponent: 0
409
+ }, {
410
+ denom: 'nINJ',
411
+ exponent: 18
412
+ }],
413
+ base: 'inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f',
414
+ name: 'Neptune Receipt INJ',
415
+ display: 'nINJ',
416
+ symbol: 'nINJ',
417
+ images: [{
418
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninj.png'
419
+ }]
420
+ },
421
+ {
422
+ description: 'A receipt token for lent ATOM issued by the Neptune Protocol.',
423
+ denom_units: [{
424
+ denom: 'inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780',
425
+ exponent: 0
426
+ }, {
427
+ denom: 'nATOM',
428
+ exponent: 6
429
+ }],
430
+ base: 'inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780',
431
+ name: 'Neptune Receipt ATOM',
432
+ display: 'nATOM',
433
+ symbol: 'nATOM',
434
+ images: [{
435
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/natom.png'
436
+ }]
437
+ },
438
+ {
439
+ description: 'A receipt token for lent WETH issued by the Neptune Protocol.',
440
+ denom_units: [{
441
+ denom: 'inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt',
442
+ exponent: 0
443
+ }, {
444
+ denom: 'nWETH',
445
+ exponent: 18
446
+ }],
447
+ base: 'inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt',
448
+ name: 'Neptune Receipt WETH',
449
+ display: 'nWETH',
450
+ symbol: 'nWETH',
451
+ images: [{
452
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nweth.png'
453
+ }]
454
+ },
455
+ {
456
+ description: 'A receipt token for lent USDT issued by the Neptune Protocol.',
457
+ denom_units: [{
458
+ denom: 'inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s',
459
+ exponent: 0
460
+ }, {
461
+ denom: 'nUSDT',
462
+ exponent: 6
463
+ }],
464
+ base: 'inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s',
465
+ name: 'Neptune Receipt USDT',
466
+ display: 'nUSDT',
467
+ symbol: 'nUSDT',
468
+ images: [{
469
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nusdt.png'
470
+ }]
471
+ },
472
+ {
473
+ description: 'A receipt token for lent TIA issued by the Neptune Protocol.',
474
+ denom_units: [{
475
+ denom: 'inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv',
476
+ exponent: 0
477
+ }, {
478
+ denom: 'nTIA',
479
+ exponent: 6
480
+ }],
481
+ base: 'inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv',
482
+ name: 'Neptune Receipt TIA',
483
+ display: 'nTIA',
484
+ symbol: 'nTIA',
485
+ images: [{
486
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ntia.png'
487
+ }]
488
+ },
404
489
  {
405
490
  description: 'Ninja Blaze Token',
406
491
  denom_units: [{
@@ -96,6 +96,7 @@ export * as migaloo from './migaloo';
96
96
  export * as mises from './mises';
97
97
  export * as mun from './mun';
98
98
  export * as mythos from './mythos';
99
+ export * as neura from './neura';
99
100
  export * as neutaro from './neutaro';
100
101
  export * as neutron from './neutron';
101
102
  export * as nibiru from './nibiru';
@@ -0,0 +1,39 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'neura',
4
+ assets: [{
5
+ description: 'ANKR: The native EVM, governance, and staking token for Neura, enabling secure transactions, and seamless GPU resourcing within the ecosystem.',
6
+ denom_units: [{
7
+ denom: 'atankr',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'ankr',
11
+ exponent: 18
12
+ }],
13
+ base: 'atankr',
14
+ name: 'Neura',
15
+ display: 'ankr',
16
+ symbol: 'ANKR',
17
+ traces: [{
18
+ type: 'additional-mintage',
19
+ counterparty: {
20
+ chain_name: 'ethereum',
21
+ base_denom: '0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4'
22
+ },
23
+ provider: 'Neura'
24
+ }],
25
+ images: [{
26
+ image_sync: {
27
+ chain_name: 'ethereum',
28
+ base_denom: '0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4'
29
+ },
30
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ankr.svg'
31
+ }],
32
+ coingecko_id: 'ankr',
33
+ socials: {
34
+ website: 'https://www.ankr.com',
35
+ twitter: 'https://x.com/ankr'
36
+ }
37
+ }]
38
+ };
39
+ export default info;
@@ -0,0 +1,31 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'neura',
4
+ chain_id: 'neura_266-1',
5
+ bech32_prefix: 'neura',
6
+ pretty_name: 'Neura',
7
+ website: 'https://www.neuraprotocol.io/',
8
+ description: 'Neura is an AI-centric, EVM-compatible Layer 1 blockchain built on the Cosmos SDK. We democratize GPU access and revolutionize AI project funding with IMO’s to advance AI development.',
9
+ status: 'upcoming',
10
+ network_type: 'mainnet',
11
+ node_home: '$HOME/.neurad',
12
+ daemon_name: 'neurad',
13
+ key_algos: ['ethsecp256k1'],
14
+ extra_codecs: ['ethermint'],
15
+ slip44: 60,
16
+ fees: {
17
+ fee_tokens: [{
18
+ denom: 'atankr'
19
+ }]
20
+ },
21
+ staking: {
22
+ staking_tokens: [{
23
+ denom: 'atankr'
24
+ }]
25
+ },
26
+ codebase: {},
27
+ images: [{
28
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neura/images/neura.png'
29
+ }]
30
+ };
31
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ export const assets = _assets;
4
+ export const chain = _chain;
@@ -754,6 +754,35 @@ const info = [
754
754
  }
755
755
  }]
756
756
  },
757
+ {
758
+ $schema: '../ibc_data.schema.json',
759
+ chain_1: {
760
+ chain_name: 'noble',
761
+ client_id: '07-tendermint-104',
762
+ connection_id: 'connection-96'
763
+ },
764
+ chain_2: {
765
+ chain_name: 'regen',
766
+ client_id: '07-tendermint-177',
767
+ connection_id: 'connection-149'
768
+ },
769
+ channels: [{
770
+ chain_1: {
771
+ channel_id: 'channel-83',
772
+ port_id: 'transfer'
773
+ },
774
+ chain_2: {
775
+ channel_id: 'channel-165',
776
+ port_id: 'transfer'
777
+ },
778
+ ordering: 'unordered',
779
+ version: 'ics20-1',
780
+ tags: {
781
+ status: 'live',
782
+ preferred: true
783
+ }
784
+ }]
785
+ },
757
786
  {
758
787
  $schema: '../ibc_data.schema.json',
759
788
  chain_1: {
@@ -14834,6 +14834,42 @@ const info = {
14834
14834
  images: [{
14835
14835
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COCA.png'
14836
14836
  }]
14837
+ },
14838
+ {
14839
+ description: 'An alloy of USDT asset variants on Osmosis.',
14840
+ extended_description: 'Multiple Tether USD variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of USDT.',
14841
+ denom_units: [{
14842
+ denom: 'factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT',
14843
+ exponent: 0
14844
+ }, {
14845
+ denom: 'allUSDT',
14846
+ exponent: 6
14847
+ }],
14848
+ type_asset: 'sdk.coin',
14849
+ address: 'osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek',
14850
+ base: 'factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT',
14851
+ name: 'Alloyed USDT',
14852
+ display: 'allUSDT',
14853
+ symbol: 'allUSDT',
14854
+ traces: [{
14855
+ type: 'synthetic',
14856
+ counterparty: {
14857
+ chain_name: 'ethereum',
14858
+ base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
14859
+ },
14860
+ provider: 'Osmosis'
14861
+ }],
14862
+ images: [{
14863
+ image_sync: {
14864
+ chain_name: 'ethereum',
14865
+ base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
14866
+ },
14867
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
14868
+ }],
14869
+ socials: {
14870
+ website: 'https://osmosis.zone',
14871
+ twitter: 'https://twitter.com/osmosiszone'
14872
+ }
14837
14873
  }
14838
14874
  ]
14839
14875
  };