chain-registry 2.0.10 → 2.0.12

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 (53) hide show
  1. package/esm/mainnet/asset-lists.js +2 -0
  2. package/esm/mainnet/chains.js +2 -0
  3. package/esm/mainnet/injective/asset-list.js +2 -2
  4. package/esm/mainnet/osmosis/asset-list.js +41 -2
  5. package/esm/{testnet/symphonytestnet3 → mainnet/symphony}/asset-list.js +16 -19
  6. package/esm/{testnet/symphonytestnet3 → mainnet/symphony}/chain.js +23 -23
  7. package/esm/{testnet/symphonytestnet3 → mainnet/symphony}/index.js +0 -2
  8. package/esm/mainnet/xion/chain.js +6 -6
  9. package/esm/mainnet/xrplevm/asset-list.js +1 -1
  10. package/esm/noncosmos/ibc-data.js +2 -0
  11. package/esm/noncosmos/symphonytestnet3/index.js +2 -0
  12. package/esm/testnet/asset-lists.js +2 -2
  13. package/esm/testnet/chains.js +2 -2
  14. package/esm/testnet/ibc-data.js +0 -2
  15. package/esm/testnet/safrochaintestnet/asset-list.js +38 -0
  16. package/esm/testnet/safrochaintestnet/chain.js +63 -0
  17. package/esm/testnet/safrochaintestnet/index.js +4 -0
  18. package/esm/testnet/symphonytestnet/asset-list.js +14 -17
  19. package/esm/testnet/symphonytestnet/chain.js +2 -2
  20. package/esm/testnet/xiontestnet2/asset-list.js +2 -1
  21. package/esm/testnet/xiontestnet2/chain.js +6 -6
  22. package/mainnet/asset-lists.js +2 -0
  23. package/mainnet/chains.js +2 -0
  24. package/mainnet/injective/asset-list.js +2 -2
  25. package/mainnet/osmosis/asset-list.js +41 -2
  26. package/{testnet/symphonytestnet3 → mainnet/symphony}/asset-list.js +16 -19
  27. package/{testnet/symphonytestnet3 → mainnet/symphony}/chain.js +23 -23
  28. package/{testnet/symphonytestnet3 → mainnet/symphony}/index.d.ts +0 -1
  29. package/{testnet/symphonytestnet3 → mainnet/symphony}/index.js +1 -3
  30. package/mainnet/xion/chain.js +6 -6
  31. package/mainnet/xrplevm/asset-list.js +1 -1
  32. package/noncosmos/ibc-data.js +2 -0
  33. package/noncosmos/symphonytestnet3/index.d.ts +1 -0
  34. package/noncosmos/symphonytestnet3/index.js +8 -0
  35. package/package.json +3 -3
  36. package/testnet/asset-lists.js +2 -2
  37. package/testnet/chains.js +2 -2
  38. package/testnet/ibc-data.js +0 -2
  39. package/testnet/safrochaintestnet/asset-list.d.ts +3 -0
  40. package/testnet/safrochaintestnet/asset-list.js +40 -0
  41. package/testnet/safrochaintestnet/chain.d.ts +3 -0
  42. package/testnet/safrochaintestnet/chain.js +65 -0
  43. package/testnet/safrochaintestnet/index.d.ts +2 -0
  44. package/testnet/safrochaintestnet/index.js +10 -0
  45. package/testnet/symphonytestnet/asset-list.js +14 -17
  46. package/testnet/symphonytestnet/chain.js +2 -2
  47. package/testnet/xiontestnet2/asset-list.js +2 -1
  48. package/testnet/xiontestnet2/chain.js +6 -6
  49. /package/esm/{testnet → noncosmos}/symphonytestnet3/ibc-data.js +0 -0
  50. /package/{testnet/symphonytestnet3 → mainnet/symphony}/asset-list.d.ts +0 -0
  51. /package/{testnet/symphonytestnet3 → mainnet/symphony}/chain.d.ts +0 -0
  52. /package/{testnet → noncosmos}/symphonytestnet3/ibc-data.d.ts +0 -0
  53. /package/{testnet → noncosmos}/symphonytestnet3/ibc-data.js +0 -0
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ chainType: 'cosmos',
5
+ $schema: '../../chain.schema.json',
6
+ chainName: 'safrochaintestnet',
7
+ status: 'live',
8
+ networkType: 'testnet',
9
+ website: 'https://safrochain.com',
10
+ prettyName: 'Safrochain Testnet',
11
+ chainId: 'safrochain-testnet',
12
+ bech32Prefix: 'addr_safro',
13
+ daemonName: 'safrochaind',
14
+ nodeHome: '.safrochaind',
15
+ keyAlgos: ['secp256k1', 'ed25519'],
16
+ slip44: 118,
17
+ fees: {
18
+ feeTokens: [{
19
+ denom: 'saf',
20
+ fixedMinGasPrice: 0.001,
21
+ lowGasPrice: 0.0025,
22
+ averageGasPrice: 0.025,
23
+ highGasPrice: 0.04
24
+ }]
25
+ },
26
+ staking: {
27
+ stakingTokens: [{
28
+ denom: 'saf'
29
+ }]
30
+ },
31
+ codebase: {
32
+ gitRepo: 'https://github.com/Safrochain-Org/safrochain-node',
33
+ recommendedVersion: 'v1.0.0',
34
+ compatibleVersions: ['v1.0.0'],
35
+ binaries: {
36
+ "linux/amd64": 'https://github.com/Safrochain-Org/safrochain-node/releases/download/v1.0.0/v1.0.0_linux_amd64.tar.gz',
37
+ "darwin/amd64": 'https://github.com/Safrochain-Org/safrochain-node/releases/download/v1.0.0/v1.0.0_darwin_amd64.tar.gz',
38
+ "darwin/arm64": 'https://github.com/Safrochain-Org/safrochain-node/releases/download/v1.0.0/v1.0.0_darwin_arm64.tar.gz'
39
+ }
40
+ },
41
+ apis: {
42
+ rpc: [{
43
+ address: 'https://rpc.testnet.safrochain.com',
44
+ provider: 'Safrochain'
45
+ }],
46
+ rest: [{
47
+ address: 'https://rest.testnet.safrochain.com',
48
+ provider: 'Safrochain'
49
+ }],
50
+ grpc: [{
51
+ address: 'https://grpc.testnet.safrochain.com',
52
+ provider: 'Safrochain'
53
+ }]
54
+ },
55
+ explorers: [{
56
+ kind: 'bigdipper',
57
+ url: 'https://explorer.testnet.safrochain.com',
58
+ txPage: 'https://explorer.testnet.safrochain.com/transactions/${txHash}'
59
+ }],
60
+ logoURIs: {
61
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/safrochaintestnet/images/saf.png',
62
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/safrochaintestnet/images/saf.svg'
63
+ }
64
+ };
65
+ 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;
@@ -21,10 +21,10 @@ const info = {
21
21
  display: 'mld',
22
22
  symbol: 'MLD',
23
23
  logoURIs: {
24
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/mld.png'
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/mld.png'
25
25
  },
26
26
  images: [{
27
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/mld.png'
27
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/mld.png'
28
28
  }]
29
29
  },
