chain-registry 2.0.197 → 2.0.199
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/mainnet/asset-lists.js +2 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/cosmoshub/asset-list.js +21 -0
- package/esm/mainnet/dungeon/asset-list.js +2 -2
- package/esm/mainnet/dungeon/chain.js +9 -15
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/osmosis/ibc-data.js +31 -0
- package/esm/mainnet/qie/chain.js +2 -1
- package/esm/mainnet/qie/ibc-data.js +32 -0
- package/esm/mainnet/qie/index.js +2 -0
- package/esm/mainnet/turkchain/asset-list.js +26 -0
- package/esm/mainnet/turkchain/chain.js +57 -0
- package/esm/mainnet/turkchain/index.js +4 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/asset-list.js +21 -0
- package/mainnet/dungeon/asset-list.js +2 -2
- package/mainnet/dungeon/chain.js +9 -15
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/osmosis/ibc-data.js +31 -0
- package/mainnet/qie/chain.js +2 -1
- package/mainnet/qie/ibc-data.d.ts +3 -0
- package/mainnet/qie/ibc-data.js +34 -0
- package/mainnet/qie/index.d.ts +1 -0
- package/mainnet/qie/index.js +3 -1
- package/mainnet/turkchain/asset-list.d.ts +3 -0
- package/mainnet/turkchain/asset-list.js +28 -0
- package/mainnet/turkchain/chain.d.ts +3 -0
- package/mainnet/turkchain/chain.js +59 -0
- package/mainnet/turkchain/index.d.ts +2 -0
- package/mainnet/turkchain/index.js +10 -0
- package/package.json +3 -3
|
@@ -216,6 +216,7 @@ import * as _tgrade from './tgrade';
|
|
|
216
216
|
import * as _thejaynetwork from './thejaynetwork';
|
|
217
217
|
import * as _thorchain from './thorchain';
|
|
218
218
|
import * as _titan from './titan';
|
|
219
|
+
import * as _turkchain from './turkchain';
|
|
219
220
|
import * as _umee from './umee';
|
|
220
221
|
import * as _unicorn from './unicorn';
|
|
221
222
|
import * as _unification from './unification';
|
|
@@ -451,6 +452,7 @@ const assetList = [
|
|
|
451
452
|
_thejaynetwork.assetList,
|
|
452
453
|
_thorchain.assetList,
|
|
453
454
|
_titan.assetList,
|
|
455
|
+
_turkchain.assetList,
|
|
454
456
|
_umee.assetList,
|
|
455
457
|
_unicorn.assetList,
|
|
456
458
|
_unification.assetList,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -216,6 +216,7 @@ import * as _tgrade from './tgrade';
|
|
|
216
216
|
import * as _thejaynetwork from './thejaynetwork';
|
|
217
217
|
import * as _thorchain from './thorchain';
|
|
218
218
|
import * as _titan from './titan';
|
|
219
|
+
import * as _turkchain from './turkchain';
|
|
219
220
|
import * as _umee from './umee';
|
|
220
221
|
import * as _unicorn from './unicorn';
|
|
221
222
|
import * as _unification from './unification';
|
|
@@ -451,6 +452,7 @@ const chains = [
|
|
|
451
452
|
_thejaynetwork.chain,
|
|
452
453
|
_thorchain.chain,
|
|
453
454
|
_titan.chain,
|
|
455
|
+
_turkchain.chain,
|
|
454
456
|
_umee.chain,
|
|
455
457
|
_unicorn.chain,
|
|
456
458
|
_unification.chain,
|
|
@@ -1063,6 +1063,27 @@ const info = {
|
|
|
1063
1063
|
}
|
|
1064
1064
|
}],
|
|
1065
1065
|
coingeckoId: 'dragon-coin-2'
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
description: 'Nether is a tokenfactory token on the Cosmos Hub.',
|
|
1069
|
+
denomUnits: [{
|
|
1070
|
+
denom: 'factory/cosmos1wdja2gcsesyl07raq9jm3rcvu0sse5zkev0h8m/Nether',
|
|
1071
|
+
exponent: 0
|
|
1072
|
+
}, {
|
|
1073
|
+
denom: 'nthr',
|
|
1074
|
+
exponent: 6
|
|
1075
|
+
}],
|
|
1076
|
+
typeAsset: 'sdk.coin',
|
|
1077
|
+
base: 'factory/cosmos1wdja2gcsesyl07raq9jm3rcvu0sse5zkev0h8m/Nether',
|
|
1078
|
+
name: 'Nether',
|
|
1079
|
+
display: 'nthr',
|
|
1080
|
+
symbol: 'NTHR',
|
|
1081
|
+
images: [{
|
|
1082
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/nthr.png'
|
|
1083
|
+
}],
|
|
1084
|
+
logoURIs: {
|
|
1085
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/nthr.png'
|
|
1086
|
+
}
|
|
1066
1087
|
}
|
|
1067
1088
|
]
|
|
1068
1089
|
};
|
|
@@ -4,7 +4,7 @@ const info = {
|
|
|
4
4
|
assets: [
|
|
5
5
|
{
|
|
6
6
|
description: '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.',
|
|
7
|
-
extendedDescription: 'Dungeon Chain is a
|
|
7
|
+
extendedDescription: 'Dungeon Chain is a sovereign Cosmos SDK blockchain designed specifically for interchain gaming. Built with native IBC interoperability and CosmWasm support, Dungeon Chain empowers developers and players to participate in a seamless gaming ecosystem that bridges multiple blockchains. It ensures robust security, scalability, and interoperability across gaming projects. Dungeon Chain features an interchain gaming platform that allows games to interact across multiple blockchains, enabling shared assets, gameplay mechanics, and player data. With high transaction throughput and low latency, it provides scalability for gamers, ensuring a smooth experience even during peak usage. Additionally, its developer-friendly ecosystem includes tools, SDKs, and documentation to facilitate the creation and integration of games into the platform. Dungeon Chain\'s vision is to redefine how games interact with blockchain technology by creating a secure, scalable, and specialized environment for interchain games, unlocking new possibilities for player ownership, collaboration, and innovation in gaming.',
|
|
8
8
|
denomUnits: [{
|
|
9
9
|
denom: 'udgn',
|
|
10
10
|
exponent: 0
|
|
@@ -21,7 +21,7 @@ const info = {
|
|
|
21
21
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png'
|
|
22
22
|
},
|
|
23
23
|
socials: {
|
|
24
|
-
website: 'https://
|
|
24
|
+
website: 'https://dungeongames.io',
|
|
25
25
|
x: 'https://x.com/cryptodungeonma'
|
|
26
26
|
},
|
|
27
27
|
images: [{
|
|
@@ -4,7 +4,7 @@ const info = {
|
|
|
4
4
|
status: 'live',
|
|
5
5
|
networkType: 'mainnet',
|
|
6
6
|
chainType: 'cosmos',
|
|
7
|
-
website: 'https://
|
|
7
|
+
website: 'https://dungeongames.io',
|
|
8
8
|
prettyName: 'Dungeon Chain',
|
|
9
9
|
chainId: 'dungeon-1',
|
|
10
10
|
bech32Prefix: 'dungeon',
|
|
@@ -20,6 +20,10 @@ const info = {
|
|
|
20
20
|
},
|
|
21
21
|
apis: {
|
|
22
22
|
rpc: [
|
|
23
|
+
{
|
|
24
|
+
address: 'https://rpc.dungeongames.io',
|
|
25
|
+
provider: 'Dungeon Games'
|
|
26
|
+
},
|
|
23
27
|
{
|
|
24
28
|
address: 'https://dungeon-wallet.rpc.quasarstaking.ai',
|
|
25
29
|
provider: 'Quasar'
|
|
@@ -35,13 +39,13 @@ const info = {
|
|
|
35
39
|
{
|
|
36
40
|
address: 'https://rpc.dungeon.chaintools.tech',
|
|
37
41
|
provider: 'ChainTools'
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
address: 'https://rpc.dungeongames.io',
|
|
41
|
-
provider: 'Dungeon Games'
|
|
42
42
|
}
|
|
43
43
|
],
|
|
44
44
|
rest: [
|
|
45
|
+
{
|
|
46
|
+
address: 'https://api.dungeongames.io',
|
|
47
|
+
provider: 'Dungeon Games'
|
|
48
|
+
},
|
|
45
49
|
{
|
|
46
50
|
address: 'https://dungeon-wallet.api.quasarstaking.ai',
|
|
47
51
|
provider: 'Quasar'
|
|
@@ -61,10 +65,6 @@ const info = {
|
|
|
61
65
|
{
|
|
62
66
|
address: 'https://api.dungeon.chaintools.tech',
|
|
63
67
|
provider: 'ChainTools'
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
address: 'https://api.dungeongames.io',
|
|
67
|
-
provider: 'Dungeon Games'
|
|
68
68
|
}
|
|
69
69
|
],
|
|
70
70
|
grpc: [{
|
|
@@ -76,12 +76,6 @@ const info = {
|
|
|
76
76
|
}]
|
|
77
77
|
},
|
|
78
78
|
explorers: [
|
|
79
|
-
{
|
|
80
|
-
kind: 'Ping.Pub',
|
|
81
|
-
url: 'https://ping.pub/Dungeonchain',
|
|
82
|
-
txPage: 'https://ping.pub/Dungeonchain/tx/${txHash}',
|
|
83
|
-
accountPage: 'https://ping.pub/Dungeonchain/account/${accountAddress}'
|
|
84
|
-
},
|
|
85
79
|
{
|
|
86
80
|
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
87
81
|
url: 'https://explorer.whenmoonwhenlambo.money/dungeon',
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -131,6 +131,7 @@ import * as _pryzm from './pryzm';
|
|
|
131
131
|
import * as _pundix from './pundix';
|
|
132
132
|
import * as _pylons from './pylons';
|
|
133
133
|
import * as _qfs from './qfs';
|
|
134
|
+
import * as _qie from './qie';
|
|
134
135
|
import * as _quasar from './quasar';
|
|
135
136
|
import * as _quicksilver from './quicksilver';
|
|
136
137
|
import * as _qwoyn from './qwoyn';
|
|
@@ -310,6 +311,7 @@ const ibcData = [
|
|
|
310
311
|
..._pundix.ibcData,
|
|
311
312
|
..._pylons.ibcData,
|
|
312
313
|
..._qfs.ibcData,
|
|
314
|
+
..._qie.ibcData,
|
|
313
315
|
..._quasar.ibcData,
|
|
314
316
|
..._quicksilver.ibcData,
|
|
315
317
|
..._qwoyn.ibcData,
|
|
@@ -4213,6 +4213,37 @@ const info = [
|
|
|
4213
4213
|
}
|
|
4214
4214
|
}]
|
|
4215
4215
|
},
|
|
4216
|
+
{
|
|
4217
|
+
$schema: '../ibc_data.schema.json',
|
|
4218
|
+
chain1: {
|
|
4219
|
+
chainName: 'osmosis',
|
|
4220
|
+
chainId: 'osmosis-1',
|
|
4221
|
+
clientId: '07-tendermint-3681',
|
|
4222
|
+
connectionId: 'connection-11041'
|
|
4223
|
+
},
|
|
4224
|
+
chain2: {
|
|
4225
|
+
chainName: 'qie',
|
|
4226
|
+
chainId: 'qie_1990-1',
|
|
4227
|
+
clientId: '07-tendermint-2',
|
|
4228
|
+
connectionId: 'connection-0'
|
|
4229
|
+
},
|
|
4230
|
+
channels: [{
|
|
4231
|
+
chain1: {
|
|
4232
|
+
channelId: 'channel-109956',
|
|
4233
|
+
portId: 'transfer'
|
|
4234
|
+
},
|
|
4235
|
+
chain2: {
|
|
4236
|
+
channelId: 'channel-0',
|
|
4237
|
+
portId: 'transfer'
|
|
4238
|
+
},
|
|
4239
|
+
ordering: 'unordered',
|
|
4240
|
+
version: 'ics20-1',
|
|
4241
|
+
tags: {
|
|
4242
|
+
preferred: true,
|
|
4243
|
+
status: 'ACTIVE'
|
|
4244
|
+
}
|
|
4245
|
+
}]
|
|
4246
|
+
},
|
|
4216
4247
|
{
|
|
4217
4248
|
$schema: '../ibc_data.schema.json',
|
|
4218
4249
|
chain1: {
|
package/esm/mainnet/qie/chain.js
CHANGED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'osmosis',
|
|
5
|
+
chainId: 'osmosis-1',
|
|
6
|
+
clientId: '07-tendermint-3681',
|
|
7
|
+
connectionId: 'connection-11041'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'qie',
|
|
11
|
+
chainId: 'qie_1990-1',
|
|
12
|
+
clientId: '07-tendermint-2',
|
|
13
|
+
connectionId: 'connection-0'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-109956',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-0',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
export default info;
|
package/esm/mainnet/qie/index.js
CHANGED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'turkchain',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'Native token of Turkchain',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'lira',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'TURK',
|
|
11
|
+
exponent: 18
|
|
12
|
+
}],
|
|
13
|
+
base: 'lira',
|
|
14
|
+
name: 'TC',
|
|
15
|
+
display: 'TURK',
|
|
16
|
+
symbol: 'TURK',
|
|
17
|
+
logoURIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/turkchain/images/turkchain.png'
|
|
19
|
+
},
|
|
20
|
+
images: [{
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/turkchain/images/turkchain.png'
|
|
22
|
+
}],
|
|
23
|
+
typeAsset: 'sdk.coin'
|
|
24
|
+
}]
|
|
25
|
+
};
|
|
26
|
+
export default info;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'turkchain',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
chainType: 'cosmos',
|
|
7
|
+
prettyName: 'Turkchain',
|
|
8
|
+
chainId: '1919',
|
|
9
|
+
description: 'Turkchain is a Cosmos SDK and EVM compatible blockchain focused on interoperability, DeFi and Web3 infrastructure.',
|
|
10
|
+
website: 'https://turkscan.com',
|
|
11
|
+
bech32Prefix: 'turk',
|
|
12
|
+
daemonName: 'turkchaind',
|
|
13
|
+
nodeHome: '$HOME/.turkchain',
|
|
14
|
+
slip44: 60,
|
|
15
|
+
keyAlgos: ['ethsecp256k1'],
|
|
16
|
+
extraCodecs: ['ethermint'],
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'lira',
|
|
20
|
+
lowGasPrice: 0.01,
|
|
21
|
+
averageGasPrice: 0.025,
|
|
22
|
+
highGasPrice: 0.04
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
stakingTokens: [{
|
|
27
|
+
denom: 'lira'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
logoURIs: {
|
|
31
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/turkchain/images/turkchain.png'
|
|
32
|
+
},
|
|
33
|
+
images: [{
|
|
34
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/turkchain/images/turkchain.png'
|
|
35
|
+
}],
|
|
36
|
+
apis: {
|
|
37
|
+
rpc: [{
|
|
38
|
+
address: 'https://node.turkscan.com',
|
|
39
|
+
provider: 'turkchain'
|
|
40
|
+
}],
|
|
41
|
+
rest: [{
|
|
42
|
+
address: 'https://api.turkscan.com',
|
|
43
|
+
provider: 'turkchain'
|
|
44
|
+
}],
|
|
45
|
+
evmHttpJsonrpc: [{
|
|
46
|
+
address: 'https://rpc.turkscan.com',
|
|
47
|
+
provider: 'turkchain'
|
|
48
|
+
}]
|
|
49
|
+
},
|
|
50
|
+
explorers: [{
|
|
51
|
+
kind: 'blockscout',
|
|
52
|
+
url: 'https://turkscan.com',
|
|
53
|
+
txPage: 'https://turkscan.com/tx/${txHash}',
|
|
54
|
+
accountPage: 'https://turkscan.com/address/${accountAddress}'
|
|
55
|
+
}]
|
|
56
|
+
};
|
|
57
|
+
export default info;
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -241,6 +241,7 @@ const _tgrade = __importStar(require("./tgrade"));
|
|
|
241
241
|
const _thejaynetwork = __importStar(require("./thejaynetwork"));
|
|
242
242
|
const _thorchain = __importStar(require("./thorchain"));
|
|
243
243
|
const _titan = __importStar(require("./titan"));
|
|
244
|
+
const _turkchain = __importStar(require("./turkchain"));
|
|
244
245
|
const _umee = __importStar(require("./umee"));
|
|
245
246
|
const _unicorn = __importStar(require("./unicorn"));
|
|
246
247
|
const _unification = __importStar(require("./unification"));
|
|
@@ -476,6 +477,7 @@ const assetList = [
|
|
|
476
477
|
_thejaynetwork.assetList,
|
|
477
478
|
_thorchain.assetList,
|
|
478
479
|
_titan.assetList,
|
|
480
|
+
_turkchain.assetList,
|
|
479
481
|
_umee.assetList,
|
|
480
482
|
_unicorn.assetList,
|
|
481
483
|
_unification.assetList,
|
package/mainnet/chains.js
CHANGED
|
@@ -241,6 +241,7 @@ const _tgrade = __importStar(require("./tgrade"));
|
|
|
241
241
|
const _thejaynetwork = __importStar(require("./thejaynetwork"));
|
|
242
242
|
const _thorchain = __importStar(require("./thorchain"));
|
|
243
243
|
const _titan = __importStar(require("./titan"));
|
|
244
|
+
const _turkchain = __importStar(require("./turkchain"));
|
|
244
245
|
const _umee = __importStar(require("./umee"));
|
|
245
246
|
const _unicorn = __importStar(require("./unicorn"));
|
|
246
247
|
const _unification = __importStar(require("./unification"));
|
|
@@ -476,6 +477,7 @@ const chains = [
|
|
|
476
477
|
_thejaynetwork.chain,
|
|
477
478
|
_thorchain.chain,
|
|
478
479
|
_titan.chain,
|
|
480
|
+
_turkchain.chain,
|
|
479
481
|
_umee.chain,
|
|
480
482
|
_unicorn.chain,
|
|
481
483
|
_unification.chain,
|
|
@@ -1065,6 +1065,27 @@ const info = {
|
|
|
1065
1065
|
}
|
|
1066
1066
|
}],
|
|
1067
1067
|
coingeckoId: 'dragon-coin-2'
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
description: 'Nether is a tokenfactory token on the Cosmos Hub.',
|
|
1071
|
+
denomUnits: [{
|
|
1072
|
+
denom: 'factory/cosmos1wdja2gcsesyl07raq9jm3rcvu0sse5zkev0h8m/Nether',
|
|
1073
|
+
exponent: 0
|
|
1074
|
+
}, {
|
|
1075
|
+
denom: 'nthr',
|
|
1076
|
+
exponent: 6
|
|
1077
|
+
}],
|
|
1078
|
+
typeAsset: 'sdk.coin',
|
|
1079
|
+
base: 'factory/cosmos1wdja2gcsesyl07raq9jm3rcvu0sse5zkev0h8m/Nether',
|
|
1080
|
+
name: 'Nether',
|
|
1081
|
+
display: 'nthr',
|
|
1082
|
+
symbol: 'NTHR',
|
|
1083
|
+
images: [{
|
|
1084
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/nthr.png'
|
|
1085
|
+
}],
|
|
1086
|
+
logoURIs: {
|
|
1087
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/nthr.png'
|
|
1088
|
+
}
|
|
1068
1089
|
}
|
|
1069
1090
|
]
|
|
1070
1091
|
};
|
|
@@ -6,7 +6,7 @@ const info = {
|
|
|
6
6
|
assets: [
|
|
7
7
|
{
|
|
8
8
|
description: '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.',
|
|
9
|
-
extendedDescription: 'Dungeon Chain is a
|
|
9
|
+
extendedDescription: 'Dungeon Chain is a sovereign Cosmos SDK blockchain designed specifically for interchain gaming. Built with native IBC interoperability and CosmWasm support, Dungeon Chain empowers developers and players to participate in a seamless gaming ecosystem that bridges multiple blockchains. It ensures robust security, scalability, and interoperability across gaming projects. Dungeon Chain features an interchain gaming platform that allows games to interact across multiple blockchains, enabling shared assets, gameplay mechanics, and player data. With high transaction throughput and low latency, it provides scalability for gamers, ensuring a smooth experience even during peak usage. Additionally, its developer-friendly ecosystem includes tools, SDKs, and documentation to facilitate the creation and integration of games into the platform. Dungeon Chain\'s vision is to redefine how games interact with blockchain technology by creating a secure, scalable, and specialized environment for interchain games, unlocking new possibilities for player ownership, collaboration, and innovation in gaming.',
|
|
10
10
|
denomUnits: [{
|
|
11
11
|
denom: 'udgn',
|
|
12
12
|
exponent: 0
|
|
@@ -23,7 +23,7 @@ const info = {
|
|
|
23
23
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png'
|
|
24
24
|
},
|
|
25
25
|
socials: {
|
|
26
|
-
website: 'https://
|
|
26
|
+
website: 'https://dungeongames.io',
|
|
27
27
|
x: 'https://x.com/cryptodungeonma'
|
|
28
28
|
},
|
|
29
29
|
images: [{
|
package/mainnet/dungeon/chain.js
CHANGED
|
@@ -6,7 +6,7 @@ const info = {
|
|
|
6
6
|
status: 'live',
|
|
7
7
|
networkType: 'mainnet',
|
|
8
8
|
chainType: 'cosmos',
|
|
9
|
-
website: 'https://
|
|
9
|
+
website: 'https://dungeongames.io',
|
|
10
10
|
prettyName: 'Dungeon Chain',
|
|
11
11
|
chainId: 'dungeon-1',
|
|
12
12
|
bech32Prefix: 'dungeon',
|
|
@@ -22,6 +22,10 @@ const info = {
|
|
|
22
22
|
},
|
|
23
23
|
apis: {
|
|
24
24
|
rpc: [
|
|
25
|
+
{
|
|
26
|
+
address: 'https://rpc.dungeongames.io',
|
|
27
|
+
provider: 'Dungeon Games'
|
|
28
|
+
},
|
|
25
29
|
{
|
|
26
30
|
address: 'https://dungeon-wallet.rpc.quasarstaking.ai',
|
|
27
31
|
provider: 'Quasar'
|
|
@@ -37,13 +41,13 @@ const info = {
|
|
|
37
41
|
{
|
|
38
42
|
address: 'https://rpc.dungeon.chaintools.tech',
|
|
39
43
|
provider: 'ChainTools'
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
address: 'https://rpc.dungeongames.io',
|
|
43
|
-
provider: 'Dungeon Games'
|
|
44
44
|
}
|
|
45
45
|
],
|
|
46
46
|
rest: [
|
|
47
|
+
{
|
|
48
|
+
address: 'https://api.dungeongames.io',
|
|
49
|
+
provider: 'Dungeon Games'
|
|
50
|
+
},
|
|
47
51
|
{
|
|
48
52
|
address: 'https://dungeon-wallet.api.quasarstaking.ai',
|
|
49
53
|
provider: 'Quasar'
|
|
@@ -63,10 +67,6 @@ const info = {
|
|
|
63
67
|
{
|
|
64
68
|
address: 'https://api.dungeon.chaintools.tech',
|
|
65
69
|
provider: 'ChainTools'
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
address: 'https://api.dungeongames.io',
|
|
69
|
-
provider: 'Dungeon Games'
|
|
70
70
|
}
|
|
71
71
|
],
|
|
72
72
|
grpc: [{
|
|
@@ -78,12 +78,6 @@ const info = {
|
|
|
78
78
|
}]
|
|
79
79
|
},
|
|
80
80
|
explorers: [
|
|
81
|
-
{
|
|
82
|
-
kind: 'Ping.Pub',
|
|
83
|
-
url: 'https://ping.pub/Dungeonchain',
|
|
84
|
-
txPage: 'https://ping.pub/Dungeonchain/tx/${txHash}',
|
|
85
|
-
accountPage: 'https://ping.pub/Dungeonchain/account/${accountAddress}'
|
|
86
|
-
},
|
|
87
81
|
{
|
|
88
82
|
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
89
83
|
url: 'https://explorer.whenmoonwhenlambo.money/dungeon',
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -156,6 +156,7 @@ const _pryzm = __importStar(require("./pryzm"));
|
|
|
156
156
|
const _pundix = __importStar(require("./pundix"));
|
|
157
157
|
const _pylons = __importStar(require("./pylons"));
|
|
158
158
|
const _qfs = __importStar(require("./qfs"));
|
|
159
|
+
const _qie = __importStar(require("./qie"));
|
|
159
160
|
const _quasar = __importStar(require("./quasar"));
|
|
160
161
|
const _quicksilver = __importStar(require("./quicksilver"));
|
|
161
162
|
const _qwoyn = __importStar(require("./qwoyn"));
|
|
@@ -335,6 +336,7 @@ const ibcData = [
|
|
|
335
336
|
..._pundix.ibcData,
|
|
336
337
|
..._pylons.ibcData,
|
|
337
338
|
..._qfs.ibcData,
|
|
339
|
+
..._qie.ibcData,
|
|
338
340
|
..._quasar.ibcData,
|
|
339
341
|
..._quicksilver.ibcData,
|
|
340
342
|
..._qwoyn.ibcData,
|
|
@@ -4215,6 +4215,37 @@ const info = [
|
|
|
4215
4215
|
}
|
|
4216
4216
|
}]
|
|
4217
4217
|
},
|
|
4218
|
+
{
|
|
4219
|
+
$schema: '../ibc_data.schema.json',
|
|
4220
|
+
chain1: {
|
|
4221
|
+
chainName: 'osmosis',
|
|
4222
|
+
chainId: 'osmosis-1',
|
|
4223
|
+
clientId: '07-tendermint-3681',
|
|
4224
|
+
connectionId: 'connection-11041'
|
|
4225
|
+
},
|
|
4226
|
+
chain2: {
|
|
4227
|
+
chainName: 'qie',
|
|
4228
|
+
chainId: 'qie_1990-1',
|
|
4229
|
+
clientId: '07-tendermint-2',
|
|
4230
|
+
connectionId: 'connection-0'
|
|
4231
|
+
},
|
|
4232
|
+
channels: [{
|
|
4233
|
+
chain1: {
|
|
4234
|
+
channelId: 'channel-109956',
|
|
4235
|
+
portId: 'transfer'
|
|
4236
|
+
},
|
|
4237
|
+
chain2: {
|
|
4238
|
+
channelId: 'channel-0',
|
|
4239
|
+
portId: 'transfer'
|
|
4240
|
+
},
|
|
4241
|
+
ordering: 'unordered',
|
|
4242
|
+
version: 'ics20-1',
|
|
4243
|
+
tags: {
|
|
4244
|
+
preferred: true,
|
|
4245
|
+
status: 'ACTIVE'
|
|
4246
|
+
}
|
|
4247
|
+
}]
|
|
4248
|
+
},
|
|
4218
4249
|
{
|
|
4219
4250
|
$schema: '../ibc_data.schema.json',
|
|
4220
4251
|
chain1: {
|
package/mainnet/qie/chain.js
CHANGED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'osmosis',
|
|
7
|
+
chainId: 'osmosis-1',
|
|
8
|
+
clientId: '07-tendermint-3681',
|
|
9
|
+
connectionId: 'connection-11041'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'qie',
|
|
13
|
+
chainId: 'qie_1990-1',
|
|
14
|
+
clientId: '07-tendermint-2',
|
|
15
|
+
connectionId: 'connection-0'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-109956',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-0',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true,
|
|
30
|
+
status: 'ACTIVE'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}];
|
|
34
|
+
exports.default = info;
|
package/mainnet/qie/index.d.ts
CHANGED
package/mainnet/qie/index.js
CHANGED
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.chain = exports.assetList = void 0;
|
|
6
|
+
exports.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
7
|
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
9
10
|
exports.assetList = asset_list_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'turkchain',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'Native token of Turkchain',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'lira',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'TURK',
|
|
13
|
+
exponent: 18
|
|
14
|
+
}],
|
|
15
|
+
base: 'lira',
|
|
16
|
+
name: 'TC',
|
|
17
|
+
display: 'TURK',
|
|
18
|
+
symbol: 'TURK',
|
|
19
|
+
logoURIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/turkchain/images/turkchain.png'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/turkchain/images/turkchain.png'
|
|
24
|
+
}],
|
|
25
|
+
typeAsset: 'sdk.coin'
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
exports.default = info;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'turkchain',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
prettyName: 'Turkchain',
|
|
10
|
+
chainId: '1919',
|
|
11
|
+
description: 'Turkchain is a Cosmos SDK and EVM compatible blockchain focused on interoperability, DeFi and Web3 infrastructure.',
|
|
12
|
+
website: 'https://turkscan.com',
|
|
13
|
+
bech32Prefix: 'turk',
|
|
14
|
+
daemonName: 'turkchaind',
|
|
15
|
+
nodeHome: '$HOME/.turkchain',
|
|
16
|
+
slip44: 60,
|
|
17
|
+
keyAlgos: ['ethsecp256k1'],
|
|
18
|
+
extraCodecs: ['ethermint'],
|
|
19
|
+
fees: {
|
|
20
|
+
feeTokens: [{
|
|
21
|
+
denom: 'lira',
|
|
22
|
+
lowGasPrice: 0.01,
|
|
23
|
+
averageGasPrice: 0.025,
|
|
24
|
+
highGasPrice: 0.04
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
staking: {
|
|
28
|
+
stakingTokens: [{
|
|
29
|
+
denom: 'lira'
|
|
30
|
+
}]
|
|
31
|
+
},
|
|
32
|
+
logoURIs: {
|
|
33
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/turkchain/images/turkchain.png'
|
|
34
|
+
},
|
|
35
|
+
images: [{
|
|
36
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/turkchain/images/turkchain.png'
|
|
37
|
+
}],
|
|
38
|
+
apis: {
|
|
39
|
+
rpc: [{
|
|
40
|
+
address: 'https://node.turkscan.com',
|
|
41
|
+
provider: 'turkchain'
|
|
42
|
+
}],
|
|
43
|
+
rest: [{
|
|
44
|
+
address: 'https://api.turkscan.com',
|
|
45
|
+
provider: 'turkchain'
|
|
46
|
+
}],
|
|
47
|
+
evmHttpJsonrpc: [{
|
|
48
|
+
address: 'https://rpc.turkscan.com',
|
|
49
|
+
provider: 'turkchain'
|
|
50
|
+
}]
|
|
51
|
+
},
|
|
52
|
+
explorers: [{
|
|
53
|
+
kind: 'blockscout',
|
|
54
|
+
url: 'https://turkscan.com',
|
|
55
|
+
txPage: 'https://turkscan.com/tx/${txHash}',
|
|
56
|
+
accountPage: 'https://turkscan.com/address/${accountAddress}'
|
|
57
|
+
}]
|
|
58
|
+
};
|
|
59
|
+
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.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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.199",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@chain-registry/types": "^2.0.
|
|
32
|
+
"@chain-registry/types": "^2.0.199"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "f09c21069cbe9070037c84d8c2198ed8a8900224"
|
|
43
43
|
}
|