chain-registry 2.0.1 → 2.0.3
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.
- package/README.md +42 -10
- package/esm/mainnet/cosmoshub/asset-list.js +85 -0
- package/esm/mainnet/ethereum/asset-list.js +20 -0
- package/esm/mainnet/juno/asset-list.js +1 -1
- package/esm/mainnet/noble/chain.js +3 -3
- package/esm/mainnet/omniflixhub/asset-list.js +6 -0
- package/esm/mainnet/osmosis/asset-list.js +53 -1
- package/esm/mainnet/osmosis/ibc-data.js +14 -0
- package/esm/mainnet/pryzm/asset-list.js +334 -0
- package/esm/mainnet/stargaze/asset-list.js +1 -0
- package/esm/mainnet/terra2/asset-list.js +94 -57
- package/esm/mainnet/terra2/chain.js +18 -12
- package/esm/mainnet/xion/chain.js +8 -8
- package/esm/mainnet/xion/ibc-data.js +14 -0
- package/esm/testnet/asset-lists.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/hippoprotocoltestnet/asset-list.js +28 -0
- package/esm/testnet/hippoprotocoltestnet/chain.js +86 -0
- package/esm/testnet/hippoprotocoltestnet/index.js +4 -0
- package/esm/testnet/osmosistestnet/ibc-data.js +14 -0
- package/esm/testnet/xarchaintestnet/chain.js +2 -2
- package/esm/testnet/xiontestnet2/chain.js +8 -8
- package/esm/testnet/xiontestnet2/ibc-data.js +14 -0
- package/esm/testnet/zenrocktestnet/chain.js +1 -1
- package/mainnet/cosmoshub/asset-list.js +85 -0
- package/mainnet/ethereum/asset-list.js +20 -0
- package/mainnet/juno/asset-list.js +1 -1
- package/mainnet/noble/chain.js +3 -3
- package/mainnet/omniflixhub/asset-list.js +6 -0
- package/mainnet/osmosis/asset-list.js +53 -1
- package/mainnet/osmosis/ibc-data.js +14 -0
- package/mainnet/pryzm/asset-list.js +334 -0
- package/mainnet/stargaze/asset-list.js +1 -0
- package/mainnet/terra2/asset-list.js +94 -57
- package/mainnet/terra2/chain.js +18 -12
- package/mainnet/xion/chain.js +8 -8
- package/mainnet/xion/ibc-data.js +14 -0
- package/package.json +3 -3
- package/testnet/asset-lists.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/hippoprotocoltestnet/asset-list.d.ts +3 -0
- package/testnet/hippoprotocoltestnet/asset-list.js +30 -0
- package/testnet/hippoprotocoltestnet/chain.d.ts +3 -0
- package/testnet/hippoprotocoltestnet/chain.js +88 -0
- package/testnet/hippoprotocoltestnet/index.d.ts +2 -0
- package/testnet/hippoprotocoltestnet/index.js +10 -0
- package/testnet/osmosistestnet/ibc-data.js +14 -0
- package/testnet/xarchaintestnet/chain.js +2 -2
- package/testnet/xiontestnet2/chain.js +8 -8
- package/testnet/xiontestnet2/ibc-data.js +14 -0
- package/testnet/zenrocktestnet/chain.js +1 -1
|
@@ -44,6 +44,7 @@ import * as _finschiatestnet from './finschiatestnet';
|
|
|
44
44
|
import * as _galacticatestnet from './galacticatestnet';
|
|
45
45
|
import * as _gitopiatestnet from './gitopiatestnet';
|
|
46
46
|
import * as _hedgetestnet from './hedgetestnet';
|
|
47
|
+
import * as _hippoprotocoltestnet from './hippoprotocoltestnet';
|
|
47
48
|
import * as _humanstestnet from './humanstestnet';
|
|
48
49
|
import * as _hypersigntestnet from './hypersigntestnet';
|
|
49
50
|
import * as _impacthubtestnet from './impacthubtestnet';
|
|
@@ -180,6 +181,7 @@ const assetList = [
|
|
|
180
181
|
_galacticatestnet.assetList,
|
|
181
182
|
_gitopiatestnet.assetList,
|
|
182
183
|
_hedgetestnet.assetList,
|
|
184
|
+
_hippoprotocoltestnet.assetList,
|
|
183
185
|
_humanstestnet.assetList,
|
|
184
186
|
_hypersigntestnet.assetList,
|
|
185
187
|
_impacthubtestnet.assetList,
|
package/esm/testnet/chains.js
CHANGED
|
@@ -44,6 +44,7 @@ import * as _finschiatestnet from './finschiatestnet';
|
|
|
44
44
|
import * as _galacticatestnet from './galacticatestnet';
|
|
45
45
|
import * as _gitopiatestnet from './gitopiatestnet';
|
|
46
46
|
import * as _hedgetestnet from './hedgetestnet';
|
|
47
|
+
import * as _hippoprotocoltestnet from './hippoprotocoltestnet';
|
|
47
48
|
import * as _humanstestnet from './humanstestnet';
|
|
48
49
|
import * as _hypersigntestnet from './hypersigntestnet';
|
|
49
50
|
import * as _impacthubtestnet from './impacthubtestnet';
|
|
@@ -180,6 +181,7 @@ const chains = [
|
|
|
180
181
|
_galacticatestnet.chain,
|
|
181
182
|
_gitopiatestnet.chain,
|
|
182
183
|
_hedgetestnet.chain,
|
|
184
|
+
_hippoprotocoltestnet.chain,
|
|
183
185
|
_humanstestnet.chain,
|
|
184
186
|
_hypersigntestnet.chain,
|
|
185
187
|
_impacthubtestnet.chain,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chainName: 'hippoprotocoltestnet',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of Hippo Protocol.',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'ahp',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}],
|
|
10
|
+
typeAsset: 'sdk.coin',
|
|
11
|
+
base: 'ahp',
|
|
12
|
+
name: 'Hippo',
|
|
13
|
+
display: 'ahp',
|
|
14
|
+
symbol: 'HP',
|
|
15
|
+
logoURIs: {
|
|
16
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hippoprotocol/images/logo.svg'
|
|
17
|
+
},
|
|
18
|
+
images: [{
|
|
19
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hippoprotocol/images/logo.svg'
|
|
20
|
+
}],
|
|
21
|
+
coingeckoId: 'hippo-protocol',
|
|
22
|
+
socials: {
|
|
23
|
+
website: 'https://hippoprotocol.ai/',
|
|
24
|
+
twitter: 'https://x.com/Hippo_Protocol'
|
|
25
|
+
}
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
export default info;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chainName: 'hippoprotocoltestnet',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://hippoprotocol.ai/',
|
|
6
|
+
networkType: 'testnet',
|
|
7
|
+
prettyName: 'Hippo Protocol Testnet',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'hippo-protocol-testnet-1',
|
|
10
|
+
bech32Prefix: 'hippo',
|
|
11
|
+
slip44: 118,
|
|
12
|
+
daemonName: 'hippod',
|
|
13
|
+
nodeHome: '$HOME/.hippod',
|
|
14
|
+
keyAlgos: ['secp256k1'],
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'ahp',
|
|
18
|
+
lowGasPrice: 4000000000000,
|
|
19
|
+
averageGasPrice: 5000000000000,
|
|
20
|
+
highGasPrice: 10000000000000
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
stakingTokens: [{
|
|
25
|
+
denom: 'ahp'
|
|
26
|
+
}],
|
|
27
|
+
lockDuration: {
|
|
28
|
+
time: '1814400s'
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
gitRepo: 'https://github.com/hippo-protocol/hippo-protocol',
|
|
33
|
+
recommendedVersion: 'v1.0.0',
|
|
34
|
+
compatibleVersions: ['v1.0.0'],
|
|
35
|
+
genesis: {
|
|
36
|
+
genesisUrl: 'https://github.com/hippo-protocol/hippo-protocol-hub/blob/main/hippo-protocol-testnet-1/genesis.json'
|
|
37
|
+
},
|
|
38
|
+
consensus: {
|
|
39
|
+
type: 'cometbft',
|
|
40
|
+
repo: 'https://github.com/cometbft/cometbft',
|
|
41
|
+
version: 'v0.38.17',
|
|
42
|
+
tag: 'v0.38.17'
|
|
43
|
+
},
|
|
44
|
+
sdk: {
|
|
45
|
+
type: 'cosmos',
|
|
46
|
+
repo: 'https://github.com/cosmos/cosmos-sdk',
|
|
47
|
+
version: 'v0.50.13',
|
|
48
|
+
tag: 'v0.50.13'
|
|
49
|
+
},
|
|
50
|
+
ibc: {
|
|
51
|
+
type: 'go',
|
|
52
|
+
repo: 'https://github.com/cosmos/ibc-go',
|
|
53
|
+
version: 'v8.7.0',
|
|
54
|
+
tag: 'v8.7.0'
|
|
55
|
+
},
|
|
56
|
+
language: {
|
|
57
|
+
type: 'go',
|
|
58
|
+
version: '1.23.0'
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
logoURIs: {
|
|
62
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hippoprotocol/images/logo.svg'
|
|
63
|
+
},
|
|
64
|
+
apis: {
|
|
65
|
+
rpc: [{
|
|
66
|
+
address: 'https://rpc.testnet.hippo-protocol.com/',
|
|
67
|
+
provider: 'Hippo Protocol'
|
|
68
|
+
}],
|
|
69
|
+
rest: [{
|
|
70
|
+
address: 'https://api.testnet.hippo-protocol.com/',
|
|
71
|
+
provider: 'Hippo Protocol'
|
|
72
|
+
}],
|
|
73
|
+
grpc: []
|
|
74
|
+
},
|
|
75
|
+
explorers: [{
|
|
76
|
+
kind: 'Hippo River Testnet',
|
|
77
|
+
url: 'https://river-testnet.hippoprotocol.ai/',
|
|
78
|
+
txPage: 'https://river-testnet.hippoprotocol.ai/hippo-protocol/tx/${txHash}',
|
|
79
|
+
accountPage: 'https://river-testnet.hippoprotocol.ai/hippo-protocol/account/${accountAddress}'
|
|
80
|
+
}],
|
|
81
|
+
images: [{
|
|
82
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hippoprotocol/images/logo.svg'
|
|
83
|
+
}],
|
|
84
|
+
description: 'One Protocol. Every Patient. Infinite Possibility.'
|
|
85
|
+
};
|
|
86
|
+
export default info;
|
|
@@ -1308,6 +1308,20 @@ const info = [
|
|
|
1308
1308
|
status: 'live',
|
|
1309
1309
|
preferred: true
|
|
1310
1310
|
}
|
|
1311
|
+
}, {
|
|
1312
|
+
chain1: {
|
|
1313
|
+
channelId: 'channel-10381',
|
|
1314
|
+
portId: 'icqhost'
|
|
1315
|
+
},
|
|
1316
|
+
chain2: {
|
|
1317
|
+
channelId: 'channel-10',
|
|
1318
|
+
portId: 'feeabs'
|
|
1319
|
+
},
|
|
1320
|
+
ordering: 'unordered',
|
|
1321
|
+
version: 'icq-1',
|
|
1322
|
+
tags: {
|
|
1323
|
+
status: 'live'
|
|
1324
|
+
}
|
|
1311
1325
|
}]
|
|
1312
1326
|
},
|
|
1313
1327
|
{
|
|
@@ -62,11 +62,11 @@ const info = {
|
|
|
62
62
|
description: 'Arcana\'s Chain Abstraction provides a unified balance on apps to spend on any chain, without swapping, bridging, or refuelling gas',
|
|
63
63
|
apis: {
|
|
64
64
|
rpc: [{
|
|
65
|
-
address: 'https://cosmos01-dev.arcana.network',
|
|
65
|
+
address: 'https://cosmos01-dev.arcana.network:26650',
|
|
66
66
|
provider: 'arcana'
|
|
67
67
|
}],
|
|
68
68
|
rest: [{
|
|
69
|
-
address: 'https://cosmos01-dev.arcana.network
|
|
69
|
+
address: 'https://cosmos01-dev.arcana.network',
|
|
70
70
|
provider: 'arcana'
|
|
71
71
|
}],
|
|
72
72
|
grpc: [{
|
|
@@ -36,21 +36,21 @@ const info = {
|
|
|
36
36
|
},
|
|
37
37
|
codebase: {
|
|
38
38
|
gitRepo: 'https://github.com/burnt-labs/xion',
|
|
39
|
-
tag: '
|
|
40
|
-
recommendedVersion: '
|
|
39
|
+
tag: 'v19.0.1',
|
|
40
|
+
recommendedVersion: 'v19.0.1',
|
|
41
41
|
language: {
|
|
42
42
|
type: 'go',
|
|
43
43
|
version: 'v1.23'
|
|
44
44
|
},
|
|
45
45
|
binaries: {
|
|
46
|
-
"darwin/amd64": 'https://github.com/burnt-labs/xion/releases/download/
|
|
47
|
-
"darwin/arm64": 'https://github.com/burnt-labs/xion/releases/download/
|
|
48
|
-
"linux/amd64": 'https://github.com/burnt-labs/xion/releases/download/
|
|
49
|
-
"linux/arm64": 'https://github.com/burnt-labs/xion/releases/download/
|
|
46
|
+
"darwin/amd64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_darwin_amd64.tar.gz?checksum=sha256:f350e2ab0cc08c18acce0d6518bd4f29ac88f1c331eb10d3ca43ec3e74103521',
|
|
47
|
+
"darwin/arm64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_darwin_arm64.tar.gz?checksum=sha256:9c2944de98c54f4e8517259d0782daca4c43900887b7d7c19044ba75b6e2976d',
|
|
48
|
+
"linux/amd64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_linux_amd64.tar.gz?checksum=sha256:5350ccf4fb83f086f772ceebd8a1c3788c2fa64ad1976d92052842e23a1977c3',
|
|
49
|
+
"linux/arm64": 'https://github.com/burnt-labs/xion/releases/download/v19.0.1/xiond_19.0.1_linux_arm64.tar.gz?checksum=sha256:efed79d4b240c6edaa4488b54e7efcbff89313c0f0ed6e1682dab0f1d97315c2'
|
|
50
50
|
},
|
|
51
51
|
sdk: {
|
|
52
52
|
type: 'cosmos',
|
|
53
|
-
version: 'v0.
|
|
53
|
+
version: 'v0.53.0'
|
|
54
54
|
},
|
|
55
55
|
consensus: {
|
|
56
56
|
type: 'cometbft',
|
|
@@ -65,7 +65,7 @@ const info = {
|
|
|
65
65
|
version: 'v8.7.0'
|
|
66
66
|
},
|
|
67
67
|
genesis: {
|
|
68
|
-
genesisUrl: 'https://raw.githubusercontent.com/burnt-labs/xion-testnet-2/config/genesis.json'
|
|
68
|
+
genesisUrl: 'https://raw.githubusercontent.com/burnt-labs/xion-testnet-2/main/config/genesis.json'
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
71
|
apis: {
|
|
@@ -53,6 +53,20 @@ const info = [{
|
|
|
53
53
|
status: 'live',
|
|
54
54
|
preferred: true
|
|
55
55
|
}
|
|
56
|
+
}, {
|
|
57
|
+
chain1: {
|
|
58
|
+
channelId: 'channel-10381',
|
|
59
|
+
portId: 'icqhost'
|
|
60
|
+
},
|
|
61
|
+
chain2: {
|
|
62
|
+
channelId: 'channel-10',
|
|
63
|
+
portId: 'feeabs'
|
|
64
|
+
},
|
|
65
|
+
ordering: 'unordered',
|
|
66
|
+
version: 'icq-1',
|
|
67
|
+
tags: {
|
|
68
|
+
status: 'live'
|
|
69
|
+
}
|
|
56
70
|
}]
|
|
57
71
|
}];
|
|
58
72
|
export default info;
|
|
@@ -671,6 +671,91 @@ const info = {
|
|
|
671
671
|
twitter: 'https://x.com/OphirDAO'
|
|
672
672
|
},
|
|
673
673
|
keywords: ['dao']
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
description: 'Midas mBTC on the Cosmos Hub',
|
|
677
|
+
denomUnits: [{
|
|
678
|
+
denom: 'ibc/62F1A800DCE1AA0FD47B3592DEBB7A8956A383A14A4F756E4881AEA927B21671',
|
|
679
|
+
exponent: 0
|
|
680
|
+
}, {
|
|
681
|
+
denom: 'mBTC',
|
|
682
|
+
exponent: 18
|
|
683
|
+
}],
|
|
684
|
+
typeAsset: 'ics20',
|
|
685
|
+
base: 'ibc/62F1A800DCE1AA0FD47B3592DEBB7A8956A383A14A4F756E4881AEA927B21671',
|
|
686
|
+
name: 'Midas BTC Yield Token',
|
|
687
|
+
display: 'mBTC',
|
|
688
|
+
symbol: 'mBTC.midas',
|
|
689
|
+
traces: [{
|
|
690
|
+
type: 'ibc-bridge',
|
|
691
|
+
counterparty: {
|
|
692
|
+
chainName: 'ethereum',
|
|
693
|
+
baseDenom: '0x007115416ab6c266329a03b09a8aa39ac2ef7d9d',
|
|
694
|
+
channelId: 'channel-0'
|
|
695
|
+
},
|
|
696
|
+
chain: {
|
|
697
|
+
channelId: '08-wasm-1369',
|
|
698
|
+
path: 'transfer/08-wasm-1369/0x007115416ab6c266329a03b09a8aa39ac2ef7d9d'
|
|
699
|
+
},
|
|
700
|
+
provider: 'Eureka'
|
|
701
|
+
}],
|
|
702
|
+
images: [{
|
|
703
|
+
imageSync: {
|
|
704
|
+
chainName: 'ethereum',
|
|
705
|
+
baseDenom: '0x007115416ab6c266329a03b09a8aa39ac2ef7d9d'
|
|
706
|
+
},
|
|
707
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/midas-mbtc.png',
|
|
708
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/midas-mbtc.svg'
|
|
709
|
+
}],
|
|
710
|
+
logoURIs: {
|
|
711
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/midas-mbtc.png',
|
|
712
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/midas-mbtc.svg'
|
|
713
|
+
}
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
description: 'Pax Gold on the Cosmos Hub',
|
|
717
|
+
denomUnits: [{
|
|
718
|
+
denom: 'ibc/09E95F57939E344EE36109AC41780B8A51F1FE0548A5203C5957674FF64C0F26',
|
|
719
|
+
exponent: 0
|
|
720
|
+
}, {
|
|
721
|
+
denom: 'paxg',
|
|
722
|
+
exponent: 18
|
|
723
|
+
}],
|
|
724
|
+
typeAsset: 'ics20',
|
|
725
|
+
base: 'ibc/09E95F57939E344EE36109AC41780B8A51F1FE0548A5203C5957674FF64C0F26',
|
|
726
|
+
name: 'Pax Gold',
|
|
727
|
+
display: 'paxg',
|
|
728
|
+
symbol: 'PAXG',
|
|
729
|
+
traces: [{
|
|
730
|
+
type: 'ibc-bridge',
|
|
731
|
+
counterparty: {
|
|
732
|
+
chainName: 'ethereum',
|
|
733
|
+
baseDenom: '0x45804880De22913dAFE09f4980848ECE6EcbAf78',
|
|
734
|
+
channelId: 'channel-0'
|
|
735
|
+
},
|
|
736
|
+
chain: {
|
|
737
|
+
channelId: '08-wasm-1369',
|
|
738
|
+
path: 'transfer/08-wasm-1369/0x45804880de22913dafe09f4980848ece6ecbaf78'
|
|
739
|
+
},
|
|
740
|
+
provider: 'Eureka'
|
|
741
|
+
}],
|
|
742
|
+
images: [{
|
|
743
|
+
imageSync: {
|
|
744
|
+
chainName: 'ethereum',
|
|
745
|
+
baseDenom: '0x45804880De22913dAFE09f4980848ECE6EcbAf78'
|
|
746
|
+
},
|
|
747
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg',
|
|
748
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png',
|
|
749
|
+
theme: {
|
|
750
|
+
circle: true,
|
|
751
|
+
primaryColorHex: '#D8A24A',
|
|
752
|
+
backgroundColorHex: '#D8A24A'
|
|
753
|
+
}
|
|
754
|
+
}],
|
|
755
|
+
logoURIs: {
|
|
756
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png',
|
|
757
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg'
|
|
758
|
+
}
|
|
674
759
|
}
|
|
675
760
|
]
|
|
676
761
|
};
|
|
@@ -2052,6 +2052,26 @@ const info = {
|
|
|
2052
2052
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/susds.svg'
|
|
2053
2053
|
},
|
|
2054
2054
|
coingeckoId: 'susds'
|
|
2055
|
+
},
|
|
2056
|
+
{
|
|
2057
|
+
typeAsset: 'erc20',
|
|
2058
|
+
address: '0x007115416ab6c266329a03b09a8aa39ac2ef7d9d',
|
|
2059
|
+
denomUnits: [{
|
|
2060
|
+
denom: '0x007115416ab6c266329a03b09a8aa39ac2ef7d9d',
|
|
2061
|
+
exponent: 0
|
|
2062
|
+
}, {
|
|
2063
|
+
denom: 'mBTC',
|
|
2064
|
+
exponent: 18
|
|
2065
|
+
}],
|
|
2066
|
+
base: '0x007115416ab6c266329a03b09a8aa39ac2ef7d9d',
|
|
2067
|
+
name: 'Midas BTC Yield Token',
|
|
2068
|
+
display: 'mBTC',
|
|
2069
|
+
symbol: 'mBTC.midas',
|
|
2070
|
+
logoURIs: {
|
|
2071
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/midas-mbtc.png',
|
|
2072
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/midas-mbtc.svg'
|
|
2073
|
+
},
|
|
2074
|
+
coingeckoId: 'midas-btc-yield-token'
|
|
2055
2075
|
}
|
|
2056
2076
|
]
|
|
2057
2077
|
};
|
package/mainnet/noble/chain.js
CHANGED
|
@@ -23,9 +23,9 @@ const info = {
|
|
|
23
23
|
highGasPrice: 0.2
|
|
24
24
|
}, {
|
|
25
25
|
denom: 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0',
|
|
26
|
-
fixedMinGasPrice: 0.
|
|
27
|
-
lowGasPrice: 0.
|
|
28
|
-
averageGasPrice: 0.
|
|
26
|
+
fixedMinGasPrice: 0.02,
|
|
27
|
+
lowGasPrice: 0.02,
|
|
28
|
+
averageGasPrice: 0.02,
|
|
29
29
|
highGasPrice: 0.02
|
|
30
30
|
}]
|
|
31
31
|
},
|
|
@@ -301,6 +301,7 @@ const info = {
|
|
|
301
301
|
},
|
|
302
302
|
{
|
|
303
303
|
description: 'GATA Yield DAO Governance Token powered by OmniFlixHub',
|
|
304
|
+
extendedDescription: 'GATA Yield DAO is a decentralized, community-governed organization focused on sustainable yield generation and resource allocation. Governed by YGATA stakers, GATA Yield DAO is committed to long-term value growth and to support aligned projects in Cosmos/IBC, with decisions made through open and verifiable governance. Designed for equitable participation, GATA Yield DAO prioritizes community benefits and financial sustainability.',
|
|
304
305
|
denomUnits: [{
|
|
305
306
|
denom: 'factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata',
|
|
306
307
|
exponent: 0
|
|
@@ -323,6 +324,11 @@ const info = {
|
|
|
323
324
|
primaryColorHex: '#7b5aff'
|
|
324
325
|
}
|
|
325
326
|
}],
|
|
327
|
+
coingeckoId: 'yield-gata',
|
|
328
|
+
socials: {
|
|
329
|
+
website: 'https://gatahub.zone',
|
|
330
|
+
twitter: 'https://x.com/GataHubZone'
|
|
331
|
+
},
|
|
326
332
|
typeAsset: 'sdk.coin'
|
|
327
333
|
},
|
|
328
334
|
{
|
|
@@ -21480,7 +21480,12 @@ const info = {
|
|
|
21480
21480
|
theme: {
|
|
21481
21481
|
primaryColorHex: '#7b5aff'
|
|
21482
21482
|
}
|
|
21483
|
-
}]
|
|
21483
|
+
}],
|
|
21484
|
+
coingeckoId: 'yield-gata',
|
|
21485
|
+
socials: {
|
|
21486
|
+
website: 'https://gatahub.zone',
|
|
21487
|
+
twitter: 'https://x.com/GataHubZone'
|
|
21488
|
+
}
|
|
21484
21489
|
},
|
|
21485
21490
|
{
|
|
21486
21491
|
description: 'Deprecated after hard fork: Dragon Token is the native staking and governance token of Dungeon Chain, serving as the backbone of the ecosystem. Its primary roles include staking, where users stake Dragon Tokens to secure the network, enhance its functionality, and earn rewards in return; governance, granting token holders voting rights to influence key decisions such as game onboarding, protocol updates, and community-driven initiatives; and ecosystem growth, facilitating transactions, incentivizing developers, and promoting the creation of new interchain games. Dragon Token ensures a decentralized, fair, and community-driven ecosystem, fostering the evolution of blockchain-based gaming. It plays a crucial role in driving the growth of Dungeon Chain by empowering both developers and players to participate actively in the ecosystem\'s governance and success.',
|
|
@@ -24816,6 +24821,53 @@ const info = {
|
|
|
24816
24821
|
twitter: 'https://x.com/OphirDAO'
|
|
24817
24822
|
},
|
|
24818
24823
|
keywords: ['dao']
|
|
24824
|
+
},
|
|
24825
|
+
{
|
|
24826
|
+
description: 'Pax Gold via Eureka',
|
|
24827
|
+
denomUnits: [{
|
|
24828
|
+
denom: 'ibc/0EF5630576C66968EF0787868CF09FD866FAD131BC148D24A148358A85F0EB62',
|
|
24829
|
+
exponent: 0
|
|
24830
|
+
}, {
|
|
24831
|
+
denom: 'paxg',
|
|
24832
|
+
exponent: 18
|
|
24833
|
+
}],
|
|
24834
|
+
typeAsset: 'ics20',
|
|
24835
|
+
base: 'ibc/0EF5630576C66968EF0787868CF09FD866FAD131BC148D24A148358A85F0EB62',
|
|
24836
|
+
name: 'Pax Gold (Eureka)',
|
|
24837
|
+
display: 'paxg',
|
|
24838
|
+
symbol: 'PAXG.atom',
|
|
24839
|
+
traces: [{
|
|
24840
|
+
type: 'ibc',
|
|
24841
|
+
counterparty: {
|
|
24842
|
+
chainName: 'cosmoshub',
|
|
24843
|
+
baseDenom: 'ibc/09E95F57939E344EE36109AC41780B8A51F1FE0548A5203C5957674FF64C0F26',
|
|
24844
|
+
channelId: 'channel-141'
|
|
24845
|
+
},
|
|
24846
|
+
chain: {
|
|
24847
|
+
channelId: 'channel-0',
|
|
24848
|
+
path: 'transfer/channel-0/transfer/08-wasm-1369/0x45804880de22913dafe09f4980848ece6ecbaf78'
|
|
24849
|
+
}
|
|
24850
|
+
}],
|
|
24851
|
+
images: [{
|
|
24852
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.atom.svg',
|
|
24853
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.atom.png'
|
|
24854
|
+
}, {
|
|
24855
|
+
imageSync: {
|
|
24856
|
+
chainName: 'cosmoshub',
|
|
24857
|
+
baseDenom: 'ibc/09E95F57939E344EE36109AC41780B8A51F1FE0548A5203C5957674FF64C0F26'
|
|
24858
|
+
},
|
|
24859
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg',
|
|
24860
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png',
|
|
24861
|
+
theme: {
|
|
24862
|
+
circle: true,
|
|
24863
|
+
primaryColorHex: '#D8A24A',
|
|
24864
|
+
backgroundColorHex: '#D8A24A'
|
|
24865
|
+
}
|
|
24866
|
+
}],
|
|
24867
|
+
logoURIs: {
|
|
24868
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.atom.svg',
|
|
24869
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.atom.png'
|
|
24870
|
+
}
|
|
24819
24871
|
}
|
|
24820
24872
|
]
|
|
24821
24873
|
};
|
|
@@ -4821,6 +4821,20 @@ const info = [
|
|
|
4821
4821
|
status: 'live',
|
|
4822
4822
|
preferred: true
|
|
4823
4823
|
}
|
|
4824
|
+
}, {
|
|
4825
|
+
chain1: {
|
|
4826
|
+
channelId: 'channel-98063',
|
|
4827
|
+
portId: 'icqhost'
|
|
4828
|
+
},
|
|
4829
|
+
chain2: {
|
|
4830
|
+
channelId: 'channel-14',
|
|
4831
|
+
portId: 'feeabs'
|
|
4832
|
+
},
|
|
4833
|
+
ordering: 'unordered',
|
|
4834
|
+
version: 'icq-1',
|
|
4835
|
+
tags: {
|
|
4836
|
+
status: 'live'
|
|
4837
|
+
}
|
|
4824
4838
|
}]
|
|
4825
4839
|
},
|
|
4826
4840
|
{
|