30
30
  {
@@ -32,11 +32,10 @@ const info = {
32
32
  denomUnits: [{
33
33
  denom: 'uusd',
34
34
  exponent: 0,
35
- aliases: []
35
+ aliases: ['microusd']
36
36
  }, {
37
37
  denom: 'husd',
38
- exponent: 6,
39
- aliases: ['harmony USD']
38
+ exponent: 6
40
39
  }],
41
40
  typeAsset: 'sdk.coin',
42
41
  base: 'uusd',
@@ -44,10 +43,10 @@ const info = {
44
43
  display: 'husd',
45
44
  symbol: 'HUSD',
46
45
  logoURIs: {
47
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/husd.png'
46
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/husd.png'
48
47
  },
49
48
  images: [{
50
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/husd.png'
49
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/husd.png'
51
50
  }]
52
51
  },
53
52
  {
@@ -55,11 +54,10 @@ const info = {
55
54
  denomUnits: [{
56
55
  denom: 'ukhd',
57
56
  exponent: 0,
58
- aliases: []
57
+ aliases: ['microhkd']
59
58
  }, {
60
59
  denom: 'hkhd',
61
- exponent: 6,
62
- aliases: ['harmony HKD']
60
+ exponent: 6
63
61
  }],
64
62
  typeAsset: 'sdk.coin',
65
63
  base: 'ukhd',
@@ -67,10 +65,10 @@ const info = {
67
65
  display: 'hkhd',
68
66
  symbol: 'HKHD',
69
67
  logoURIs: {
70
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hhkd.png'
68
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/hhkd.png'
71
69
  },
72
70
  images: [{
73
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hhkd.png'
71
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/hhkd.png'
74
72
  }]
75
73
  },
76
74
  {
@@ -78,11 +76,10 @@ const info = {
78
76
  denomUnits: [{
79
77
  denom: 'uvnd',
80
78
  exponent: 0,
81
- aliases: []
79
+ aliases: ['microvnd']
82
80
  }, {
83
81
  denom: 'hvnd',
84
- exponent: 6,
85
- aliases: ['harmony VND']
82
+ exponent: 6
86
83
  }],
87
84
  typeAsset: 'sdk.coin',
88
85
  base: 'uvnd',
@@ -90,10 +87,10 @@ const info = {
90
87
  display: 'hvnd',
91
88
  symbol: 'HVND',
92
89
  logoURIs: {
93
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hvnd.png'
90
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/hvnd.png'
94
91
  },
95
92
  images: [{
96
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/hvnd.png'
93
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/hvnd.png'
97
94
  }]
98
95
  }
99
96
  ]
@@ -71,10 +71,10 @@ const info = {
71
71
  }]
72
72
  },
73
73
  logoURIs: {
74
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/symphony_logo.png'
74
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/symphony_logo.png'
75
75
  },
76
76
  images: [{
77
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/symphonytestnet/images/symphony_logo.png'
77
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/symphony_logo.png'
78
78
  }]
79
79
  };
80
80
  exports.default = info;
@@ -32,7 +32,8 @@ const info = {
32
32
  twitter: 'https://x.com/burnt_xion',
33
33
  website: 'https://xion.burnt.com'
34
34
  },
35
- typeAsset: 'sdk.coin'
35
+ typeAsset: 'sdk.coin',
36
+ coingeckoId: 'xion-2'
36
37
  },
37
38
  {
38
39
  denomUnits: [{
@@ -38,17 +38,17 @@ const info = {
38
38
  },
39
39
  codebase: {
40
40
  gitRepo: 'https://github.com/burnt-labs/xion',
41
- tag: 'v19.0.1',
42
- recommendedVersion: 'v19.0.1',
41
+ tag: 'v19.0.2',
42
+ recommendedVersion: 'v19.0.2',
43
43
  language: {
44
44
  type: 'go',
45
45
  version: 'v1.23'
46
46
  },
47
47
  binaries: {
48
- "darwin/amd64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_darwin_amd64.tar.gz?checksum=sha256:f350e2ab0cc08c18acce0d6518bd4f29ac88f1c331eb10d3ca43ec3e74103521',
49
- "darwin/arm64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_darwin_arm64.tar.gz?checksum=sha256:9c2944de98c54f4e8517259d0782daca4c43900887b7d7c19044ba75b6e2976d',
50
- "linux/amd64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_linux_amd64.tar.gz?checksum=sha256:5350ccf4fb83f086f772ceebd8a1c3788c2fa64ad1976d92052842e23a1977c3',
51
- "linux/arm64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_linux_arm64.tar.gz?checksum=sha256:efed79d4b240c6edaa4488b54e7efcbff89313c0f0ed6e1682dab0f1d97315c2'
48
+ "darwin/amd64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_darwin_amd64.tar.gz?checksum=sha256:edda13aec2274f1eceb933874a885d055b14acbbe0de21ba61ed9c25c64813d6',
49
+ "darwin/arm64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_darwin_arm64.tar.gz?checksum=sha256:7b94d2fdf1baa1d3dff4f947858a2bac684257be27f8bf179fb973ee8dd4fdb8',
50
+ "linux/amd64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_linux_amd64.tar.gz?checksum=sha256:6072ce81d08f77f98e2d2ae7726007eca18579ea2b1690b5f76b4df782690dcb',
51
+ "linux/arm64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.2/xiond_19.0.2_linux_arm64.tar.gz?checksum=sha256:0a55360653b596da5ace43c3b4a3fef6c9785bfe0e73405f591768b449af0e70'
52
52
  },
53
53
  sdk: {
54
54
  type: 'cosmos',