chain-registry 2.0.63 → 2.0.65
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/asset-lists.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/terratestnet/asset-list.js +134 -0
- package/esm/testnet/terratestnet/chain.js +59 -0
- package/esm/testnet/terratestnet/index.js +4 -0
- package/esm/testnet/zigchaintestnet/asset-list.js +28 -0
- package/package.json +3 -3
- package/testnet/asset-lists.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/terratestnet/asset-list.d.ts +3 -0
- package/testnet/terratestnet/asset-list.js +136 -0
- package/testnet/terratestnet/chain.d.ts +3 -0
- package/testnet/terratestnet/chain.js +61 -0
- package/testnet/terratestnet/index.d.ts +2 -0
- package/testnet/terratestnet/index.js +10 -0
- package/testnet/zigchaintestnet/asset-list.js +28 -0
|
@@ -117,6 +117,7 @@ import * as _synternettestnet from './synternettestnet';
|
|
|
117
117
|
import * as _terpnettestnet from './terpnettestnet';
|
|
118
118
|
import * as _terpnettestnet2 from './terpnettestnet2';
|
|
119
119
|
import * as _terra2testnet from './terra2testnet';
|
|
120
|
+
import * as _terratestnet from './terratestnet';
|
|
120
121
|
import * as _titannettestnet from './titannettestnet';
|
|
121
122
|
import * as _titantestnet from './titantestnet';
|
|
122
123
|
import * as _tucanatestnet from './tucanatestnet';
|
|
@@ -253,6 +254,7 @@ const assetList = [
|
|
|
253
254
|
_terpnettestnet.assetList,
|
|
254
255
|
_terpnettestnet2.assetList,
|
|
255
256
|
_terra2testnet.assetList,
|
|
257
|
+
_terratestnet.assetList,
|
|
256
258
|
_titannettestnet.assetList,
|
|
257
259
|
_titantestnet.assetList,
|
|
258
260
|
_tucanatestnet.assetList,
|
package/esm/testnet/chains.js
CHANGED
|
@@ -117,6 +117,7 @@ import * as _synternettestnet from './synternettestnet';
|
|
|
117
117
|
import * as _terpnettestnet from './terpnettestnet';
|
|
118
118
|
import * as _terpnettestnet2 from './terpnettestnet2';
|
|
119
119
|
import * as _terra2testnet from './terra2testnet';
|
|
120
|
+
import * as _terratestnet from './terratestnet';
|
|
120
121
|
import * as _titannettestnet from './titannettestnet';
|
|
121
122
|
import * as _titantestnet from './titantestnet';
|
|
122
123
|
import * as _tucanatestnet from './tucanatestnet';
|
|
@@ -253,6 +254,7 @@ const chains = [
|
|
|
253
254
|
_terpnettestnet.chain,
|
|
254
255
|
_terpnettestnet2.chain,
|
|
255
256
|
_terra2testnet.chain,
|
|
257
|
+
_terratestnet.chain,
|
|
256
258
|
_titannettestnet.chain,
|
|
257
259
|
_titantestnet.chain,
|
|
258
260
|
_tucanatestnet.chain,
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chainName: 'terratestnet',
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
6
|
+
description: 'Terra Classic is the original blockchain platform that powered the UST stablecoin and LUNA token before the launch of Terra 2.0, focusing on stablecoins and DeFi applications.',
|
|
7
|
+
extendedDescription: 'Terra Classic was designed to create a decentralized financial infrastructure using algorithmic stablecoins like UST, which were pegged to various fiat currencies. The platform\'s native token, LUNA, played a crucial role in stabilizing the stablecoins through a mint-and-burn mechanism. Despite facing significant challenges, Terra Classic paved the way for Terra 2.0, which aims to rebuild and improve upon the original vision. Terra Classic continues to operate with a focus on supporting decentralized finance (DeFi) applications and stablecoin solutions.',
|
|
8
|
+
denomUnits: [
|
|
9
|
+
{
|
|
10
|
+
denom: 'uluna',
|
|
11
|
+
exponent: 0,
|
|
12
|
+
aliases: ['microluna']
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
denom: 'mluna',
|
|
16
|
+
exponent: 3,
|
|
17
|
+
aliases: ['milliluna']
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
denom: 'luna',
|
|
21
|
+
exponent: 6,
|
|
22
|
+
aliases: ['lunc']
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
base: 'uluna',
|
|
26
|
+
name: 'Luna Classic',
|
|
27
|
+
display: 'luna',
|
|
28
|
+
symbol: 'LUNC',
|
|
29
|
+
logoURIs: {
|
|
30
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png',
|
|
31
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg'
|
|
32
|
+
},
|
|
33
|
+
images: [{
|
|
34
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png',
|
|
35
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg'
|
|
36
|
+
}],
|
|
37
|
+
typeAsset: 'sdk.coin'
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
description: 'The USD stablecoin of Terra Classic.',
|
|
41
|
+
denomUnits: [
|
|
42
|
+
{
|
|
43
|
+
denom: 'uusd',
|
|
44
|
+
exponent: 0,
|
|
45
|
+
aliases: ['microusd']
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
denom: 'musd',
|
|
49
|
+
exponent: 3,
|
|
50
|
+
aliases: ['milliusd']
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
denom: 'ust',
|
|
54
|
+
exponent: 6,
|
|
55
|
+
aliases: ['ustc']
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
base: 'uusd',
|
|
59
|
+
name: 'TerraClassicUSD',
|
|
60
|
+
display: 'ust',
|
|
61
|
+
symbol: 'USTC',
|
|
62
|
+
logoURIs: {
|
|
63
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png',
|
|
64
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg'
|
|
65
|
+
},
|
|
66
|
+
images: [{
|
|
67
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png',
|
|
68
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg'
|
|
69
|
+
}],
|
|
70
|
+
typeAsset: 'sdk.coin'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
description: 'The KRW stablecoin of Terra Classic.',
|
|
74
|
+
denomUnits: [
|
|
75
|
+
{
|
|
76
|
+
denom: 'ukrw',
|
|
77
|
+
exponent: 0,
|
|
78
|
+
aliases: ['microkrw']
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
denom: 'mkrw',
|
|
82
|
+
exponent: 3,
|
|
83
|
+
aliases: ['millikrw']
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
denom: 'krt',
|
|
87
|
+
exponent: 6,
|
|
88
|
+
aliases: ['krtc']
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
base: 'ukrw',
|
|
92
|
+
name: 'TerraClassicKRW',
|
|
93
|
+
display: 'krt',
|
|
94
|
+
symbol: 'KRTC',
|
|
95
|
+
logoURIs: {
|
|
96
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png',
|
|
97
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg'
|
|
98
|
+
},
|
|
99
|
+
images: [{
|
|
100
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png',
|
|
101
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg'
|
|
102
|
+
}],
|
|
103
|
+
typeAsset: 'sdk.coin'
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
description: 'Juris Protocol is the premier lending platform for the Terra Ecosystem, delivering decentralized lending and borrowing markets to enhance financial accessibility and utility.',
|
|
107
|
+
extendedDescription: 'Juris Protocol is a sophisticated DeFi platform built on Terra Classic, leveraging CosmWasm smart contracts to provide secure, transparent lending and borrowing solutions. Designed to empower users, it supports assets like USTC and LUNC, driving yield opportunities and ecosystem growth. Terra Classic, originally engineered for algorithmic stablecoins, uses LUNC to stabilize its financial infrastructure. Juris Protocol advances this vision with audited contracts, KYC-verified governance, and an IBC bridge for seamless Cosmos integration, ensuring a robust, user-focused DeFi experience.',
|
|
108
|
+
socials: {
|
|
109
|
+
website: 'https://jurisprotocol.com/',
|
|
110
|
+
twitter: 'https://x.com/jurisprotocol'
|
|
111
|
+
},
|
|
112
|
+
typeAsset: 'cw20',
|
|
113
|
+
address: 'terra1w7d0jqehn0ja3hkzsm0psk6z2hjz06lsq0nxnwkzkkq4fqwgq6tqa5te8e',
|
|
114
|
+
denomUnits: [{
|
|
115
|
+
denom: 'cw20:terra1w7d0jqehn0ja3hkzsm0psk6z2hjz06lsq0nxnwkzkkq4fqwgq6tqa5te8e',
|
|
116
|
+
exponent: 0
|
|
117
|
+
}, {
|
|
118
|
+
denom: 'juris',
|
|
119
|
+
exponent: 6
|
|
120
|
+
}],
|
|
121
|
+
base: 'cw20:terra1w7d0jqehn0ja3hkzsm0psk6z2hjz06lsq0nxnwkzkkq4fqwgq6tqa5te8e',
|
|
122
|
+
name: 'Juris Protocol',
|
|
123
|
+
display: 'juris',
|
|
124
|
+
symbol: 'JURIS',
|
|
125
|
+
logoURIs: {
|
|
126
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png'
|
|
127
|
+
},
|
|
128
|
+
images: [{
|
|
129
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png'
|
|
130
|
+
}]
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
};
|
|
134
|
+
export default info;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chainName: 'terratestnet',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'testnet',
|
|
6
|
+
website: 'https://www.terra-Classic.money/',
|
|
7
|
+
prettyName: 'Terra Classic Testnet',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'rebel-2',
|
|
10
|
+
daemonName: 'terrad',
|
|
11
|
+
nodeHome: '$HOME/.terra',
|
|
12
|
+
bech32Prefix: 'terra',
|
|
13
|
+
slip44: 330,
|
|
14
|
+
fees: {
|
|
15
|
+
feeTokens: [{
|
|
16
|
+
denom: 'uluna',
|
|
17
|
+
lowGasPrice: 28.325,
|
|
18
|
+
averageGasPrice: 28.325,
|
|
19
|
+
highGasPrice: 50
|
|
20
|
+
}, {
|
|
21
|
+
denom: 'uusd',
|
|
22
|
+
lowGasPrice: 0.75,
|
|
23
|
+
averageGasPrice: 0.75,
|
|
24
|
+
highGasPrice: 0.75
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
staking: {
|
|
28
|
+
stakingTokens: [{
|
|
29
|
+
denom: 'uluna'
|
|
30
|
+
}]
|
|
31
|
+
},
|
|
32
|
+
codebase: {
|
|
33
|
+
gitRepo: 'https://github.com/classic-terra/core',
|
|
34
|
+
recommendedVersion: 'v3.5.0',
|
|
35
|
+
compatibleVersions: ['v3.5.0']
|
|
36
|
+
},
|
|
37
|
+
logoURIs: {
|
|
38
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png',
|
|
39
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg'
|
|
40
|
+
},
|
|
41
|
+
apis: {
|
|
42
|
+
rpc: [{
|
|
43
|
+
address: 'https://rebel-rpc.luncgoblins.com',
|
|
44
|
+
provider: 'LuncGoblinsg'
|
|
45
|
+
}],
|
|
46
|
+
rest: [{
|
|
47
|
+
address: 'https://rebel-lcd.luncgoblins.com',
|
|
48
|
+
provider: 'LuncGoblins'
|
|
49
|
+
}],
|
|
50
|
+
grpc: []
|
|
51
|
+
},
|
|
52
|
+
explorers: [],
|
|
53
|
+
keywords: ['testnet'],
|
|
54
|
+
images: [{
|
|
55
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png',
|
|
56
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg'
|
|
57
|
+
}]
|
|
58
|
+
};
|
|
59
|
+
export default info;
|
|
@@ -48,6 +48,34 @@ const info = {
|
|
|
48
48
|
discord: 'https://discord.com/invite/zignaly-the-better-way-to-invest-in-crypto-486954374845956097',
|
|
49
49
|
medium: 'https://medium.com/zignaly'
|
|
50
50
|
}
|
|
51
|
+
}, {
|
|
52
|
+
description: 'Staked Zig Token by Valdora Finance - Decentralized staking with stZIG',
|
|
53
|
+
denomUnits: [{
|
|
54
|
+
denom: 'factory/zig1q5cuxuekvjdsl3l2t87jv83gdwjryc4hmh8s90y7mwgpyfwkqutsy9tqak/stzig',
|
|
55
|
+
exponent: 0
|
|
56
|
+
}, {
|
|
57
|
+
denom: 'stzig',
|
|
58
|
+
exponent: 6
|
|
59
|
+
}],
|
|
60
|
+
base: 'factory/zig1q5cuxuekvjdsl3l2t87jv83gdwjryc4hmh8s90y7mwgpyfwkqutsy9tqak/stzig',
|
|
61
|
+
name: 'Staked Zig',
|
|
62
|
+
display: 'stzig',
|
|
63
|
+
symbol: 'STZIG',
|
|
64
|
+
logoURIs: {
|
|
65
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zigchaintestnet/images/stzig.png',
|
|
66
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zigchaintestnet/images/stzig.svg'
|
|
67
|
+
},
|
|
68
|
+
images: [{
|
|
69
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zigchaintestnet/images/stzig.png',
|
|
70
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zigchaintestnet/images/stzig.svg'
|
|
71
|
+
}],
|
|
72
|
+
typeAsset: 'sdk.coin',
|
|
73
|
+
socials: {
|
|
74
|
+
website: 'https://dev.valdora.finance',
|
|
75
|
+
twitter: 'https://x.com/Valdora_finance',
|
|
76
|
+
telegram: 'https://t.me/ValdoraWarriors',
|
|
77
|
+
discord: 'http://discord.gg/valdora'
|
|
78
|
+
}
|
|
51
79
|
}]
|
|
52
80
|
};
|
|
53
81
|
export default info;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.65",
|
|
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.65"
|
|
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": "45808e4d865ed4315486621465856dc7af9ecb51"
|
|
43
43
|
}
|
package/testnet/asset-lists.js
CHANGED
|
@@ -142,6 +142,7 @@ const _synternettestnet = __importStar(require("./synternettestnet"));
|
|
|
142
142
|
const _terpnettestnet = __importStar(require("./terpnettestnet"));
|
|
143
143
|
const _terpnettestnet2 = __importStar(require("./terpnettestnet2"));
|
|
144
144
|
const _terra2testnet = __importStar(require("./terra2testnet"));
|
|
145
|
+
const _terratestnet = __importStar(require("./terratestnet"));
|
|
145
146
|
const _titannettestnet = __importStar(require("./titannettestnet"));
|
|
146
147
|
const _titantestnet = __importStar(require("./titantestnet"));
|
|
147
148
|
const _tucanatestnet = __importStar(require("./tucanatestnet"));
|
|
@@ -278,6 +279,7 @@ const assetList = [
|
|
|
278
279
|
_terpnettestnet.assetList,
|
|
279
280
|
_terpnettestnet2.assetList,
|
|
280
281
|
_terra2testnet.assetList,
|
|
282
|
+
_terratestnet.assetList,
|
|
281
283
|
_titannettestnet.assetList,
|
|
282
284
|
_titantestnet.assetList,
|
|
283
285
|
_tucanatestnet.assetList,
|
package/testnet/chains.js
CHANGED
|
@@ -142,6 +142,7 @@ const _synternettestnet = __importStar(require("./synternettestnet"));
|
|
|
142
142
|
const _terpnettestnet = __importStar(require("./terpnettestnet"));
|
|
143
143
|
const _terpnettestnet2 = __importStar(require("./terpnettestnet2"));
|
|
144
144
|
const _terra2testnet = __importStar(require("./terra2testnet"));
|
|
145
|
+
const _terratestnet = __importStar(require("./terratestnet"));
|
|
145
146
|
const _titannettestnet = __importStar(require("./titannettestnet"));
|
|
146
147
|
const _titantestnet = __importStar(require("./titantestnet"));
|
|
147
148
|
const _tucanatestnet = __importStar(require("./tucanatestnet"));
|
|
@@ -278,6 +279,7 @@ const chains = [
|
|
|
278
279
|
_terpnettestnet.chain,
|
|
279
280
|
_terpnettestnet2.chain,
|
|
280
281
|
_terra2testnet.chain,
|
|
282
|
+
_terratestnet.chain,
|
|
281
283
|
_titannettestnet.chain,
|
|
282
284
|
_titantestnet.chain,
|
|
283
285
|
_tucanatestnet.chain,
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../assetlist.schema.json',
|
|
5
|
+
chainName: 'terratestnet',
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
8
|
+
description: 'Terra Classic is the original blockchain platform that powered the UST stablecoin and LUNA token before the launch of Terra 2.0, focusing on stablecoins and DeFi applications.',
|
|
9
|
+
extendedDescription: 'Terra Classic was designed to create a decentralized financial infrastructure using algorithmic stablecoins like UST, which were pegged to various fiat currencies. The platform\'s native token, LUNA, played a crucial role in stabilizing the stablecoins through a mint-and-burn mechanism. Despite facing significant challenges, Terra Classic paved the way for Terra 2.0, which aims to rebuild and improve upon the original vision. Terra Classic continues to operate with a focus on supporting decentralized finance (DeFi) applications and stablecoin solutions.',
|
|
10
|
+
denomUnits: [
|
|
11
|
+
{
|
|
12
|
+
denom: 'uluna',
|
|
13
|
+
exponent: 0,
|
|
14
|
+
aliases: ['microluna']
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
denom: 'mluna',
|
|
18
|
+
exponent: 3,
|
|
19
|
+
aliases: ['milliluna']
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
denom: 'luna',
|
|
23
|
+
exponent: 6,
|
|
24
|
+
aliases: ['lunc']
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
base: 'uluna',
|
|
28
|
+
name: 'Luna Classic',
|
|
29
|
+
display: 'luna',
|
|
30
|
+
symbol: 'LUNC',
|
|
31
|
+
logoURIs: {
|
|
32
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png',
|
|
33
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg'
|
|
34
|
+
},
|
|
35
|
+
images: [{
|
|
36
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png',
|
|
37
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg'
|
|
38
|
+
}],
|
|
39
|
+
typeAsset: 'sdk.coin'
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
description: 'The USD stablecoin of Terra Classic.',
|
|
43
|
+
denomUnits: [
|
|
44
|
+
{
|
|
45
|
+
denom: 'uusd',
|
|
46
|
+
exponent: 0,
|
|
47
|
+
aliases: ['microusd']
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
denom: 'musd',
|
|
51
|
+
exponent: 3,
|
|
52
|
+
aliases: ['milliusd']
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
denom: 'ust',
|
|
56
|
+
exponent: 6,
|
|
57
|
+
aliases: ['ustc']
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
base: 'uusd',
|
|
61
|
+
name: 'TerraClassicUSD',
|
|
62
|
+
display: 'ust',
|
|
63
|
+
symbol: 'USTC',
|
|
64
|
+
logoURIs: {
|
|
65
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png',
|
|
66
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg'
|
|
67
|
+
},
|
|
68
|
+
images: [{
|
|
69
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png',
|
|
70
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg'
|
|
71
|
+
}],
|
|
72
|
+
typeAsset: 'sdk.coin'
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
description: 'The KRW stablecoin of Terra Classic.',
|
|
76
|
+
denomUnits: [
|
|
77
|
+
{
|
|
78
|
+
denom: 'ukrw',
|
|
79
|
+
exponent: 0,
|
|
80
|
+
aliases: ['microkrw']
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
denom: 'mkrw',
|
|
84
|
+
exponent: 3,
|
|
85
|
+
aliases: ['millikrw']
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
denom: 'krt',
|
|
89
|
+
exponent: 6,
|
|
90
|
+
aliases: ['krtc']
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
base: 'ukrw',
|
|
94
|
+
name: 'TerraClassicKRW',
|
|
95
|
+
display: 'krt',
|
|
96
|
+
symbol: 'KRTC',
|
|
97
|
+
logoURIs: {
|
|
98
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png',
|
|
99
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg'
|
|
100
|
+
},
|
|
101
|
+
images: [{
|
|
102
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png',
|
|
103
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg'
|
|
104
|
+
}],
|
|
105
|
+
typeAsset: 'sdk.coin'
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
description: 'Juris Protocol is the premier lending platform for the Terra Ecosystem, delivering decentralized lending and borrowing markets to enhance financial accessibility and utility.',
|
|
109
|
+
extendedDescription: 'Juris Protocol is a sophisticated DeFi platform built on Terra Classic, leveraging CosmWasm smart contracts to provide secure, transparent lending and borrowing solutions. Designed to empower users, it supports assets like USTC and LUNC, driving yield opportunities and ecosystem growth. Terra Classic, originally engineered for algorithmic stablecoins, uses LUNC to stabilize its financial infrastructure. Juris Protocol advances this vision with audited contracts, KYC-verified governance, and an IBC bridge for seamless Cosmos integration, ensuring a robust, user-focused DeFi experience.',
|
|
110
|
+
socials: {
|
|
111
|
+
website: 'https://jurisprotocol.com/',
|
|
112
|
+
twitter: 'https://x.com/jurisprotocol'
|
|
113
|
+
},
|
|
114
|
+
typeAsset: 'cw20',
|
|
115
|
+
address: 'terra1w7d0jqehn0ja3hkzsm0psk6z2hjz06lsq0nxnwkzkkq4fqwgq6tqa5te8e',
|
|
116
|
+
denomUnits: [{
|
|
117
|
+
denom: 'cw20:terra1w7d0jqehn0ja3hkzsm0psk6z2hjz06lsq0nxnwkzkkq4fqwgq6tqa5te8e',
|
|
118
|
+
exponent: 0
|
|
119
|
+
}, {
|
|
120
|
+
denom: 'juris',
|
|
121
|
+
exponent: 6
|
|
122
|
+
}],
|
|
123
|
+
base: 'cw20:terra1w7d0jqehn0ja3hkzsm0psk6z2hjz06lsq0nxnwkzkkq4fqwgq6tqa5te8e',
|
|
124
|
+
name: 'Juris Protocol',
|
|
125
|
+
display: 'juris',
|
|
126
|
+
symbol: 'JURIS',
|
|
127
|
+
logoURIs: {
|
|
128
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png'
|
|
129
|
+
},
|
|
130
|
+
images: [{
|
|
131
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png'
|
|
132
|
+
}]
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
};
|
|
136
|
+
exports.default = info;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../chain.schema.json',
|
|
5
|
+
chainName: 'terratestnet',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'testnet',
|
|
8
|
+
website: 'https://www.terra-Classic.money/',
|
|
9
|
+
prettyName: 'Terra Classic Testnet',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'rebel-2',
|
|
12
|
+
daemonName: 'terrad',
|
|
13
|
+
nodeHome: '$HOME/.terra',
|
|
14
|
+
bech32Prefix: 'terra',
|
|
15
|
+
slip44: 330,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'uluna',
|
|
19
|
+
lowGasPrice: 28.325,
|
|
20
|
+
averageGasPrice: 28.325,
|
|
21
|
+
highGasPrice: 50
|
|
22
|
+
}, {
|
|
23
|
+
denom: 'uusd',
|
|
24
|
+
lowGasPrice: 0.75,
|
|
25
|
+
averageGasPrice: 0.75,
|
|
26
|
+
highGasPrice: 0.75
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
staking: {
|
|
30
|
+
stakingTokens: [{
|
|
31
|
+
denom: 'uluna'
|
|
32
|
+
}]
|
|
33
|
+
},
|
|
34
|
+
codebase: {
|
|
35
|
+
gitRepo: 'https://github.com/classic-terra/core',
|
|
36
|
+
recommendedVersion: 'v3.5.0',
|
|
37
|
+
compatibleVersions: ['v3.5.0']
|
|
38
|
+
},
|
|
39
|
+
logoURIs: {
|
|
40
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png',
|
|
41
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg'
|
|
42
|
+
},
|
|
43
|
+
apis: {
|
|
44
|
+
rpc: [{
|
|
45
|
+
address: 'https://rebel-rpc.luncgoblins.com',
|
|
46
|
+
provider: 'LuncGoblinsg'
|
|
47
|
+
}],
|
|
48
|
+
rest: [{
|
|
49
|
+
address: 'https://rebel-lcd.luncgoblins.com',
|
|
50
|
+
provider: 'LuncGoblins'
|
|
51
|
+
}],
|
|
52
|
+
grpc: []
|
|
53
|
+
},
|
|
54
|
+
explorers: [],
|
|
55
|
+
keywords: ['testnet'],
|
|
56
|
+
images: [{
|
|
57
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png',
|
|
58
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg'
|
|
59
|
+
}]
|
|
60
|
+
};
|
|
61
|
+
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;
|
|
@@ -50,6 +50,34 @@ const info = {
|
|
|
50
50
|
discord: 'https://discord.com/invite/zignaly-the-better-way-to-invest-in-crypto-486954374845956097',
|
|
51
51
|
medium: 'https://medium.com/zignaly'
|
|
52
52
|
}
|
|
53
|
+
}, {
|
|
54
|
+
description: 'Staked Zig Token by Valdora Finance - Decentralized staking with stZIG',
|
|
55
|
+
denomUnits: [{
|
|
56
|
+
denom: 'factory/zig1q5cuxuekvjdsl3l2t87jv83gdwjryc4hmh8s90y7mwgpyfwkqutsy9tqak/stzig',
|
|
57
|
+
exponent: 0
|
|
58
|
+
}, {
|
|
59
|
+
denom: 'stzig',
|
|
60
|
+
exponent: 6
|
|
61
|
+
}],
|
|
62
|
+
base: 'factory/zig1q5cuxuekvjdsl3l2t87jv83gdwjryc4hmh8s90y7mwgpyfwkqutsy9tqak/stzig',
|
|
63
|
+
name: 'Staked Zig',
|
|
64
|
+
display: 'stzig',
|
|
65
|
+
symbol: 'STZIG',
|
|
66
|
+
logoURIs: {
|
|
67
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zigchaintestnet/images/stzig.png',
|
|
68
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zigchaintestnet/images/stzig.svg'
|
|
69
|
+
},
|
|
70
|
+
images: [{
|
|
71
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zigchaintestnet/images/stzig.png',
|
|
72
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/zigchaintestnet/images/stzig.svg'
|
|
73
|
+
}],
|
|
74
|
+
typeAsset: 'sdk.coin',
|
|
75
|
+
socials: {
|
|
76
|
+
website: 'https://dev.valdora.finance',
|
|
77
|
+
twitter: 'https://x.com/Valdora_finance',
|
|
78
|
+
telegram: 'https://t.me/ValdoraWarriors',
|
|
79
|
+
discord: 'http://discord.gg/valdora'
|
|
80
|
+
}
|
|
53
81
|
}]
|
|
54
82
|
};
|
|
55
83
|
exports.default = info;
|