chain-registry 1.69.55 → 1.69.57
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/esm/testnet/assets.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/dymensionplaygroundtestnet/assets.js +136 -0
- package/esm/testnet/dymensionplaygroundtestnet/chain.js +54 -0
- package/esm/testnet/dymensionplaygroundtestnet/index.js +4 -0
- package/esm/testnet/named.js +1 -0
- package/package.json +4 -4
- package/testnet/assets.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/dymensionplaygroundtestnet/assets.d.ts +3 -0
- package/testnet/dymensionplaygroundtestnet/assets.js +138 -0
- package/testnet/dymensionplaygroundtestnet/chain.d.ts +3 -0
- package/testnet/dymensionplaygroundtestnet/chain.js +56 -0
- package/testnet/dymensionplaygroundtestnet/index.d.ts +2 -0
- package/testnet/dymensionplaygroundtestnet/index.js +10 -0
- package/testnet/named.d.ts +1 -0
- package/testnet/named.js +4 -3
package/esm/testnet/assets.js
CHANGED
|
@@ -26,6 +26,7 @@ import * as _desmostestnet from './desmostestnet';
|
|
|
26
26
|
import * as _dhealthtestnet from './dhealthtestnet';
|
|
27
27
|
import * as _doravotatestnet from './doravotatestnet';
|
|
28
28
|
import * as _dydxtestnet from './dydxtestnet';
|
|
29
|
+
import * as _dymensionplaygroundtestnet from './dymensionplaygroundtestnet';
|
|
29
30
|
import * as _elystestnet from './elystestnet';
|
|
30
31
|
import * as _empetestnet from './empetestnet';
|
|
31
32
|
import * as _empowertestnet from './empowertestnet';
|
|
@@ -142,6 +143,7 @@ const assets = [
|
|
|
142
143
|
_dhealthtestnet.assets,
|
|
143
144
|
_doravotatestnet.assets,
|
|
144
145
|
_dydxtestnet.assets,
|
|
146
|
+
_dymensionplaygroundtestnet.assets,
|
|
145
147
|
_elystestnet.assets,
|
|
146
148
|
_empetestnet.assets,
|
|
147
149
|
_empowertestnet.assets,
|
package/esm/testnet/chains.js
CHANGED
|
@@ -26,6 +26,7 @@ import * as _desmostestnet from './desmostestnet';
|
|
|
26
26
|
import * as _dhealthtestnet from './dhealthtestnet';
|
|
27
27
|
import * as _doravotatestnet from './doravotatestnet';
|
|
28
28
|
import * as _dydxtestnet from './dydxtestnet';
|
|
29
|
+
import * as _dymensionplaygroundtestnet from './dymensionplaygroundtestnet';
|
|
29
30
|
import * as _elystestnet from './elystestnet';
|
|
30
31
|
import * as _empetestnet from './empetestnet';
|
|
31
32
|
import * as _empowertestnet from './empowertestnet';
|
|
@@ -142,6 +143,7 @@ const chains = [
|
|
|
142
143
|
_dhealthtestnet.chain,
|
|
143
144
|
_doravotatestnet.chain,
|
|
144
145
|
_dydxtestnet.chain,
|
|
146
|
+
_dymensionplaygroundtestnet.chain,
|
|
145
147
|
_elystestnet.chain,
|
|
146
148
|
_empetestnet.chain,
|
|
147
149
|
_empowertestnet.chain,
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chain_name: 'dymensionplaygroundtestnet',
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
6
|
+
description: 'The native governance and staking token of the Dymension Hub',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'adym',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'dym',
|
|
12
|
+
exponent: 18
|
|
13
|
+
}],
|
|
14
|
+
type_asset: 'sdk.coin',
|
|
15
|
+
base: 'adym',
|
|
16
|
+
name: 'Dymension',
|
|
17
|
+
display: 'dym',
|
|
18
|
+
symbol: 'DYM',
|
|
19
|
+
logo_URIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.png',
|
|
21
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.svg'
|
|
22
|
+
},
|
|
23
|
+
coingecko_id: 'dymension',
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.png',
|
|
26
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.svg',
|
|
27
|
+
theme: {
|
|
28
|
+
primary_color_hex: '#f4e4d4'
|
|
29
|
+
}
|
|
30
|
+
}],
|
|
31
|
+
socials: {
|
|
32
|
+
website: 'https://playground.dymension.xyz',
|
|
33
|
+
twitter: 'https://twitter.com/dymension'
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
description: 'The native token of Nim Network.',
|
|
38
|
+
extended_description: 'Nim Network is a highly-adoptable AI Gaming chain that will provide the ultimate ecosystem for exploration and development of games at the intersection of Web3 and AI.',
|
|
39
|
+
denom_units: [{
|
|
40
|
+
denom: 'ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942',
|
|
41
|
+
exponent: 0,
|
|
42
|
+
aliases: ['anim']
|
|
43
|
+
}, {
|
|
44
|
+
denom: 'nim',
|
|
45
|
+
exponent: 18
|
|
46
|
+
}],
|
|
47
|
+
type_asset: 'ics20',
|
|
48
|
+
base: 'ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942',
|
|
49
|
+
name: 'Nim Network',
|
|
50
|
+
display: 'nim',
|
|
51
|
+
symbol: 'NIM',
|
|
52
|
+
traces: [{
|
|
53
|
+
type: 'ibc',
|
|
54
|
+
counterparty: {
|
|
55
|
+
chain_name: 'nim',
|
|
56
|
+
base_denom: 'anim',
|
|
57
|
+
channel_id: 'channel-0'
|
|
58
|
+
},
|
|
59
|
+
chain: {
|
|
60
|
+
channel_id: 'channel-49',
|
|
61
|
+
path: 'transfer/channel-49/anim'
|
|
62
|
+
}
|
|
63
|
+
}],
|
|
64
|
+
images: [{
|
|
65
|
+
image_sync: {
|
|
66
|
+
chain_name: 'nim',
|
|
67
|
+
base_denom: 'anim'
|
|
68
|
+
},
|
|
69
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png',
|
|
70
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg',
|
|
71
|
+
theme: {
|
|
72
|
+
primary_color_hex: '#519cea'
|
|
73
|
+
}
|
|
74
|
+
}],
|
|
75
|
+
socials: {
|
|
76
|
+
website: 'https://nim.network/',
|
|
77
|
+
twitter: 'https://twitter.com/nim_network'
|
|
78
|
+
},
|
|
79
|
+
keywords: ['gaming', 'AI'],
|
|
80
|
+
logo_URIs: {
|
|
81
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png',
|
|
82
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg'
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
description: 'The native token of Mande Network.',
|
|
87
|
+
extended_description: 'Mande network is an open on-chain reputation layer on Web3',
|
|
88
|
+
denom_units: [{
|
|
89
|
+
denom: 'ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF',
|
|
90
|
+
exponent: 0,
|
|
91
|
+
aliases: ['amand']
|
|
92
|
+
}, {
|
|
93
|
+
denom: 'mand',
|
|
94
|
+
exponent: 18
|
|
95
|
+
}],
|
|
96
|
+
type_asset: 'ics20',
|
|
97
|
+
base: 'ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF',
|
|
98
|
+
name: 'Mande Network',
|
|
99
|
+
display: 'mand',
|
|
100
|
+
symbol: 'MAND',
|
|
101
|
+
traces: [{
|
|
102
|
+
type: 'ibc',
|
|
103
|
+
counterparty: {
|
|
104
|
+
chain_name: 'mande',
|
|
105
|
+
base_denom: 'amand',
|
|
106
|
+
channel_id: 'channel-0'
|
|
107
|
+
},
|
|
108
|
+
chain: {
|
|
109
|
+
channel_id: 'channel-51',
|
|
110
|
+
path: 'transfer/channel-51/amand'
|
|
111
|
+
}
|
|
112
|
+
}],
|
|
113
|
+
images: [{
|
|
114
|
+
image_sync: {
|
|
115
|
+
chain_name: 'mande',
|
|
116
|
+
base_denom: 'amand'
|
|
117
|
+
},
|
|
118
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.png',
|
|
119
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg',
|
|
120
|
+
theme: {
|
|
121
|
+
primary_color_hex: '#274cbf'
|
|
122
|
+
}
|
|
123
|
+
}],
|
|
124
|
+
socials: {
|
|
125
|
+
website: 'https://mande.network/',
|
|
126
|
+
twitter: 'https://twitter.com/MandeNetwork'
|
|
127
|
+
},
|
|
128
|
+
keywords: ['credibility', 'identity'],
|
|
129
|
+
logo_URIs: {
|
|
130
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.png',
|
|
131
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg'
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
};
|
|
136
|
+
export default info;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chain_name: 'dymensionplaygroundtestnet',
|
|
4
|
+
chain_type: 'cosmos',
|
|
5
|
+
chain_id: 'dymension_1405-1',
|
|
6
|
+
pretty_name: 'Dymension Playground Testnet',
|
|
7
|
+
status: 'live',
|
|
8
|
+
network_type: 'testnet',
|
|
9
|
+
website: 'https://playground.dymension.xyz',
|
|
10
|
+
bech32_prefix: 'dym',
|
|
11
|
+
daemon_name: 'dymd',
|
|
12
|
+
node_home: '$HOME/.dymension',
|
|
13
|
+
key_algos: ['ethsecp256k1'],
|
|
14
|
+
extra_codecs: ['ethermint'],
|
|
15
|
+
slip44: 60,
|
|
16
|
+
fees: {
|
|
17
|
+
fee_tokens: [{
|
|
18
|
+
denom: 'adym',
|
|
19
|
+
low_gas_price: 5000000000,
|
|
20
|
+
average_gas_price: 5500000000,
|
|
21
|
+
high_gas_price: 6000000000
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'adym'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {},
|
|
30
|
+
logo_URIs: {
|
|
31
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.png',
|
|
32
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.svg'
|
|
33
|
+
},
|
|
34
|
+
apis: {
|
|
35
|
+
rpc: [{
|
|
36
|
+
address: 'https://rpc-dym-migration-test-2.mzonder.com',
|
|
37
|
+
provider: 'mzonder'
|
|
38
|
+
}],
|
|
39
|
+
rest: [{
|
|
40
|
+
address: 'https://api-dym-migration-test-2.mzonder.com',
|
|
41
|
+
provider: 'mzonder'
|
|
42
|
+
}]
|
|
43
|
+
},
|
|
44
|
+
explorers: [{
|
|
45
|
+
kind: 'dymscan',
|
|
46
|
+
url: 'https://pg.dym.fyi/',
|
|
47
|
+
tx_page: 'https://pg.dym.fyi//tx/${txHash}'
|
|
48
|
+
}],
|
|
49
|
+
images: [{
|
|
50
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.png',
|
|
51
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.svg'
|
|
52
|
+
}]
|
|
53
|
+
};
|
|
54
|
+
export default info;
|
package/esm/testnet/named.js
CHANGED
|
@@ -26,6 +26,7 @@ export * as desmostestnet from './desmostestnet';
|
|
|
26
26
|
export * as dhealthtestnet from './dhealthtestnet';
|
|
27
27
|
export * as doravotatestnet from './doravotatestnet';
|
|
28
28
|
export * as dydxtestnet from './dydxtestnet';
|
|
29
|
+
export * as dymensionplaygroundtestnet from './dymensionplaygroundtestnet';
|
|
29
30
|
export * as elystestnet from './elystestnet';
|
|
30
31
|
export * as empetestnet from './empetestnet';
|
|
31
32
|
export * as empowertestnet from './empowertestnet';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.57",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.51.
|
|
32
|
+
"@chain-registry/utils": "^1.51.31",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.31"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "60faa756a6fffa941a022b71b2604e46052b4267"
|
|
47
47
|
}
|
package/testnet/assets.js
CHANGED
|
@@ -51,6 +51,7 @@ const _desmostestnet = __importStar(require("./desmostestnet"));
|
|
|
51
51
|
const _dhealthtestnet = __importStar(require("./dhealthtestnet"));
|
|
52
52
|
const _doravotatestnet = __importStar(require("./doravotatestnet"));
|
|
53
53
|
const _dydxtestnet = __importStar(require("./dydxtestnet"));
|
|
54
|
+
const _dymensionplaygroundtestnet = __importStar(require("./dymensionplaygroundtestnet"));
|
|
54
55
|
const _elystestnet = __importStar(require("./elystestnet"));
|
|
55
56
|
const _empetestnet = __importStar(require("./empetestnet"));
|
|
56
57
|
const _empowertestnet = __importStar(require("./empowertestnet"));
|
|
@@ -167,6 +168,7 @@ const assets = [
|
|
|
167
168
|
_dhealthtestnet.assets,
|
|
168
169
|
_doravotatestnet.assets,
|
|
169
170
|
_dydxtestnet.assets,
|
|
171
|
+
_dymensionplaygroundtestnet.assets,
|
|
170
172
|
_elystestnet.assets,
|
|
171
173
|
_empetestnet.assets,
|
|
172
174
|
_empowertestnet.assets,
|
package/testnet/chains.js
CHANGED
|
@@ -51,6 +51,7 @@ const _desmostestnet = __importStar(require("./desmostestnet"));
|
|
|
51
51
|
const _dhealthtestnet = __importStar(require("./dhealthtestnet"));
|
|
52
52
|
const _doravotatestnet = __importStar(require("./doravotatestnet"));
|
|
53
53
|
const _dydxtestnet = __importStar(require("./dydxtestnet"));
|
|
54
|
+
const _dymensionplaygroundtestnet = __importStar(require("./dymensionplaygroundtestnet"));
|
|
54
55
|
const _elystestnet = __importStar(require("./elystestnet"));
|
|
55
56
|
const _empetestnet = __importStar(require("./empetestnet"));
|
|
56
57
|
const _empowertestnet = __importStar(require("./empowertestnet"));
|
|
@@ -167,6 +168,7 @@ const chains = [
|
|
|
167
168
|
_dhealthtestnet.chain,
|
|
168
169
|
_doravotatestnet.chain,
|
|
169
170
|
_dydxtestnet.chain,
|
|
171
|
+
_dymensionplaygroundtestnet.chain,
|
|
170
172
|
_elystestnet.chain,
|
|
171
173
|
_empetestnet.chain,
|
|
172
174
|
_empowertestnet.chain,
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../assetlist.schema.json',
|
|
5
|
+
chain_name: 'dymensionplaygroundtestnet',
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
8
|
+
description: 'The native governance and staking token of the Dymension Hub',
|
|
9
|
+
denom_units: [{
|
|
10
|
+
denom: 'adym',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'dym',
|
|
14
|
+
exponent: 18
|
|
15
|
+
}],
|
|
16
|
+
type_asset: 'sdk.coin',
|
|
17
|
+
base: 'adym',
|
|
18
|
+
name: 'Dymension',
|
|
19
|
+
display: 'dym',
|
|
20
|
+
symbol: 'DYM',
|
|
21
|
+
logo_URIs: {
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.png',
|
|
23
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.svg'
|
|
24
|
+
},
|
|
25
|
+
coingecko_id: 'dymension',
|
|
26
|
+
images: [{
|
|
27
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.png',
|
|
28
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.svg',
|
|
29
|
+
theme: {
|
|
30
|
+
primary_color_hex: '#f4e4d4'
|
|
31
|
+
}
|
|
32
|
+
}],
|
|
33
|
+
socials: {
|
|
34
|
+
website: 'https://playground.dymension.xyz',
|
|
35
|
+
twitter: 'https://twitter.com/dymension'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
description: 'The native token of Nim Network.',
|
|
40
|
+
extended_description: 'Nim Network is a highly-adoptable AI Gaming chain that will provide the ultimate ecosystem for exploration and development of games at the intersection of Web3 and AI.',
|
|
41
|
+
denom_units: [{
|
|
42
|
+
denom: 'ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942',
|
|
43
|
+
exponent: 0,
|
|
44
|
+
aliases: ['anim']
|
|
45
|
+
}, {
|
|
46
|
+
denom: 'nim',
|
|
47
|
+
exponent: 18
|
|
48
|
+
}],
|
|
49
|
+
type_asset: 'ics20',
|
|
50
|
+
base: 'ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942',
|
|
51
|
+
name: 'Nim Network',
|
|
52
|
+
display: 'nim',
|
|
53
|
+
symbol: 'NIM',
|
|
54
|
+
traces: [{
|
|
55
|
+
type: 'ibc',
|
|
56
|
+
counterparty: {
|
|
57
|
+
chain_name: 'nim',
|
|
58
|
+
base_denom: 'anim',
|
|
59
|
+
channel_id: 'channel-0'
|
|
60
|
+
},
|
|
61
|
+
chain: {
|
|
62
|
+
channel_id: 'channel-49',
|
|
63
|
+
path: 'transfer/channel-49/anim'
|
|
64
|
+
}
|
|
65
|
+
}],
|
|
66
|
+
images: [{
|
|
67
|
+
image_sync: {
|
|
68
|
+
chain_name: 'nim',
|
|
69
|
+
base_denom: 'anim'
|
|
70
|
+
},
|
|
71
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png',
|
|
72
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg',
|
|
73
|
+
theme: {
|
|
74
|
+
primary_color_hex: '#519cea'
|
|
75
|
+
}
|
|
76
|
+
}],
|
|
77
|
+
socials: {
|
|
78
|
+
website: 'https://nim.network/',
|
|
79
|
+
twitter: 'https://twitter.com/nim_network'
|
|
80
|
+
},
|
|
81
|
+
keywords: ['gaming', 'AI'],
|
|
82
|
+
logo_URIs: {
|
|
83
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png',
|
|
84
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg'
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
description: 'The native token of Mande Network.',
|
|
89
|
+
extended_description: 'Mande network is an open on-chain reputation layer on Web3',
|
|
90
|
+
denom_units: [{
|
|
91
|
+
denom: 'ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF',
|
|
92
|
+
exponent: 0,
|
|
93
|
+
aliases: ['amand']
|
|
94
|
+
}, {
|
|
95
|
+
denom: 'mand',
|
|
96
|
+
exponent: 18
|
|
97
|
+
}],
|
|
98
|
+
type_asset: 'ics20',
|
|
99
|
+
base: 'ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF',
|
|
100
|
+
name: 'Mande Network',
|
|
101
|
+
display: 'mand',
|
|
102
|
+
symbol: 'MAND',
|
|
103
|
+
traces: [{
|
|
104
|
+
type: 'ibc',
|
|
105
|
+
counterparty: {
|
|
106
|
+
chain_name: 'mande',
|
|
107
|
+
base_denom: 'amand',
|
|
108
|
+
channel_id: 'channel-0'
|
|
109
|
+
},
|
|
110
|
+
chain: {
|
|
111
|
+
channel_id: 'channel-51',
|
|
112
|
+
path: 'transfer/channel-51/amand'
|
|
113
|
+
}
|
|
114
|
+
}],
|
|
115
|
+
images: [{
|
|
116
|
+
image_sync: {
|
|
117
|
+
chain_name: 'mande',
|
|
118
|
+
base_denom: 'amand'
|
|
119
|
+
},
|
|
120
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.png',
|
|
121
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg',
|
|
122
|
+
theme: {
|
|
123
|
+
primary_color_hex: '#274cbf'
|
|
124
|
+
}
|
|
125
|
+
}],
|
|
126
|
+
socials: {
|
|
127
|
+
website: 'https://mande.network/',
|
|
128
|
+
twitter: 'https://twitter.com/MandeNetwork'
|
|
129
|
+
},
|
|
130
|
+
keywords: ['credibility', 'identity'],
|
|
131
|
+
logo_URIs: {
|
|
132
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.png',
|
|
133
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg'
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
]
|
|
137
|
+
};
|
|
138
|
+
exports.default = info;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../chain.schema.json',
|
|
5
|
+
chain_name: 'dymensionplaygroundtestnet',
|
|
6
|
+
chain_type: 'cosmos',
|
|
7
|
+
chain_id: 'dymension_1405-1',
|
|
8
|
+
pretty_name: 'Dymension Playground Testnet',
|
|
9
|
+
status: 'live',
|
|
10
|
+
network_type: 'testnet',
|
|
11
|
+
website: 'https://playground.dymension.xyz',
|
|
12
|
+
bech32_prefix: 'dym',
|
|
13
|
+
daemon_name: 'dymd',
|
|
14
|
+
node_home: '$HOME/.dymension',
|
|
15
|
+
key_algos: ['ethsecp256k1'],
|
|
16
|
+
extra_codecs: ['ethermint'],
|
|
17
|
+
slip44: 60,
|
|
18
|
+
fees: {
|
|
19
|
+
fee_tokens: [{
|
|
20
|
+
denom: 'adym',
|
|
21
|
+
low_gas_price: 5000000000,
|
|
22
|
+
average_gas_price: 5500000000,
|
|
23
|
+
high_gas_price: 6000000000
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
staking_tokens: [{
|
|
28
|
+
denom: 'adym'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
codebase: {},
|
|
32
|
+
logo_URIs: {
|
|
33
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.png',
|
|
34
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.svg'
|
|
35
|
+
},
|
|
36
|
+
apis: {
|
|
37
|
+
rpc: [{
|
|
38
|
+
address: 'https://rpc-dym-migration-test-2.mzonder.com',
|
|
39
|
+
provider: 'mzonder'
|
|
40
|
+
}],
|
|
41
|
+
rest: [{
|
|
42
|
+
address: 'https://api-dym-migration-test-2.mzonder.com',
|
|
43
|
+
provider: 'mzonder'
|
|
44
|
+
}]
|
|
45
|
+
},
|
|
46
|
+
explorers: [{
|
|
47
|
+
kind: 'dymscan',
|
|
48
|
+
url: 'https://pg.dym.fyi/',
|
|
49
|
+
tx_page: 'https://pg.dym.fyi//tx/${txHash}'
|
|
50
|
+
}],
|
|
51
|
+
images: [{
|
|
52
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.png',
|
|
53
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/dymensionplaygroundtestnet/images/dymension-logo.svg'
|
|
54
|
+
}]
|
|
55
|
+
};
|
|
56
|
+
exports.default = info;
|
|
@@ -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;
|
package/testnet/named.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export * as desmostestnet from './desmostestnet';
|
|
|
26
26
|
export * as dhealthtestnet from './dhealthtestnet';
|
|
27
27
|
export * as doravotatestnet from './doravotatestnet';
|
|
28
28
|
export * as dydxtestnet from './dydxtestnet';
|
|
29
|
+
export * as dymensionplaygroundtestnet from './dymensionplaygroundtestnet';
|
|
29
30
|
export * as elystestnet from './elystestnet';
|
|
30
31
|
export * as empetestnet from './empetestnet';
|
|
31
32
|
export * as empowertestnet from './empowertestnet';
|
package/testnet/named.js
CHANGED
|
@@ -23,9 +23,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.zetachaintestnet = exports.zenrocktestnet = exports.xplatestnet = exports.xiontestnet = exports.wavehashtestnet = exports.wardenprotocoltestnet = exports.upticktestnet = exports.uniontestnet = exports.unificationtestnet = exports.ulastestnet = exports.tucanatestnet = exports.titantestnet = exports.terra2testnet = exports.terpnettestnet2 = exports.terpnettestnet = void 0;
|
|
26
|
+
exports.kimanetworktestnet = exports.kichaintestnet = exports.junotestnet = exports.jackaltestnet2 = exports.jackaltestnet = exports.injectivetestnet = exports.imversedtestnet = exports.impacthubtestnet = exports.hypersigntestnet = exports.humanstestnet = exports.hedgetestnet = exports.gitopiatestnet = exports.galacticatestnet = exports.finschiatestnet = exports.fiammatestnet = exports.fetchhubtestnet = exports.evmostestnet = exports.epixtestnet = exports.empowertestnet = exports.empetestnet = exports.elystestnet = exports.dymensionplaygroundtestnet = exports.dydxtestnet = exports.doravotatestnet = exports.dhealthtestnet = exports.desmostestnet = exports.deardogetestnet = exports.cudostestnet = exports.cosstestnet = exports.cosmwasmtestnet = exports.cosmosicsprovidertestnet = exports.cosmoshubtestnet = exports.coreumtestnet = exports.coolcattestnet = exports.composabletestnet = exports.chimbatestnet = exports.cheqdtestnet = exports.chain4energytestnet = exports.celestiatestnet3 = exports.cascadiatestnet = exports.blockxtestnet = exports.bitcannadevnet = exports.babylontestnet = exports.axelartestnet = exports.auratestnet = exports.artelatestnet = exports.arkeonetworktestnet = exports.archwaytestnet = exports.akashtestnet = exports.airchainstestnet = void 0;
|
|
27
|
+
exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = exports.stargazetestnet = exports.sourcetestnet = exports.soarchaintestnet = exports.sixtestnet = exports.shentutestnet = exports.sgetestnet4 = exports.sgetestnet = exports.selfchaindevnet = exports.seitestnet2 = exports.seitestnet = exports.secretnetworktestnet = exports.sagatestnet = exports.qwoyntestnet = exports.quicksilvertestnet = exports.quasartestnet = exports.pryzmtestnet = exports.pockettestnet = exports.planqtestnet = exports.persistencetestnet2 = exports.persistencetestnet = exports.permtestnet = exports.osmosistestnet = exports.okp4testnet = exports.nyxtestnet = exports.nomictestnet = exports.nolustestnet = exports.noistestnet = exports.nobletestnet = exports.nilliontestnet = exports.nibirutestnet3 = exports.nibirutestnet2 = exports.nibirutestnet = exports.neutrontestnet = exports.neuratestnet = exports.migalootestnet = exports.metanovaversetestnet = exports.marstestnet = exports.mantrachaintestnet2 = exports.mantrachaintestnet = exports.manifesttestnet = exports.lumenxtestnet = exports.likecointestnet = exports.lavatestnet = exports.kyvetestnet = exports.kujiratestnet = void 0;
|
|
28
|
+
exports.zetachaintestnet = exports.zenrocktestnet = exports.xplatestnet = exports.xiontestnet = exports.wavehashtestnet = exports.wardenprotocoltestnet = exports.upticktestnet = exports.uniontestnet = exports.unificationtestnet = exports.ulastestnet = exports.tucanatestnet = exports.titantestnet = exports.terra2testnet = exports.terpnettestnet2 = exports.terpnettestnet = exports.synternettestnet = void 0;
|
|
29
29
|
exports.airchainstestnet = __importStar(require("./airchainstestnet"));
|
|
30
30
|
exports.akashtestnet = __importStar(require("./akashtestnet"));
|
|
31
31
|
exports.archwaytestnet = __importStar(require("./archwaytestnet"));
|
|
@@ -54,6 +54,7 @@ exports.desmostestnet = __importStar(require("./desmostestnet"));
|
|
|
54
54
|
exports.dhealthtestnet = __importStar(require("./dhealthtestnet"));
|
|
55
55
|
exports.doravotatestnet = __importStar(require("./doravotatestnet"));
|
|
56
56
|
exports.dydxtestnet = __importStar(require("./dydxtestnet"));
|
|
57
|
+
exports.dymensionplaygroundtestnet = __importStar(require("./dymensionplaygroundtestnet"));
|
|
57
58
|
exports.elystestnet = __importStar(require("./elystestnet"));
|
|
58
59
|
exports.empetestnet = __importStar(require("./empetestnet"));
|
|
59
60
|
exports.empowertestnet = __importStar(require("./empowertestnet"));
|