chain-registry 2.0.14 → 2.0.16

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,33 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'xarchain',
4
+ assets: [{
5
+ description: 'Xarchain stXar is the native cryptocurrency of the Arcana app chain (ceries), designed to orchestrate bridge-less interoperability between multiple blockchains',
6
+ extendedDescription: 'Xarchain stXar powers the Arcana app chain by supporting network consensus through staking, ensuring security and trustless coordination across chains.',
7
+ denomUnits: [{
8
+ denom: 'stxar',
9
+ exponent: 0
10
+ }],
11
+ base: 'stxar',
12
+ name: 'XarchainSTAKE',
13
+ display: 'stxar',
14
+ symbol: 'STXAR',
15
+ logoURIs: {
16
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xarchain/images/arcana_logo.png',
17
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xarchain/images/arcana_logo.svg'
18
+ },
19
+ images: [{
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xarchain/images/arcana_logo.png',
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xarchain/images/arcana_logo.svg',
22
+ theme: {
23
+ primaryColorHex: '#000000'
24
+ }
25
+ }],
26
+ socials: {
27
+ website: 'https://arcana.network',
28
+ twitter: 'https://x.com/ArcanaNetwork'
29
+ },
30
+ typeAsset: 'sdk.coin'
31
+ }]
32
+ };
33
+ export default info;
@@ -0,0 +1,89 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'xarchain',
4
+ chainType: 'cosmos',
5
+ chainId: 'xarchain',
6
+ website: 'https://arcana.network/',
7
+ prettyName: 'XarChain Coral',
8
+ status: 'live',
9
+ networkType: 'mainnet',
10
+ bech32Prefix: 'arcana',
11
+ daemonName: 'xarchaind',
12
+ nodeHome: '$HOME/.xarchain',
13
+ keyAlgos: ['secp256k1'],
14
+ slip44: 118,
15
+ fees: {
16
+ feeTokens: [{
17
+ denom: 'stxar',
18
+ fixedMinGasPrice: 0,
19
+ lowGasPrice: 0,
20
+ averageGasPrice: 0,
21
+ highGasPrice: 0
22
+ }]
23
+ },
24
+ staking: {
25
+ stakingTokens: [{
26
+ denom: 'stxar'
27
+ }]
28
+ },
29
+ codebase: {
30
+ gitRepo: 'https://github.com/arcana/xarchain',
31
+ recommendedVersion: 'v0.0.4-rc.2',
32
+ compatibleVersions: ['v0.0.4-rc.2'],
33
+ consensus: {
34
+ type: 'cometbft',
35
+ version: 'v0.38.15'
36
+ },
37
+ binaries: {
38
+ "linux/amd64": 'https://github.com/arcana-network/xarchain/releases/download/v0.0.4-rc.2/v0.0.4-rc.2_linux_amd64.tar.gz:checksum=sha256:9d141b09ddfe9cbb8c5ccbb5c5e38f5bbd381444efecc96166af8419f5a48465'
39
+ },
40
+ genesis: {
41
+ genesisUrl: 'https://cosmos01-testnet.arcana.network:26650/genesis'
42
+ },
43
+ sdk: {
44
+ type: 'cosmos',
45
+ version: 'v0.50.10',
46
+ tag: 'v0.50.10'
47
+ },
48
+ ibc: {
49
+ type: 'go',
50
+ version: 'v8.5.2'
51
+ },
52
+ cosmwasm: {
53
+ version: 'v0.53.0',
54
+ repo: 'https://github.com/CosmWasm/wasmd',
55
+ tag: 'v0.53.0'
56
+ }
57
+ },
58
+ logoURIs: {
59
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xarchain/images/arcana_logo.png',
60
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xarchain/images/arcana_logo.svg'
61
+ },
62
+ description: 'Arcana\'s Chain Abstraction provides a unified balance on apps to spend on any chain, without swapping, bridging, or refuelling gas',
63
+ apis: {
64
+ rpc: [{
65
+ address: 'https://cosmos01-testnet.arcana.network:26650',
66
+ provider: 'arcana'
67
+ }],
68
+ rest: [{
69
+ address: 'https://cosmos01-testnet.arcana.network',
70
+ provider: 'arcana'
71
+ }],
72
+ grpc: [{
73
+ address: 'https://cosmos01-testnet.arcana.network:9091',
74
+ provider: 'arcana'
75
+ }]
76
+ },
77
+ explorers: [{
78
+ kind: 'arcana ceries intent explorer',
79
+ url: 'https://explorer.arcana.network'
80
+ }],
81
+ images: [{
82
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xarchain/images/arcana_logo.png',
83
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xarchain/images/arcana_logo.svg',
84
+ theme: {
85
+ primaryColorHex: '#FF4E9F'
86
+ }
87
+ }]
88
+ };
89
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ export const assetList = _assetList;
4
+ export const chain = _chain;
@@ -2,7 +2,7 @@ const info = {
2
2
  $schema: '../../chain.schema.json',
3
3
  chainName: 'lumeratestnet',
4
4
  chainType: 'cosmos',
5
- chainId: 'lumera-testnet-1',
5
+ chainId: 'lumera-testnet-2',
6
6
  prettyName: 'Lumera',
7
7
  website: 'https://lumera.protocol',
8
8
  networkType: 'testnet',
@@ -226,6 +226,7 @@ const _unification = __importStar(require("./unification"));
226
226
  const _ununifi = __importStar(require("./ununifi"));
227
227
  const _uptick = __importStar(require("./uptick"));
228
228
  const _vector = __importStar(require("./vector"));
229
+ const _xarchain = __importStar(require("./xarchain"));
229
230
  const _xion = __importStar(require("./xion"));
230
231
  const _xpla = __importStar(require("./xpla"));
231
232
  const _xrplevm = __importStar(require("./xrplevm"));
@@ -435,6 +436,7 @@ const assetList = [
435
436
  _ununifi.assetList,
436
437
  _uptick.assetList,
437
438
  _vector.assetList,
439
+ _xarchain.assetList,
438
440
  _xion.assetList,
439
441
  _xpla.assetList,
440
442
  _xrplevm.assetList,
package/mainnet/chains.js CHANGED
@@ -226,6 +226,7 @@ const _unification = __importStar(require("./unification"));
226
226
  const _ununifi = __importStar(require("./ununifi"));
227
227
  const _uptick = __importStar(require("./uptick"));
228
228
  const _vector = __importStar(require("./vector"));
229
+ const _xarchain = __importStar(require("./xarchain"));
229
230
  const _xion = __importStar(require("./xion"));
230
231
  const _xpla = __importStar(require("./xpla"));
231
232
  const _xrplevm = __importStar(require("./xrplevm"));
@@ -435,6 +436,7 @@ const chains = [
435
436
  _ununifi.chain,
436
437
  _uptick.chain,
437
438
  _vector.chain,
439
+ _xarchain.chain,
438
440
  _xion.chain,
439
441
  _xpla.chain,
440
442
  _xrplevm.chain,
@@ -36,18 +36,11 @@ const info = {
36
36
  },
37
37
  codebase: {
38
38
  gitRepo: 'https://github.com/dydxprotocol/v4-chain/',
39
- recommendedVersion: 'protocol/v8.0.5',
40
- compatibleVersions: [
41
- 'protocol/v8.0.5',
42
- 'protocol/v8.0.3',
43
- 'protocol/v8.0.2',
44
- 'protocol/v8.0.1',
45
- 'protocol/v8.0.0-rc1',
46
- 'protocol/v8.0.0-rc0'
47
- ],
39
+ recommendedVersion: 'protocol/v8.1.0',
40
+ compatibleVersions: ['protocol/v8.1.0'],
48
41
  binaries: {
49
- "linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv8.0.5/dydxprotocold-v8.0.5-linux-amd64.tar.gz',
50
- "linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv8.0.5/dydxprotocold-v8.0.5-linux-arm64.tar.gz'
42
+ "linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv8.1.0/dydxprotocold-v8.1.0-linux-amd64.tar.gz',
43
+ "linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv8.1.0/dydxprotocold-v8.1.0-linux-arm64.tar.gz'
51
44
  },
52
45
  consensus: {
53
46
  type: 'cometbft',
@@ -215,6 +215,7 @@ const info = {
215
215
  },
216
216
  {
217
217
  description: 'USDN token',
218
+ extendedDescription: 'USDN is a yielding stablecoin collateral-backed by short-duration U.S. Treasury Bills.',
218
219
  denomUnits: [{
219
220
  denom: 'uusdn',
220
221
  exponent: 0,
@@ -228,6 +229,7 @@ const info = {
228
229
  name: 'Noble Dollar',
229
230
  display: 'usdn',
230
231
  symbol: 'USDN',
232
+ coingeckoId: 'noble-dollar-usdn',
231
233
  logoURIs: {
232
234
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDN.png',
233
235
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDN.svg'