chain-registry 2.0.170 → 2.0.172
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 +4 -0
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/dungeon/chain.js +14 -0
- package/esm/mainnet/lumiwaveprotocol/asset-list.js +28 -0
- package/esm/mainnet/lumiwaveprotocol/chain.js +56 -0
- package/esm/mainnet/lumiwaveprotocol/index.js +4 -0
- package/esm/mainnet/terra/asset-list.js +27 -0
- package/esm/mainnet/thejaynetwork/asset-list.js +26 -0
- package/esm/mainnet/thejaynetwork/chain.js +91 -0
- package/esm/mainnet/thejaynetwork/index.js +4 -0
- package/esm/testnet/asset-lists.js +4 -0
- package/esm/testnet/chains.js +4 -0
- package/esm/testnet/lumiwaveprotocoltestnet/asset-list.js +40 -0
- package/esm/testnet/lumiwaveprotocoltestnet/chain.js +59 -0
- package/esm/testnet/lumiwaveprotocoltestnet/index.js +4 -0
- package/esm/testnet/provenancetestnet/asset-list.js +41 -0
- package/esm/testnet/provenancetestnet/chain.js +88 -0
- package/esm/testnet/provenancetestnet/index.js +4 -0
- package/mainnet/asset-lists.js +4 -0
- package/mainnet/chains.js +4 -0
- package/mainnet/dungeon/chain.js +14 -0
- package/mainnet/lumiwaveprotocol/asset-list.d.ts +3 -0
- package/mainnet/lumiwaveprotocol/asset-list.js +30 -0
- package/mainnet/lumiwaveprotocol/chain.d.ts +3 -0
- package/mainnet/lumiwaveprotocol/chain.js +58 -0
- package/mainnet/lumiwaveprotocol/index.d.ts +2 -0
- package/mainnet/lumiwaveprotocol/index.js +10 -0
- package/mainnet/terra/asset-list.js +27 -0
- package/mainnet/thejaynetwork/asset-list.d.ts +3 -0
- package/mainnet/thejaynetwork/asset-list.js +28 -0
- package/mainnet/thejaynetwork/chain.d.ts +3 -0
- package/mainnet/thejaynetwork/chain.js +93 -0
- package/mainnet/thejaynetwork/index.d.ts +2 -0
- package/mainnet/thejaynetwork/index.js +10 -0
- package/package.json +3 -3
- package/testnet/asset-lists.js +4 -0
- package/testnet/chains.js +4 -0
- package/testnet/lumiwaveprotocoltestnet/asset-list.d.ts +3 -0
- package/testnet/lumiwaveprotocoltestnet/asset-list.js +42 -0
- package/testnet/lumiwaveprotocoltestnet/chain.d.ts +3 -0
- package/testnet/lumiwaveprotocoltestnet/chain.js +61 -0
- package/testnet/lumiwaveprotocoltestnet/index.d.ts +2 -0
- package/testnet/lumiwaveprotocoltestnet/index.js +10 -0
- package/testnet/provenancetestnet/asset-list.d.ts +3 -0
- package/testnet/provenancetestnet/asset-list.js +43 -0
- package/testnet/provenancetestnet/chain.d.ts +3 -0
- package/testnet/provenancetestnet/chain.js +90 -0
- package/testnet/provenancetestnet/index.d.ts +2 -0
- package/testnet/provenancetestnet/index.js +10 -0
|
@@ -120,6 +120,7 @@ import * as _lorenzo from './lorenzo';
|
|
|
120
120
|
import * as _loyal from './loyal';
|
|
121
121
|
import * as _lumen from './lumen';
|
|
122
122
|
import * as _lumera from './lumera';
|
|
123
|
+
import * as _lumiwaveprotocol from './lumiwaveprotocol';
|
|
123
124
|
import * as _lumnetwork from './lumnetwork';
|
|
124
125
|
import * as _mande from './mande';
|
|
125
126
|
import * as _manifest from './manifest';
|
|
@@ -209,6 +210,7 @@ import * as _terpnetwork from './terpnetwork';
|
|
|
209
210
|
import * as _terra from './terra';
|
|
210
211
|
import * as _terra2 from './terra2';
|
|
211
212
|
import * as _tgrade from './tgrade';
|
|
213
|
+
import * as _thejaynetwork from './thejaynetwork';
|
|
212
214
|
import * as _thorchain from './thorchain';
|
|
213
215
|
import * as _titan from './titan';
|
|
214
216
|
import * as _umee from './umee';
|
|
@@ -349,6 +351,7 @@ const assetList = [
|
|
|
349
351
|
_loyal.assetList,
|
|
350
352
|
_lumen.assetList,
|
|
351
353
|
_lumera.assetList,
|
|
354
|
+
_lumiwaveprotocol.assetList,
|
|
352
355
|
_lumnetwork.assetList,
|
|
353
356
|
_mande.assetList,
|
|
354
357
|
_manifest.assetList,
|
|
@@ -438,6 +441,7 @@ const assetList = [
|
|
|
438
441
|
_terra.assetList,
|
|
439
442
|
_terra2.assetList,
|
|
440
443
|
_tgrade.assetList,
|
|
444
|
+
_thejaynetwork.assetList,
|
|
441
445
|
_thorchain.assetList,
|
|
442
446
|
_titan.assetList,
|
|
443
447
|
_umee.assetList,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -120,6 +120,7 @@ import * as _lorenzo from './lorenzo';
|
|
|
120
120
|
import * as _loyal from './loyal';
|
|
121
121
|
import * as _lumen from './lumen';
|
|
122
122
|
import * as _lumera from './lumera';
|
|
123
|
+
import * as _lumiwaveprotocol from './lumiwaveprotocol';
|
|
123
124
|
import * as _lumnetwork from './lumnetwork';
|
|
124
125
|
import * as _mande from './mande';
|
|
125
126
|
import * as _manifest from './manifest';
|
|
@@ -209,6 +210,7 @@ import * as _terpnetwork from './terpnetwork';
|
|
|
209
210
|
import * as _terra from './terra';
|
|
210
211
|
import * as _terra2 from './terra2';
|
|
211
212
|
import * as _tgrade from './tgrade';
|
|
213
|
+
import * as _thejaynetwork from './thejaynetwork';
|
|
212
214
|
import * as _thorchain from './thorchain';
|
|
213
215
|
import * as _titan from './titan';
|
|
214
216
|
import * as _umee from './umee';
|
|
@@ -349,6 +351,7 @@ const chains = [
|
|
|
349
351
|
_loyal.chain,
|
|
350
352
|
_lumen.chain,
|
|
351
353
|
_lumera.chain,
|
|
354
|
+
_lumiwaveprotocol.chain,
|
|
352
355
|
_lumnetwork.chain,
|
|
353
356
|
_mande.chain,
|
|
354
357
|
_manifest.chain,
|
|
@@ -438,6 +441,7 @@ const chains = [
|
|
|
438
441
|
_terra.chain,
|
|
439
442
|
_terra2.chain,
|
|
440
443
|
_tgrade.chain,
|
|
444
|
+
_thejaynetwork.chain,
|
|
441
445
|
_thorchain.chain,
|
|
442
446
|
_titan.chain,
|
|
443
447
|
_umee.chain,
|
|
@@ -35,6 +35,10 @@ const info = {
|
|
|
35
35
|
{
|
|
36
36
|
address: 'https://rpc.dungeon.chaintools.tech',
|
|
37
37
|
provider: 'ChainTools'
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
address: 'https://rpc.dungeongames.io',
|
|
41
|
+
provider: 'Dungeon Games'
|
|
38
42
|
}
|
|
39
43
|
],
|
|
40
44
|
rest: [
|
|
@@ -57,6 +61,10 @@ const info = {
|
|
|
57
61
|
{
|
|
58
62
|
address: 'https://api.dungeon.chaintools.tech',
|
|
59
63
|
provider: 'ChainTools'
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
address: 'https://api.dungeongames.io',
|
|
67
|
+
provider: 'Dungeon Games'
|
|
60
68
|
}
|
|
61
69
|
],
|
|
62
70
|
grpc: [{
|
|
@@ -85,6 +93,12 @@ const info = {
|
|
|
85
93
|
url: 'https://explorer.chaintools.tech/Dungeon',
|
|
86
94
|
txPage: 'https://explorer.chaintools.tech/Dungeon/tx/${txHash}',
|
|
87
95
|
accountPage: 'https://explorer.chaintools.tech/Dungeon/account/${accountAddress}'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
kind: 'Dungeon Games',
|
|
99
|
+
url: 'https://explorer.dungeongames.io',
|
|
100
|
+
txPage: 'https://explorer.dungeongames.io/tx/${txHash}',
|
|
101
|
+
accountPage: 'https://explorer.dungeongames.io/account/${accountAddress}'
|
|
88
102
|
}
|
|
89
103
|
],
|
|
90
104
|
logoURIs: {
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'lumiwaveprotocol',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of LumiWave Protocol.',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'ulwp',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'LWP',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
base: 'ulwp',
|
|
14
|
+
name: 'LumiWave Protocol',
|
|
15
|
+
display: 'LWP',
|
|
16
|
+
symbol: 'LWP',
|
|
17
|
+
typeAsset: 'sdk.coin',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.svg'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.svg'
|
|
25
|
+
}]
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
export default info;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'lumiwaveprotocol',
|
|
4
|
+
prettyName: 'LumiWave Protocol',
|
|
5
|
+
chainId: 'lumiwaveprotocol',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
bech32Prefix: 'lumi',
|
|
10
|
+
daemonName: 'lumiwave-protocold',
|
|
11
|
+
nodeHome: '$HOME/.lumiwave-protocol',
|
|
12
|
+
slip44: 118,
|
|
13
|
+
fees: {
|
|
14
|
+
feeTokens: [{
|
|
15
|
+
denom: 'ulwp',
|
|
16
|
+
fixedMinGasPrice: 0.005
|
|
17
|
+
}]
|
|
18
|
+
},
|
|
19
|
+
staking: {
|
|
20
|
+
stakingTokens: [{
|
|
21
|
+
denom: 'ulwp'
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
codebase: {
|
|
25
|
+
gitRepo: 'https://github.com/LumiWave/lumiwave-protocol',
|
|
26
|
+
genesis: {
|
|
27
|
+
genesisUrl: 'https://lwp-mainnet-rpc.lumiwavelab.com/genesis'
|
|
28
|
+
},
|
|
29
|
+
recommendedVersion: 'v0.0.11',
|
|
30
|
+
compatibleVersions: ['v0.0.11']
|
|
31
|
+
},
|
|
32
|
+
logoURIs: {
|
|
33
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.png',
|
|
34
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.svg'
|
|
35
|
+
},
|
|
36
|
+
images: [{
|
|
37
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.png',
|
|
38
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.svg'
|
|
39
|
+
}],
|
|
40
|
+
apis: {
|
|
41
|
+
rpc: [{
|
|
42
|
+
address: 'https://lwp-mainnet-rpc.lumiwavelab.com',
|
|
43
|
+
provider: 'lwp-mainnet'
|
|
44
|
+
}],
|
|
45
|
+
rest: [{
|
|
46
|
+
address: 'https://lwp-mainnet-api.lumiwavelab.com',
|
|
47
|
+
provider: 'lwp-mainnet'
|
|
48
|
+
}]
|
|
49
|
+
},
|
|
50
|
+
explorers: [{
|
|
51
|
+
kind: 'ping.pub',
|
|
52
|
+
url: 'https://ping.pub/LumiWave',
|
|
53
|
+
txPage: 'https://ping.pub/LumiWave/tx/${txHash}'
|
|
54
|
+
}]
|
|
55
|
+
};
|
|
56
|
+
export default info;
|
|
@@ -4963,6 +4963,33 @@ const info = {
|
|
|
4963
4963
|
images: [{
|
|
4964
4964
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/GRDX.png'
|
|
4965
4965
|
}]
|
|
4966
|
+
},
|
|
4967
|
+
{
|
|
4968
|
+
description: 'Cookie DO is a next-gen memecoin powering a full gaming + metaverse ecosystem. It fuels DO Gaming (play-to-earn tournaments), DO DAO governance, deep on-chain trading pools, and real-asset tokens like GG (DO Gold) and SG (DO Silver). Backed by Artemis staking, the Food Token humanitarian project, and multi-chain Cookie on LUNC, Solana, and BSC, Cookie DO creates nonstop cross-chain arbitrage frenzy — fun, utility, and yield in one token.',
|
|
4969
|
+
extendedDescription: 'Cookie DO is a next-gen memecoin powering a full gaming + metaverse ecosystem. It fuels DO Gaming (play-to-earn tournaments), DO DAO governance, deep on-chain trading pools, and real-asset tokens like GG (DO Gold) and SG (DO Silver). Backed by Artemis staking, the Food Token humanitarian project, and multi-chain Cookie on LUNC, Solana, and BSC, Cookie DO creates nonstop cross-chain arbitrage frenzy — fun, utility, and yield in one token.',
|
|
4970
|
+
socials: {
|
|
4971
|
+
website: 'https://cookie-verse.io/',
|
|
4972
|
+
x: 'https://x.com/LUNC_Cookies'
|
|
4973
|
+
},
|
|
4974
|
+
typeAsset: 'cw20',
|
|
4975
|
+
address: 'terra15p8su45k45axng8ue59rl6zph4at27s49u3agr6uqrx3dhcxpg3qt0ekdt',
|
|
4976
|
+
denomUnits: [{
|
|
4977
|
+
denom: 'cw20:terra15p8su45k45axng8ue59rl6zph4at27s49u3agr6uqrx3dhcxpg3qt0ekdt',
|
|
4978
|
+
exponent: 0
|
|
4979
|
+
}, {
|
|
4980
|
+
denom: 'cookie',
|
|
4981
|
+
exponent: 6
|
|
4982
|
+
}],
|
|
4983
|
+
base: 'cw20:terra15p8su45k45axng8ue59rl6zph4at27s49u3agr6uqrx3dhcxpg3qt0ekdt',
|
|
4984
|
+
name: 'cookie',
|
|
4985
|
+
display: 'cookie',
|
|
4986
|
+
symbol: 'cookie',
|
|
4987
|
+
logoURIs: {
|
|
4988
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/do.png'
|
|
4989
|
+
},
|
|
4990
|
+
images: [{
|
|
4991
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/do.png'
|
|
4992
|
+
}]
|
|
4966
4993
|
}
|
|
4967
4994
|
]
|
|
4968
4995
|
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'thejaynetwork',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native staking and governance token of The Jay Network.',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'ujay',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'jay',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
typeAsset: 'sdk.coin',
|
|
14
|
+
base: 'ujay',
|
|
15
|
+
name: 'Jay Token',
|
|
16
|
+
display: 'jay',
|
|
17
|
+
symbol: 'JAY',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/thejaynetwork.png'
|
|
20
|
+
},
|
|
21
|
+
images: [{
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/thejaynetwork.png'
|
|
23
|
+
}]
|
|
24
|
+
}]
|
|
25
|
+
};
|
|
26
|
+
export default info;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'thejaynetwork',
|
|
4
|
+
chainType: 'cosmos',
|
|
5
|
+
chainId: 'thejaynetwork',
|
|
6
|
+
prettyName: 'The Jay Network',
|
|
7
|
+
status: 'live',
|
|
8
|
+
networkType: 'mainnet',
|
|
9
|
+
website: 'https://jaynwk.gt.tc',
|
|
10
|
+
bech32Prefix: 'yjay',
|
|
11
|
+
daemonName: 'jaynd',
|
|
12
|
+
nodeHome: '$HOME/.jayn',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'ujay',
|
|
18
|
+
fixedMinGasPrice: 0.0025,
|
|
19
|
+
lowGasPrice: 0.0025,
|
|
20
|
+
averageGasPrice: 0.025,
|
|
21
|
+
highGasPrice: 0.04
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'ujay'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
gitRepo: 'https://github.com/bbtccore/thejaynetwork',
|
|
31
|
+
recommendedVersion: 'v1.0.0',
|
|
32
|
+
compatibleVersions: ['v1.0.0'],
|
|
33
|
+
consensus: {
|
|
34
|
+
type: 'cometbft',
|
|
35
|
+
version: 'v0.38.19'
|
|
36
|
+
},
|
|
37
|
+
sdk: {
|
|
38
|
+
type: 'cosmos',
|
|
39
|
+
version: 'v0.53.6'
|
|
40
|
+
},
|
|
41
|
+
ibc: {
|
|
42
|
+
type: 'go',
|
|
43
|
+
version: 'v10.4.0'
|
|
44
|
+
},
|
|
45
|
+
binaries: {
|
|
46
|
+
"linux/amd64": 'https://github.com/bbtccore/thejaynetwork/releases/download/v1.0.0/jaynd-linux-amd64',
|
|
47
|
+
"linux/arm64": 'https://github.com/bbtccore/thejaynetwork/releases/download/v1.0.0/jaynd-linux-arm64'
|
|
48
|
+
},
|
|
49
|
+
genesis: {
|
|
50
|
+
name: 'v1',
|
|
51
|
+
genesisUrl: 'https://raw.githubusercontent.com/bbtccore/thejaynetwork/master/genesis/genesis.json'
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
logoURIs: {
|
|
55
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/thejaynetwork.png'
|
|
56
|
+
},
|
|
57
|
+
description: 'The Jay Network is a Cosmos SDK-based blockchain providing fast, secure, and scalable infrastructure for decentralized applications.',
|
|
58
|
+
apis: {
|
|
59
|
+
rpc: [{
|
|
60
|
+
address: 'https://jayscan.duckdns.org/rpc',
|
|
61
|
+
provider: 'Jay Network'
|
|
62
|
+
}, {
|
|
63
|
+
address: 'http://34.67.101.201:26657',
|
|
64
|
+
provider: 'Jay Network (direct)'
|
|
65
|
+
}],
|
|
66
|
+
rest: [{
|
|
67
|
+
address: 'https://jayscan.duckdns.org/api',
|
|
68
|
+
provider: 'Jay Network'
|
|
69
|
+
}, {
|
|
70
|
+
address: 'http://34.67.101.201:1317',
|
|
71
|
+
provider: 'Jay Network (direct)'
|
|
72
|
+
}],
|
|
73
|
+
grpc: [{
|
|
74
|
+
address: '34.67.101.201:9090',
|
|
75
|
+
provider: 'Jay Network'
|
|
76
|
+
}, {
|
|
77
|
+
address: '34.171.203.84:9090',
|
|
78
|
+
provider: 'Jay Network'
|
|
79
|
+
}]
|
|
80
|
+
},
|
|
81
|
+
explorers: [{
|
|
82
|
+
kind: 'Jayscan',
|
|
83
|
+
url: 'https://jayscan.duckdns.org',
|
|
84
|
+
txPage: 'https://jayscan.duckdns.org/?tx=${txHash}',
|
|
85
|
+
accountPage: 'https://jayscan.duckdns.org/?account=${accountAddress}'
|
|
86
|
+
}],
|
|
87
|
+
images: [{
|
|
88
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thejaynetwork/images/thejaynetwork.png'
|
|
89
|
+
}]
|
|
90
|
+
};
|
|
91
|
+
export default info;
|
|
@@ -68,6 +68,7 @@ import * as _likecointestnet from './likecointestnet';
|
|
|
68
68
|
import * as _lombardledgertestnet from './lombardledgertestnet';
|
|
69
69
|
import * as _lumenxtestnet from './lumenxtestnet';
|
|
70
70
|
import * as _lumeratestnet from './lumeratestnet';
|
|
71
|
+
import * as _lumiwaveprotocoltestnet from './lumiwaveprotocoltestnet';
|
|
71
72
|
import * as _manifesttestnet from './manifesttestnet';
|
|
72
73
|
import * as _mantrachaintestnet2 from './mantrachaintestnet2';
|
|
73
74
|
import * as _marstestnet from './marstestnet';
|
|
@@ -93,6 +94,7 @@ import * as _persistencetestnet from './persistencetestnet';
|
|
|
93
94
|
import * as _persistencetestnet2 from './persistencetestnet2';
|
|
94
95
|
import * as _planqtestnet from './planqtestnet';
|
|
95
96
|
import * as _pockettestnet from './pockettestnet';
|
|
97
|
+
import * as _provenancetestnet from './provenancetestnet';
|
|
96
98
|
import * as _pryzmtestnet from './pryzmtestnet';
|
|
97
99
|
import * as _quasartestnet from './quasartestnet';
|
|
98
100
|
import * as _qubeticstestnet from './qubeticstestnet';
|
|
@@ -211,6 +213,7 @@ const assetList = [
|
|
|
211
213
|
_lombardledgertestnet.assetList,
|
|
212
214
|
_lumenxtestnet.assetList,
|
|
213
215
|
_lumeratestnet.assetList,
|
|
216
|
+
_lumiwaveprotocoltestnet.assetList,
|
|
214
217
|
_manifesttestnet.assetList,
|
|
215
218
|
_mantrachaintestnet2.assetList,
|
|
216
219
|
_marstestnet.assetList,
|
|
@@ -236,6 +239,7 @@ const assetList = [
|
|
|
236
239
|
_persistencetestnet2.assetList,
|
|
237
240
|
_planqtestnet.assetList,
|
|
238
241
|
_pockettestnet.assetList,
|
|
242
|
+
_provenancetestnet.assetList,
|
|
239
243
|
_pryzmtestnet.assetList,
|
|
240
244
|
_quasartestnet.assetList,
|
|
241
245
|
_qubeticstestnet.assetList,
|
package/esm/testnet/chains.js
CHANGED
|
@@ -68,6 +68,7 @@ import * as _likecointestnet from './likecointestnet';
|
|
|
68
68
|
import * as _lombardledgertestnet from './lombardledgertestnet';
|
|
69
69
|
import * as _lumenxtestnet from './lumenxtestnet';
|
|
70
70
|
import * as _lumeratestnet from './lumeratestnet';
|
|
71
|
+
import * as _lumiwaveprotocoltestnet from './lumiwaveprotocoltestnet';
|
|
71
72
|
import * as _manifesttestnet from './manifesttestnet';
|
|
72
73
|
import * as _mantrachaintestnet2 from './mantrachaintestnet2';
|
|
73
74
|
import * as _marstestnet from './marstestnet';
|
|
@@ -93,6 +94,7 @@ import * as _persistencetestnet from './persistencetestnet';
|
|
|
93
94
|
import * as _persistencetestnet2 from './persistencetestnet2';
|
|
94
95
|
import * as _planqtestnet from './planqtestnet';
|
|
95
96
|
import * as _pockettestnet from './pockettestnet';
|
|
97
|
+
import * as _provenancetestnet from './provenancetestnet';
|
|
96
98
|
import * as _pryzmtestnet from './pryzmtestnet';
|
|
97
99
|
import * as _quasartestnet from './quasartestnet';
|
|
98
100
|
import * as _qubeticstestnet from './qubeticstestnet';
|
|
@@ -211,6 +213,7 @@ const chains = [
|
|
|
211
213
|
_lombardledgertestnet.chain,
|
|
212
214
|
_lumenxtestnet.chain,
|
|
213
215
|
_lumeratestnet.chain,
|
|
216
|
+
_lumiwaveprotocoltestnet.chain,
|
|
214
217
|
_manifesttestnet.chain,
|
|
215
218
|
_mantrachaintestnet2.chain,
|
|
216
219
|
_marstestnet.chain,
|
|
@@ -236,6 +239,7 @@ const chains = [
|
|
|
236
239
|
_persistencetestnet2.chain,
|
|
237
240
|
_planqtestnet.chain,
|
|
238
241
|
_pockettestnet.chain,
|
|
242
|
+
_provenancetestnet.chain,
|
|
239
243
|
_pryzmtestnet.chain,
|
|
240
244
|
_quasartestnet.chain,
|
|
241
245
|
_qubeticstestnet.chain,
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chainName: 'lumiwaveprotocoltestnet',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of LumiWave Protocol.',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'ulwp',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'LWP',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
base: 'ulwp',
|
|
14
|
+
name: 'LumiWave Protocol',
|
|
15
|
+
display: 'LWP',
|
|
16
|
+
symbol: 'LWP',
|
|
17
|
+
typeAsset: 'sdk.coin',
|
|
18
|
+
traces: [{
|
|
19
|
+
type: 'test-mintage',
|
|
20
|
+
counterparty: {
|
|
21
|
+
chainName: 'lumiwaveprotocol',
|
|
22
|
+
baseDenom: 'ulwp'
|
|
23
|
+
},
|
|
24
|
+
provider: 'LumiWave Protocol'
|
|
25
|
+
}],
|
|
26
|
+
logoURIs: {
|
|
27
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.png',
|
|
28
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.svg'
|
|
29
|
+
},
|
|
30
|
+
images: [{
|
|
31
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.png',
|
|
32
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.svg',
|
|
33
|
+
imageSync: {
|
|
34
|
+
chainName: 'lumiwaveprotocol',
|
|
35
|
+
baseDenom: 'ulwp'
|
|
36
|
+
}
|
|
37
|
+
}]
|
|
38
|
+
}]
|
|
39
|
+
};
|
|
40
|
+
export default info;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chainName: 'lumiwaveprotocoltestnet',
|
|
4
|
+
prettyName: 'LumiWave Protocol Testnet',
|
|
5
|
+
chainId: 'lumiwaveprotocol-testnet',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'testnet',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
bech32Prefix: 'lumi',
|
|
10
|
+
daemonName: 'lumiwave-protocold',
|
|
11
|
+
nodeHome: '$HOME/.lumiwave-protocol',
|
|
12
|
+
slip44: 118,
|
|
13
|
+
fees: {
|
|
14
|
+
feeTokens: [{
|
|
15
|
+
denom: 'ulwp',
|
|
16
|
+
fixedMinGasPrice: 0.005
|
|
17
|
+
}]
|
|
18
|
+
},
|
|
19
|
+
staking: {
|
|
20
|
+
stakingTokens: [{
|
|
21
|
+
denom: 'ulwp'
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
codebase: {
|
|
25
|
+
gitRepo: 'https://github.com/LumiWave/lumiwave-protocol',
|
|
26
|
+
genesis: {
|
|
27
|
+
genesisUrl: 'https://lwp-testnet.lumiwavelab.com/tendermint/genesis'
|
|
28
|
+
},
|
|
29
|
+
recommendedVersion: 'v0.0.11',
|
|
30
|
+
compatibleVersions: ['v0.0.11']
|
|
31
|
+
},
|
|
32
|
+
logoURIs: {
|
|
33
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.png',
|
|
34
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.svg'
|
|
35
|
+
},
|
|
36
|
+
images: [{
|
|
37
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.png',
|
|
38
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumiwaveprotocol/images/lumiwave.svg',
|
|
39
|
+
imageSync: {
|
|
40
|
+
chainName: 'lumiwaveprotocol'
|
|
41
|
+
}
|
|
42
|
+
}],
|
|
43
|
+
apis: {
|
|
44
|
+
rpc: [{
|
|
45
|
+
address: 'https://lwp-testnet.lumiwavelab.com/tendermint',
|
|
46
|
+
provider: 'pdx-validator'
|
|
47
|
+
}],
|
|
48
|
+
rest: [{
|
|
49
|
+
address: 'https://lwp-testnet.lumiwavelab.com',
|
|
50
|
+
provider: 'pdx-validator'
|
|
51
|
+
}]
|
|
52
|
+
},
|
|
53
|
+
explorers: [{
|
|
54
|
+
kind: 'ping.pub',
|
|
55
|
+
url: 'https://testnet.ping.pub/LumiWave',
|
|
56
|
+
txPage: 'https://testnet.ping.pub/LumiWave/tx/${txHash}'
|
|
57
|
+
}]
|
|
58
|
+
};
|
|
59
|
+
export default info;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chainName: 'provenancetestnet',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'Hash is the staking token of the Provenance Blockchain',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'nhash',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'hash',
|
|
11
|
+
exponent: 9
|
|
12
|
+
}],
|
|
13
|
+
base: 'nhash',
|
|
14
|
+
name: 'Hash',
|
|
15
|
+
display: 'hash',
|
|
16
|
+
symbol: 'HASH',
|
|
17
|
+
traces: [{
|
|
18
|
+
type: 'test-mintage',
|
|
19
|
+
counterparty: {
|
|
20
|
+
chainName: 'provenance',
|
|
21
|
+
baseDenom: 'nhash'
|
|
22
|
+
},
|
|
23
|
+
provider: 'Provenance'
|
|
24
|
+
}],
|
|
25
|
+
logoURIs: {
|
|
26
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png',
|
|
27
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg'
|
|
28
|
+
},
|
|
29
|
+
images: [{
|
|
30
|
+
imageSync: {
|
|
31
|
+
chainName: 'provenance',
|
|
32
|
+
baseDenom: 'nhash'
|
|
33
|
+
},
|
|
34
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png',
|
|
35
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg'
|
|
36
|
+
}],
|
|
37
|
+
typeAsset: 'sdk.coin',
|
|
38
|
+
coingeckoId: 'hash-2'
|
|
39
|
+
}]
|
|
40
|
+
};
|
|
41
|
+
export default info;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chainName: 'provenancetestnet',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'testnet',
|
|
6
|
+
website: 'https://provenance.io/',
|
|
7
|
+
prettyName: 'Provenance Testnet',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'pio-testnet-1',
|
|
10
|
+
bech32Prefix: 'tp',
|
|
11
|
+
daemonName: 'provenanced',
|
|
12
|
+
nodeHome: '$HOME/Provenance',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 1,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'nhash',
|
|
18
|
+
fixedMinGasPrice: 1,
|
|
19
|
+
lowGasPrice: 1,
|
|
20
|
+
averageGasPrice: 1,
|
|
21
|
+
highGasPrice: 1
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'nhash'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
gitRepo: 'https://github.com/provenance-io/provenance',
|
|
31
|
+
recommendedVersion: 'v1.27.2',
|
|
32
|
+
compatibleVersions: ['v1.27.2'],
|
|
33
|
+
consensus: {
|
|
34
|
+
type: 'cometbft',
|
|
35
|
+
version: '0.38.21'
|
|
36
|
+
},
|
|
37
|
+
binaries: {
|
|
38
|
+
"linux/amd64": 'https://github.com/provenance-io/provenance/releases/download/v1.27.2/provenance-linux-amd64-v1.27.2.zip'
|
|
39
|
+
},
|
|
40
|
+
genesis: {
|
|
41
|
+
name: 'v1.0.0',
|
|
42
|
+
genesisUrl: 'https://raw.githubusercontent.com/provenance-io/testnet/main/pio-testnet-1/genesis.json'
|
|
43
|
+
},
|
|
44
|
+
sdk: {
|
|
45
|
+
type: 'cosmos',
|
|
46
|
+
version: '0.50.14'
|
|
47
|
+
},
|
|
48
|
+
ibc: {
|
|
49
|
+
type: 'go',
|
|
50
|
+
version: '8.6.1',
|
|
51
|
+
icsEnabled: ['ics20-1', 'ics27-1']
|
|
52
|
+
},
|
|
53
|
+
cosmwasm: {
|
|
54
|
+
version: '0.52',
|
|
55
|
+
enabled: true
|
|
56
|
+
},
|
|
57
|
+
tag: 'v1.27.2'
|
|
58
|
+
},
|
|
59
|
+
logoURIs: {
|
|
60
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png',
|
|
61
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg'
|
|
62
|
+
},
|
|
63
|
+
apis: {
|
|
64
|
+
rpc: [{
|
|
65
|
+
address: 'https://rpc.test.provenance.io',
|
|
66
|
+
provider: 'Provenance'
|
|
67
|
+
}],
|
|
68
|
+
rest: [{
|
|
69
|
+
address: 'https://api.test.provenance.io',
|
|
70
|
+
provider: 'Provenance'
|
|
71
|
+
}],
|
|
72
|
+
grpc: []
|
|
73
|
+
},
|
|
74
|
+
explorers: [{
|
|
75
|
+
kind: 'Provenance',
|
|
76
|
+
url: 'https://explorer.test.provenance.io',
|
|
77
|
+
txPage: 'https://explorer.test.provenance.io/tx/${txHash}'
|
|
78
|
+
}],
|
|
79
|
+
images: [{
|
|
80
|
+
imageSync: {
|
|
81
|
+
chainName: 'provenance',
|
|
82
|
+
baseDenom: 'nhash'
|
|
83
|
+
},
|
|
84
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png',
|
|
85
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg'
|
|
86
|
+
}]
|
|
87
|
+
};
|
|
88
|
+
export default info;
|