chain-registry 1.69.193 → 1.69.194

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 (42) hide show
  1. package/esm/mainnet/babylon/assets.js +4 -4
  2. package/esm/mainnet/elys/chain.js +18 -0
  3. package/esm/mainnet/initia/assets.js +3 -1
  4. package/esm/mainnet/initia/chain.js +10 -1
  5. package/esm/mainnet/initia/ibc.js +35 -8
  6. package/esm/mainnet/neutron/ibc.js +29 -0
  7. package/esm/mainnet/osmosis/ibc.js +7 -8
  8. package/esm/testnet/assets.js +2 -0
  9. package/esm/testnet/chains.js +2 -0
  10. package/esm/testnet/cosmosicsprovidertestnet/ibc.js +29 -0
  11. package/esm/testnet/elystestnet/ibc.js +30 -0
  12. package/esm/testnet/ibc.js +3 -1
  13. package/esm/testnet/named.js +1 -0
  14. package/esm/testnet/osmosistestnet/ibc.js +30 -0
  15. package/esm/testnet/xrplevmtestnet/assets.js +45 -0
  16. package/esm/testnet/xrplevmtestnet/chain.js +314 -0
  17. package/esm/testnet/xrplevmtestnet/ibc.js +93 -0
  18. package/esm/testnet/xrplevmtestnet/index.js +6 -0
  19. package/mainnet/babylon/assets.js +4 -4
  20. package/mainnet/elys/chain.js +18 -0
  21. package/mainnet/initia/assets.js +3 -1
  22. package/mainnet/initia/chain.js +10 -1
  23. package/mainnet/initia/ibc.js +35 -8
  24. package/mainnet/neutron/ibc.js +29 -0
  25. package/mainnet/osmosis/ibc.js +7 -8
  26. package/package.json +4 -4
  27. package/testnet/assets.js +2 -0
  28. package/testnet/chains.js +2 -0
  29. package/testnet/cosmosicsprovidertestnet/ibc.js +29 -0
  30. package/testnet/elystestnet/ibc.js +30 -0
  31. package/testnet/ibc.js +3 -1
  32. package/testnet/named.d.ts +1 -0
  33. package/testnet/named.js +2 -1
  34. package/testnet/osmosistestnet/ibc.js +30 -0
  35. package/testnet/xrplevmtestnet/assets.d.ts +3 -0
  36. package/testnet/xrplevmtestnet/assets.js +47 -0
  37. package/testnet/xrplevmtestnet/chain.d.ts +3 -0
  38. package/testnet/xrplevmtestnet/chain.js +316 -0
  39. package/testnet/xrplevmtestnet/ibc.d.ts +3 -0
  40. package/testnet/xrplevmtestnet/ibc.js +95 -0
  41. package/testnet/xrplevmtestnet/index.d.ts +3 -0
  42. package/testnet/xrplevmtestnet/index.js +12 -0
@@ -0,0 +1,95 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [
4
+ {
5
+ $schema: '../../ibc_data.schema.json',
6
+ chain_1: {
7
+ chain_name: 'cosmosicsprovidertestnet',
8
+ client_id: '07-tendermint-290',
9
+ connection_id: 'connection-208'
10
+ },
11
+ chain_2: {
12
+ chain_name: 'xrplevmtestnet',
13
+ client_id: '07-tendermint-9',
14
+ connection_id: 'connection-1'
15
+ },
16
+ channels: [{
17
+ chain_1: {
18
+ channel_id: 'channel-374',
19
+ port_id: 'transfer'
20
+ },
21
+ chain_2: {
22
+ channel_id: 'channel-1',
23
+ port_id: 'transfer'
24
+ },
25
+ ordering: 'unordered',
26
+ version: 'ics20-1',
27
+ tags: {
28
+ status: 'live',
29
+ preferred: true,
30
+ dex: 'osmosis'
31
+ }
32
+ }]
33
+ },
34
+ {
35
+ $schema: '../../ibc_data.schema.json',
36
+ chain_1: {
37
+ chain_name: 'elystestnet',
38
+ client_id: '07-tendermint-13',
39
+ connection_id: 'connection-9'
40
+ },
41
+ chain_2: {
42
+ chain_name: 'xrplevmtestnet',
43
+ client_id: '07-tendermint-15',
44
+ connection_id: 'connection-3'
45
+ },
46
+ channels: [{
47
+ chain_1: {
48
+ channel_id: 'channel-10',
49
+ port_id: 'transfer'
50
+ },
51
+ chain_2: {
52
+ channel_id: 'channel-3',
53
+ port_id: 'transfer'
54
+ },
55
+ ordering: 'unordered',
56
+ version: 'ics20-1',
57
+ tags: {
58
+ status: 'live',
59
+ preferred: true,
60
+ dex: 'osmosis'
61
+ }
62
+ }]
63
+ },
64
+ {
65
+ $schema: '../../ibc_data.schema.json',
66
+ chain_1: {
67
+ chain_name: 'osmosistestnet',
68
+ client_id: '07-tendermint-4629',
69
+ connection_id: 'connection-3984'
70
+ },
71
+ chain_2: {
72
+ chain_name: 'xrplevmtestnet',
73
+ client_id: '07-tendermint-10',
74
+ connection_id: 'connection-2'
75
+ },
76
+ channels: [{
77
+ chain_1: {
78
+ channel_id: 'channel-10361',
79
+ port_id: 'transfer'
80
+ },
81
+ chain_2: {
82
+ channel_id: 'channel-2',
83
+ port_id: 'transfer'
84
+ },
85
+ ordering: 'unordered',
86
+ version: 'ics20-1',
87
+ tags: {
88
+ status: 'live',
89
+ preferred: true,
90
+ dex: 'osmosis'
91
+ }
92
+ }]
93
+ }
94
+ ];
95
+ 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;