chain-registry 2.0.43 → 2.0.45
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/acrechain/chain.js +0 -12
- package/esm/mainnet/atomone/ibc-data.js +35 -3
- package/esm/mainnet/cheqd/chain.js +10 -10
- package/esm/mainnet/desmos/chain.js +0 -13
- package/esm/mainnet/evmos/chain.js +0 -12
- package/esm/mainnet/gitopia/chain.js +0 -14
- package/esm/mainnet/mun/chain.js +0 -13
- package/esm/mainnet/osmosis/asset-list.js +7 -2
- package/esm/mainnet/seda/chain.js +13 -0
- package/esm/mainnet/stargaze/ibc-data.js +29 -0
- package/esm/mainnet/sunrise/chain.js +13 -0
- package/esm/mainnet/terra/asset-list.js +7 -1
- package/esm/testnet/cheqdtestnet/chain.js +10 -10
- package/mainnet/acrechain/chain.js +0 -12
- package/mainnet/atomone/ibc-data.js +35 -3
- package/mainnet/cheqd/chain.js +10 -10
- package/mainnet/desmos/chain.js +0 -13
- package/mainnet/evmos/chain.js +0 -12
- package/mainnet/gitopia/chain.js +0 -14
- package/mainnet/mun/chain.js +0 -13
- package/mainnet/osmosis/asset-list.js +7 -2
- package/mainnet/seda/chain.js +13 -0
- package/mainnet/stargaze/ibc-data.js +29 -0
- package/mainnet/sunrise/chain.js +13 -0
- package/mainnet/terra/asset-list.js +7 -1
- package/package.json +3 -3
- package/testnet/cheqdtestnet/chain.js +10 -10
|
@@ -48,10 +48,6 @@ const info = {
|
|
|
48
48
|
address: 'https://acrechain-mainnet-rpc.autostake.com:443',
|
|
49
49
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
50
50
|
},
|
|
51
|
-
{
|
|
52
|
-
address: 'https://rpc.acre.tcnetwork.io',
|
|
53
|
-
provider: 'TC Network'
|
|
54
|
-
},
|
|
55
51
|
{
|
|
56
52
|
address: 'https://mainnet-acre-rpc.konsortech.xyz',
|
|
57
53
|
provider: 'KonsorTech'
|
|
@@ -70,10 +66,6 @@ const info = {
|
|
|
70
66
|
address: 'https://acrechain-mainnet-lcd.autostake.com:443',
|
|
71
67
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
72
68
|
},
|
|
73
|
-
{
|
|
74
|
-
address: 'https://rest.acre.tcnetwork.io',
|
|
75
|
-
provider: 'TC Network'
|
|
76
|
-
},
|
|
77
69
|
{
|
|
78
70
|
address: 'https://mainnet-acre-api.konsortech.xyz',
|
|
79
71
|
provider: 'KonsorTech'
|
|
@@ -118,10 +110,6 @@ const info = {
|
|
|
118
110
|
address: 'https://evm.acrescan.com/',
|
|
119
111
|
provider: 'Anonstake'
|
|
120
112
|
},
|
|
121
|
-
{
|
|
122
|
-
address: 'https://json-rpc.acre.tcnetwork.io',
|
|
123
|
-
provider: 'TC Network'
|
|
124
|
-
},
|
|
125
113
|
{
|
|
126
114
|
address: 'https://mainnet-acre-evm.konsortech.xyz',
|
|
127
115
|
provider: 'KonsorTech'
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
const info = [
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
2
3
|
$schema: '../ibc_data.schema.json',
|
|
3
4
|
chain1: {
|
|
4
5
|
chainName: 'atomone',
|
|
@@ -26,7 +27,8 @@ const info = [{
|
|
|
26
27
|
preferred: true
|
|
27
28
|
}
|
|
28
29
|
}]
|
|
29
|
-
},
|
|
30
|
+
},
|
|
31
|
+
{
|
|
30
32
|
$schema: '../ibc_data.schema.json',
|
|
31
33
|
chain1: {
|
|
32
34
|
chainName: 'atomone',
|
|
@@ -54,5 +56,35 @@ const info = [{
|
|
|
54
56
|
preferred: true
|
|
55
57
|
}
|
|
56
58
|
}]
|
|
57
|
-
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
$schema: '../ibc_data.schema.json',
|
|
62
|
+
chain1: {
|
|
63
|
+
chainName: 'atomone',
|
|
64
|
+
clientId: '07-tendermint-6',
|
|
65
|
+
connectionId: 'connection-7'
|
|
66
|
+
},
|
|
67
|
+
chain2: {
|
|
68
|
+
chainName: 'stargaze',
|
|
69
|
+
clientId: '07-tendermint-380',
|
|
70
|
+
connectionId: 'connection-337'
|
|
71
|
+
},
|
|
72
|
+
channels: [{
|
|
73
|
+
chain1: {
|
|
74
|
+
channelId: 'channel-3',
|
|
75
|
+
portId: 'transfer'
|
|
76
|
+
},
|
|
77
|
+
chain2: {
|
|
78
|
+
channelId: 'channel-448',
|
|
79
|
+
portId: 'transfer'
|
|
80
|
+
},
|
|
81
|
+
ordering: 'unordered',
|
|
82
|
+
version: 'ics20-1',
|
|
83
|
+
tags: {
|
|
84
|
+
status: 'live',
|
|
85
|
+
preferred: true
|
|
86
|
+
}
|
|
87
|
+
}]
|
|
88
|
+
}
|
|
89
|
+
];
|
|
58
90
|
export default info;
|
|
@@ -27,17 +27,17 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
gitRepo: 'https://github.com/cheqd/cheqd-node',
|
|
30
|
-
recommendedVersion: '
|
|
31
|
-
compatibleVersions: ['
|
|
30
|
+
recommendedVersion: 'v4.1.1',
|
|
31
|
+
compatibleVersions: ['v4.1.0', 'v4.1.1'],
|
|
32
32
|
binaries: {
|
|
33
|
-
"linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
34
|
-
"linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
35
|
-
"darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
36
|
-
"darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
33
|
+
"linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-amd64.tar.gz',
|
|
34
|
+
"linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-arm64.tar.gz',
|
|
35
|
+
"darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-amd64.tar.gz',
|
|
36
|
+
"darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-arm64.tar.gz'
|
|
37
37
|
},
|
|
38
38
|
consensus: {
|
|
39
39
|
type: 'cometbft',
|
|
40
|
-
version: '0.
|
|
40
|
+
version: '0.38.12'
|
|
41
41
|
},
|
|
42
42
|
genesis: {
|
|
43
43
|
genesisUrl: 'https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/mainnet/genesis.json'
|
|
@@ -45,12 +45,12 @@ const info = {
|
|
|
45
45
|
sdk: {
|
|
46
46
|
type: 'cosmos',
|
|
47
47
|
repo: 'https://github.com/cheqd/cosmos-sdk',
|
|
48
|
-
version: 'v0.
|
|
49
|
-
tag: 'v0.
|
|
48
|
+
version: 'v0.50.14',
|
|
49
|
+
tag: 'v0.50.14-height-mismatch-iavl'
|
|
50
50
|
},
|
|
51
51
|
ibc: {
|
|
52
52
|
type: 'go',
|
|
53
|
-
version: '
|
|
53
|
+
version: 'v8.7.0'
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
56
|
apis: {
|
|
@@ -70,10 +70,6 @@ const info = {
|
|
|
70
70
|
address: 'https://desmos-rpc.staketab.org:443',
|
|
71
71
|
provider: 'Staketab'
|
|
72
72
|
},
|
|
73
|
-
{
|
|
74
|
-
address: 'https://rpc.desmos.tcnetwork.io',
|
|
75
|
-
provider: 'TC Network'
|
|
76
|
-
},
|
|
77
73
|
{
|
|
78
74
|
address: 'https://rpc.desmos.bronbro.io:443',
|
|
79
75
|
provider: 'Bro_n_Bro'
|
|
@@ -96,10 +92,6 @@ const info = {
|
|
|
96
92
|
address: 'https://desmos-rest.staketab.org',
|
|
97
93
|
provider: 'Staketab'
|
|
98
94
|
},
|
|
99
|
-
{
|
|
100
|
-
address: 'https://rest.desmos.tcnetwork.io',
|
|
101
|
-
provider: 'TC Network'
|
|
102
|
-
},
|
|
103
95
|
{
|
|
104
96
|
address: 'https://lcd.desmos.bronbro.io:443',
|
|
105
97
|
provider: 'Bro_n_Bro'
|
|
@@ -173,11 +165,6 @@ const info = {
|
|
|
173
165
|
url: 'https://atomscan.com/desmos',
|
|
174
166
|
txPage: 'https://atomscan.com/desmos/transactions/${txHash}'
|
|
175
167
|
},
|
|
176
|
-
{
|
|
177
|
-
kind: 'TC Network',
|
|
178
|
-
url: 'https://explorer.tcnetwork.io/desmos',
|
|
179
|
-
txPage: 'https://explorer.tcnetwork.io/desmos/transaction/${txHash}'
|
|
180
|
-
},
|
|
181
168
|
{
|
|
182
169
|
kind: 'Decloud Nodes Lab',
|
|
183
170
|
url: 'https://explorer.declab.pro/Desmos',
|
|
@@ -87,10 +87,6 @@ const info = {
|
|
|
87
87
|
address: 'https://rpc.evmos.silentvalidator.com/',
|
|
88
88
|
provider: 'silent'
|
|
89
89
|
},
|
|
90
|
-
{
|
|
91
|
-
address: 'https://rpc.evmos.tcnetwork.io',
|
|
92
|
-
provider: 'TC Network'
|
|
93
|
-
},
|
|
94
90
|
{
|
|
95
91
|
address: 'https://evmos.rpc.stakin-nodes.com',
|
|
96
92
|
provider: 'Stakin'
|
|
@@ -173,10 +169,6 @@ const info = {
|
|
|
173
169
|
address: 'https://api.evmos.silentvalidator.com/',
|
|
174
170
|
provider: 'silent'
|
|
175
171
|
},
|
|
176
|
-
{
|
|
177
|
-
address: 'https://rest.evmos.tcnetwork.io',
|
|
178
|
-
provider: 'TC Network'
|
|
179
|
-
},
|
|
180
172
|
{
|
|
181
173
|
address: 'https://evmos.rest.stakin-nodes.com',
|
|
182
174
|
provider: 'Stakin'
|
|
@@ -325,10 +317,6 @@ const info = {
|
|
|
325
317
|
address: 'https://evm-rpc.evmos.silentvalidator.com/',
|
|
326
318
|
provider: 'silent'
|
|
327
319
|
},
|
|
328
|
-
{
|
|
329
|
-
address: 'https://json-rpc.evmos.tcnetwork.io',
|
|
330
|
-
provider: 'TC Network'
|
|
331
|
-
},
|
|
332
320
|
{
|
|
333
321
|
address: 'https://evmosevm.rpc.stakin-nodes.com',
|
|
334
322
|
provider: 'Stakin'
|
|
@@ -136,10 +136,6 @@ const info = {
|
|
|
136
136
|
address: 'https://gitopia-rpc.enigma-validator.com/',
|
|
137
137
|
provider: 'Enigma'
|
|
138
138
|
},
|
|
139
|
-
{
|
|
140
|
-
address: 'https://rpc.gitopia.tcnetwork.io/',
|
|
141
|
-
provider: 'TC Network'
|
|
142
|
-
},
|
|
143
139
|
{
|
|
144
140
|
address: 'https://gitopia.nodejumper.io:443',
|
|
145
141
|
provider: 'NODEJUMPER'
|
|
@@ -250,10 +246,6 @@ const info = {
|
|
|
250
246
|
address: 'https://gitopia-lcd.enigma-validator.com/',
|
|
251
247
|
provider: 'Enigma'
|
|
252
248
|
},
|
|
253
|
-
{
|
|
254
|
-
address: 'https://rest.gitopia.tcnetwork.io/',
|
|
255
|
-
provider: 'TC Network'
|
|
256
|
-
},
|
|
257
249
|
{
|
|
258
250
|
address: 'https://gitopia.nodejumper.io:1317',
|
|
259
251
|
provider: 'NODEJUMPER'
|
|
@@ -447,12 +439,6 @@ const info = {
|
|
|
447
439
|
txPage: 'https://explorer.nodexcapital.com/gitopia/tx/${txHash}',
|
|
448
440
|
accountPage: 'https://explorer.nodexcapital.com/gitopia/account/${accountAddress}'
|
|
449
441
|
},
|
|
450
|
-
{
|
|
451
|
-
kind: 'TC Network',
|
|
452
|
-
url: 'https://explorer.tcnetwork.io/gitopia',
|
|
453
|
-
txPage: 'https://explorer.tcnetwork.io/gitopia/transaction/${txHash}',
|
|
454
|
-
accountPage: 'https://explorer.tcnetwork.io/gitopia/account/${accountAddress}'
|
|
455
|
-
},
|
|
456
442
|
{
|
|
457
443
|
kind: 'NodeStake',
|
|
458
444
|
url: 'https://explorer.nodestake.org/gitopia',
|
package/esm/mainnet/mun/chain.js
CHANGED
|
@@ -45,10 +45,6 @@ const info = {
|
|
|
45
45
|
address: 'https://mainnet-mun-rpc.konsortech.xyz',
|
|
46
46
|
provider: 'KonsorTech'
|
|
47
47
|
},
|
|
48
|
-
{
|
|
49
|
-
address: 'https://rpc.mun.tcnetwork.io',
|
|
50
|
-
provider: 'TC Network'
|
|
51
|
-
},
|
|
52
48
|
{
|
|
53
49
|
address: 'https://mun_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
54
50
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
@@ -63,10 +59,6 @@ const info = {
|
|
|
63
59
|
address: 'https://mainnet-mun-api.konsortech.xyz',
|
|
64
60
|
provider: 'KonsorTech'
|
|
65
61
|
},
|
|
66
|
-
{
|
|
67
|
-
address: 'https://rest.mun.tcnetwork.io',
|
|
68
|
-
provider: 'TC Network'
|
|
69
|
-
},
|
|
70
62
|
{
|
|
71
63
|
address: 'https://mun_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
72
64
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
@@ -92,11 +84,6 @@ const info = {
|
|
|
92
84
|
url: 'https://ping.pub/mun',
|
|
93
85
|
txPage: 'https://ping.pub/mun/${txHash}'
|
|
94
86
|
},
|
|
95
|
-
{
|
|
96
|
-
kind: 'TC Network',
|
|
97
|
-
url: 'https://explorer.tcnetwork.io/mun',
|
|
98
|
-
txPage: 'https://explorer.tcnetwork.io/mun/transaction/${txHash}'
|
|
99
|
-
},
|
|
100
87
|
{
|
|
101
88
|
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
102
89
|
url: 'https://explorer.whenmoonwhenlambo.money/mun',
|
|
@@ -13824,7 +13824,6 @@ const info = {
|
|
|
13824
13824
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png',
|
|
13825
13825
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg'
|
|
13826
13826
|
}],
|
|
13827
|
-
coingeckoId: 'nim-network',
|
|
13828
13827
|
keywords: [
|
|
13829
13828
|
'gaming',
|
|
13830
13829
|
'AI',
|
|
@@ -14997,7 +14996,8 @@ const info = {
|
|
|
14997
14996
|
}]
|
|
14998
14997
|
},
|
|
14999
14998
|
{
|
|
15000
|
-
description: '
|
|
14999
|
+
description: 'Juris Protocol is the premier lending platform for the Terra Ecosystem, delivering decentralized lending and borrowing markets to enhance financial accessibility and utility.',
|
|
15000
|
+
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.',
|
|
15001
15001
|
denomUnits: [{
|
|
15002
15002
|
denom: 'ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98',
|
|
15003
15003
|
exponent: 0,
|
|
@@ -15011,6 +15011,11 @@ const info = {
|
|
|
15011
15011
|
name: 'Juris Protocol',
|
|
15012
15012
|
display: 'rakoff',
|
|
15013
15013
|
symbol: 'JURIS',
|
|
15014
|
+
coingeckoId: 'juris-protocol',
|
|
15015
|
+
socials: {
|
|
15016
|
+
website: 'https://jurisprotocol.com/',
|
|
15017
|
+
twitter: 'https://x.com/jurisprotocol'
|
|
15018
|
+
},
|
|
15014
15019
|
traces: [{
|
|
15015
15020
|
type: 'ibc-cw20',
|
|
15016
15021
|
counterparty: {
|
|
@@ -137,6 +137,10 @@ const info = {
|
|
|
137
137
|
{
|
|
138
138
|
address: 'https://seda.rpc.cumulo.org.es',
|
|
139
139
|
provider: 'Cumulo'
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
address: 'https://rpc.seda.tcnetwork.io',
|
|
143
|
+
provider: 'TC Network'
|
|
140
144
|
}
|
|
141
145
|
],
|
|
142
146
|
rest: [
|
|
@@ -211,6 +215,10 @@ const info = {
|
|
|
211
215
|
{
|
|
212
216
|
address: 'https://seda.api.cumulo.org.es',
|
|
213
217
|
provider: 'Cumulo'
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
address: 'https://rest.seda.tcnetwork.io',
|
|
221
|
+
provider: 'TC Network'
|
|
214
222
|
}
|
|
215
223
|
],
|
|
216
224
|
grpc: [
|
|
@@ -261,6 +269,11 @@ const info = {
|
|
|
261
269
|
]
|
|
262
270
|
},
|
|
263
271
|
explorers: [
|
|
272
|
+
{
|
|
273
|
+
kind: 'TC Network',
|
|
274
|
+
url: 'https://explorer.tcnetwork.io/seda',
|
|
275
|
+
txPage: 'https://explorer.tcnetwork.io/seda/transaction/${txHash}'
|
|
276
|
+
},
|
|
264
277
|
{
|
|
265
278
|
kind: 'Chainroot',
|
|
266
279
|
url: 'https://explorer.chainroot.io/seda',
|
|
@@ -58,6 +58,35 @@ const info = [
|
|
|
58
58
|
}
|
|
59
59
|
}]
|
|
60
60
|
},
|
|
61
|
+
{
|
|
62
|
+
$schema: '../ibc_data.schema.json',
|
|
63
|
+
chain1: {
|
|
64
|
+
chainName: 'atomone',
|
|
65
|
+
clientId: '07-tendermint-6',
|
|
66
|
+
connectionId: 'connection-7'
|
|
67
|
+
},
|
|
68
|
+
chain2: {
|
|
69
|
+
chainName: 'stargaze',
|
|
70
|
+
clientId: '07-tendermint-380',
|
|
71
|
+
connectionId: 'connection-337'
|
|
72
|
+
},
|
|
73
|
+
channels: [{
|
|
74
|
+
chain1: {
|
|
75
|
+
channelId: 'channel-3',
|
|
76
|
+
portId: 'transfer'
|
|
77
|
+
},
|
|
78
|
+
chain2: {
|
|
79
|
+
channelId: 'channel-448',
|
|
80
|
+
portId: 'transfer'
|
|
81
|
+
},
|
|
82
|
+
ordering: 'unordered',
|
|
83
|
+
version: 'ics20-1',
|
|
84
|
+
tags: {
|
|
85
|
+
status: 'live',
|
|
86
|
+
preferred: true
|
|
87
|
+
}
|
|
88
|
+
}]
|
|
89
|
+
},
|
|
61
90
|
{
|
|
62
91
|
$schema: '../ibc_data.schema.json',
|
|
63
92
|
chain1: {
|
|
@@ -66,6 +66,10 @@ const info = {
|
|
|
66
66
|
{
|
|
67
67
|
address: 'https://rpc-sunrise.nodeist.net',
|
|
68
68
|
provider: 'Nodeist'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
address: 'https://rpc.sunrise.tcnetwork.io',
|
|
72
|
+
provider: 'TC Network'
|
|
69
73
|
}
|
|
70
74
|
],
|
|
71
75
|
rest: [
|
|
@@ -80,6 +84,10 @@ const info = {
|
|
|
80
84
|
{
|
|
81
85
|
address: 'https://api-sunrise.nodeist.net',
|
|
82
86
|
provider: 'Nodeist'
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
address: 'https://rest.sunrise.tcnetwork.io',
|
|
90
|
+
provider: 'TC Network'
|
|
83
91
|
}
|
|
84
92
|
],
|
|
85
93
|
grpc: [{
|
|
@@ -91,6 +99,11 @@ const info = {
|
|
|
91
99
|
}]
|
|
92
100
|
},
|
|
93
101
|
explorers: [
|
|
102
|
+
{
|
|
103
|
+
kind: 'TC Network',
|
|
104
|
+
url: 'https://explorer.tcnetwork.io/sunrise',
|
|
105
|
+
txPage: 'https://explorer.tcnetwork.io/sunrise/transaction/${txHash}'
|
|
106
|
+
},
|
|
94
107
|
{
|
|
95
108
|
kind: 'Risescan',
|
|
96
109
|
url: 'https://risescan.sunriselayer.io',
|
|
@@ -4661,7 +4661,13 @@ const info = {
|
|
|
4661
4661
|
}]
|
|
4662
4662
|
},
|
|
4663
4663
|
{
|
|
4664
|
-
description: 'Juris Protocol is the
|
|
4664
|
+
description: 'Juris Protocol is the premier lending platform for the Terra Ecosystem, delivering decentralized lending and borrowing markets to enhance financial accessibility and utility.',
|
|
4665
|
+
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.',
|
|
4666
|
+
socials: {
|
|
4667
|
+
website: 'https://jurisprotocol.com/',
|
|
4668
|
+
twitter: 'https://x.com/jurisprotocol'
|
|
4669
|
+
},
|
|
4670
|
+
coingeckoId: 'juris-protocol',
|
|
4665
4671
|
typeAsset: 'cw20',
|
|
4666
4672
|
address: 'terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2',
|
|
4667
4673
|
denomUnits: [{
|
|
@@ -21,17 +21,17 @@ const info = {
|
|
|
21
21
|
},
|
|
22
22
|
codebase: {
|
|
23
23
|
gitRepo: 'https://github.com/cheqd/cheqd-node',
|
|
24
|
-
recommendedVersion: '
|
|
25
|
-
compatibleVersions: ['
|
|
24
|
+
recommendedVersion: 'v4.1.1',
|
|
25
|
+
compatibleVersions: ['v4.1.0', 'v4.1.1'],
|
|
26
26
|
binaries: {
|
|
27
|
-
"linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
28
|
-
"linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
29
|
-
"darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
30
|
-
"darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
27
|
+
"linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-amd64.tar.gz',
|
|
28
|
+
"linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-arm64.tar.gz',
|
|
29
|
+
"darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-amd64.tar.gz',
|
|
30
|
+
"darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-arm64.tar.gz'
|
|
31
31
|
},
|
|
32
32
|
consensus: {
|
|
33
33
|
type: 'cometbft',
|
|
34
|
-
version: '0.
|
|
34
|
+
version: '0.38.12'
|
|
35
35
|
},
|
|
36
36
|
genesis: {
|
|
37
37
|
genesisUrl: 'https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/testnet/genesis.json'
|
|
@@ -39,12 +39,12 @@ const info = {
|
|
|
39
39
|
sdk: {
|
|
40
40
|
type: 'cosmos',
|
|
41
41
|
repo: 'https://github.com/cheqd/cosmos-sdk',
|
|
42
|
-
version: 'v0.
|
|
43
|
-
tag: 'v0.
|
|
42
|
+
version: 'v0.50.14',
|
|
43
|
+
tag: 'v0.50.14-height-mismatch-iavl'
|
|
44
44
|
},
|
|
45
45
|
ibc: {
|
|
46
46
|
type: 'go',
|
|
47
|
-
version: '
|
|
47
|
+
version: 'v8.7.0'
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
apis: {
|
|
@@ -50,10 +50,6 @@ const info = {
|
|
|
50
50
|
address: 'https://acrechain-mainnet-rpc.autostake.com:443',
|
|
51
51
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
52
52
|
},
|
|
53
|
-
{
|
|
54
|
-
address: 'https://rpc.acre.tcnetwork.io',
|
|
55
|
-
provider: 'TC Network'
|
|
56
|
-
},
|
|
57
53
|
{
|
|
58
54
|
address: 'https://mainnet-acre-rpc.konsortech.xyz',
|
|
59
55
|
provider: 'KonsorTech'
|
|
@@ -72,10 +68,6 @@ const info = {
|
|
|
72
68
|
address: 'https://acrechain-mainnet-lcd.autostake.com:443',
|
|
73
69
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
74
70
|
},
|
|
75
|
-
{
|
|
76
|
-
address: 'https://rest.acre.tcnetwork.io',
|
|
77
|
-
provider: 'TC Network'
|
|
78
|
-
},
|
|
79
71
|
{
|
|
80
72
|
address: 'https://mainnet-acre-api.konsortech.xyz',
|
|
81
73
|
provider: 'KonsorTech'
|
|
@@ -120,10 +112,6 @@ const info = {
|
|
|
120
112
|
address: 'https://evm.acrescan.com/',
|
|
121
113
|
provider: 'Anonstake'
|
|
122
114
|
},
|
|
123
|
-
{
|
|
124
|
-
address: 'https://json-rpc.acre.tcnetwork.io',
|
|
125
|
-
provider: 'TC Network'
|
|
126
|
-
},
|
|
127
115
|
{
|
|
128
116
|
address: 'https://mainnet-acre-evm.konsortech.xyz',
|
|
129
117
|
provider: 'KonsorTech'
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const info = [
|
|
3
|
+
const info = [
|
|
4
|
+
{
|
|
4
5
|
$schema: '../ibc_data.schema.json',
|
|
5
6
|
chain1: {
|
|
6
7
|
chainName: 'atomone',
|
|
@@ -28,7 +29,8 @@ const info = [{
|
|
|
28
29
|
preferred: true
|
|
29
30
|
}
|
|
30
31
|
}]
|
|
31
|
-
},
|
|
32
|
+
},
|
|
33
|
+
{
|
|
32
34
|
$schema: '../ibc_data.schema.json',
|
|
33
35
|
chain1: {
|
|
34
36
|
chainName: 'atomone',
|
|
@@ -56,5 +58,35 @@ const info = [{
|
|
|
56
58
|
preferred: true
|
|
57
59
|
}
|
|
58
60
|
}]
|
|
59
|
-
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
$schema: '../ibc_data.schema.json',
|
|
64
|
+
chain1: {
|
|
65
|
+
chainName: 'atomone',
|
|
66
|
+
clientId: '07-tendermint-6',
|
|
67
|
+
connectionId: 'connection-7'
|
|
68
|
+
},
|
|
69
|
+
chain2: {
|
|
70
|
+
chainName: 'stargaze',
|
|
71
|
+
clientId: '07-tendermint-380',
|
|
72
|
+
connectionId: 'connection-337'
|
|
73
|
+
},
|
|
74
|
+
channels: [{
|
|
75
|
+
chain1: {
|
|
76
|
+
channelId: 'channel-3',
|
|
77
|
+
portId: 'transfer'
|
|
78
|
+
},
|
|
79
|
+
chain2: {
|
|
80
|
+
channelId: 'channel-448',
|
|
81
|
+
portId: 'transfer'
|
|
82
|
+
},
|
|
83
|
+
ordering: 'unordered',
|
|
84
|
+
version: 'ics20-1',
|
|
85
|
+
tags: {
|
|
86
|
+
status: 'live',
|
|
87
|
+
preferred: true
|
|
88
|
+
}
|
|
89
|
+
}]
|
|
90
|
+
}
|
|
91
|
+
];
|
|
60
92
|
exports.default = info;
|
package/mainnet/cheqd/chain.js
CHANGED
|
@@ -29,17 +29,17 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
gitRepo: 'https://github.com/cheqd/cheqd-node',
|
|
32
|
-
recommendedVersion: '
|
|
33
|
-
compatibleVersions: ['
|
|
32
|
+
recommendedVersion: 'v4.1.1',
|
|
33
|
+
compatibleVersions: ['v4.1.0', 'v4.1.1'],
|
|
34
34
|
binaries: {
|
|
35
|
-
"linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
36
|
-
"linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
37
|
-
"darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
38
|
-
"darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
35
|
+
"linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-amd64.tar.gz',
|
|
36
|
+
"linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-arm64.tar.gz',
|
|
37
|
+
"darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-amd64.tar.gz',
|
|
38
|
+
"darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-arm64.tar.gz'
|
|
39
39
|
},
|
|
40
40
|
consensus: {
|
|
41
41
|
type: 'cometbft',
|
|
42
|
-
version: '0.
|
|
42
|
+
version: '0.38.12'
|
|
43
43
|
},
|
|
44
44
|
genesis: {
|
|
45
45
|
genesisUrl: 'https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/mainnet/genesis.json'
|
|
@@ -47,12 +47,12 @@ const info = {
|
|
|
47
47
|
sdk: {
|
|
48
48
|
type: 'cosmos',
|
|
49
49
|
repo: 'https://github.com/cheqd/cosmos-sdk',
|
|
50
|
-
version: 'v0.
|
|
51
|
-
tag: 'v0.
|
|
50
|
+
version: 'v0.50.14',
|
|
51
|
+
tag: 'v0.50.14-height-mismatch-iavl'
|
|
52
52
|
},
|
|
53
53
|
ibc: {
|
|
54
54
|
type: 'go',
|
|
55
|
-
version: '
|
|
55
|
+
version: 'v8.7.0'
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
apis: {
|
package/mainnet/desmos/chain.js
CHANGED
|
@@ -72,10 +72,6 @@ const info = {
|
|
|
72
72
|
address: 'https://desmos-rpc.staketab.org:443',
|
|
73
73
|
provider: 'Staketab'
|
|
74
74
|
},
|
|
75
|
-
{
|
|
76
|
-
address: 'https://rpc.desmos.tcnetwork.io',
|
|
77
|
-
provider: 'TC Network'
|
|
78
|
-
},
|
|
79
75
|
{
|
|
80
76
|
address: 'https://rpc.desmos.bronbro.io:443',
|
|
81
77
|
provider: 'Bro_n_Bro'
|
|
@@ -98,10 +94,6 @@ const info = {
|
|
|
98
94
|
address: 'https://desmos-rest.staketab.org',
|
|
99
95
|
provider: 'Staketab'
|
|
100
96
|
},
|
|
101
|
-
{
|
|
102
|
-
address: 'https://rest.desmos.tcnetwork.io',
|
|
103
|
-
provider: 'TC Network'
|
|
104
|
-
},
|
|
105
97
|
{
|
|
106
98
|
address: 'https://lcd.desmos.bronbro.io:443',
|
|
107
99
|
provider: 'Bro_n_Bro'
|
|
@@ -175,11 +167,6 @@ const info = {
|
|
|
175
167
|
url: 'https://atomscan.com/desmos',
|
|
176
168
|
txPage: 'https://atomscan.com/desmos/transactions/${txHash}'
|
|
177
169
|
},
|
|
178
|
-
{
|
|
179
|
-
kind: 'TC Network',
|
|
180
|
-
url: 'https://explorer.tcnetwork.io/desmos',
|
|
181
|
-
txPage: 'https://explorer.tcnetwork.io/desmos/transaction/${txHash}'
|
|
182
|
-
},
|
|
183
170
|
{
|
|
184
171
|
kind: 'Decloud Nodes Lab',
|
|
185
172
|
url: 'https://explorer.declab.pro/Desmos',
|
package/mainnet/evmos/chain.js
CHANGED
|
@@ -89,10 +89,6 @@ const info = {
|
|
|
89
89
|
address: 'https://rpc.evmos.silentvalidator.com/',
|
|
90
90
|
provider: 'silent'
|
|
91
91
|
},
|
|
92
|
-
{
|
|
93
|
-
address: 'https://rpc.evmos.tcnetwork.io',
|
|
94
|
-
provider: 'TC Network'
|
|
95
|
-
},
|
|
96
92
|
{
|
|
97
93
|
address: 'https://evmos.rpc.stakin-nodes.com',
|
|
98
94
|
provider: 'Stakin'
|
|
@@ -175,10 +171,6 @@ const info = {
|
|
|
175
171
|
address: 'https://api.evmos.silentvalidator.com/',
|
|
176
172
|
provider: 'silent'
|
|
177
173
|
},
|
|
178
|
-
{
|
|
179
|
-
address: 'https://rest.evmos.tcnetwork.io',
|
|
180
|
-
provider: 'TC Network'
|
|
181
|
-
},
|
|
182
174
|
{
|
|
183
175
|
address: 'https://evmos.rest.stakin-nodes.com',
|
|
184
176
|
provider: 'Stakin'
|
|
@@ -327,10 +319,6 @@ const info = {
|
|
|
327
319
|
address: 'https://evm-rpc.evmos.silentvalidator.com/',
|
|
328
320
|
provider: 'silent'
|
|
329
321
|
},
|
|
330
|
-
{
|
|
331
|
-
address: 'https://json-rpc.evmos.tcnetwork.io',
|
|
332
|
-
provider: 'TC Network'
|
|
333
|
-
},
|
|
334
322
|
{
|
|
335
323
|
address: 'https://evmosevm.rpc.stakin-nodes.com',
|
|
336
324
|
provider: 'Stakin'
|
package/mainnet/gitopia/chain.js
CHANGED
|
@@ -138,10 +138,6 @@ const info = {
|
|
|
138
138
|
address: 'https://gitopia-rpc.enigma-validator.com/',
|
|
139
139
|
provider: 'Enigma'
|
|
140
140
|
},
|
|
141
|
-
{
|
|
142
|
-
address: 'https://rpc.gitopia.tcnetwork.io/',
|
|
143
|
-
provider: 'TC Network'
|
|
144
|
-
},
|
|
145
141
|
{
|
|
146
142
|
address: 'https://gitopia.nodejumper.io:443',
|
|
147
143
|
provider: 'NODEJUMPER'
|
|
@@ -252,10 +248,6 @@ const info = {
|
|
|
252
248
|
address: 'https://gitopia-lcd.enigma-validator.com/',
|
|
253
249
|
provider: 'Enigma'
|
|
254
250
|
},
|
|
255
|
-
{
|
|
256
|
-
address: 'https://rest.gitopia.tcnetwork.io/',
|
|
257
|
-
provider: 'TC Network'
|
|
258
|
-
},
|
|
259
251
|
{
|
|
260
252
|
address: 'https://gitopia.nodejumper.io:1317',
|
|
261
253
|
provider: 'NODEJUMPER'
|
|
@@ -449,12 +441,6 @@ const info = {
|
|
|
449
441
|
txPage: 'https://explorer.nodexcapital.com/gitopia/tx/${txHash}',
|
|
450
442
|
accountPage: 'https://explorer.nodexcapital.com/gitopia/account/${accountAddress}'
|
|
451
443
|
},
|
|
452
|
-
{
|
|
453
|
-
kind: 'TC Network',
|
|
454
|
-
url: 'https://explorer.tcnetwork.io/gitopia',
|
|
455
|
-
txPage: 'https://explorer.tcnetwork.io/gitopia/transaction/${txHash}',
|
|
456
|
-
accountPage: 'https://explorer.tcnetwork.io/gitopia/account/${accountAddress}'
|
|
457
|
-
},
|
|
458
444
|
{
|
|
459
445
|
kind: 'NodeStake',
|
|
460
446
|
url: 'https://explorer.nodestake.org/gitopia',
|
package/mainnet/mun/chain.js
CHANGED
|
@@ -47,10 +47,6 @@ const info = {
|
|
|
47
47
|
address: 'https://mainnet-mun-rpc.konsortech.xyz',
|
|
48
48
|
provider: 'KonsorTech'
|
|
49
49
|
},
|
|
50
|
-
{
|
|
51
|
-
address: 'https://rpc.mun.tcnetwork.io',
|
|
52
|
-
provider: 'TC Network'
|
|
53
|
-
},
|
|
54
50
|
{
|
|
55
51
|
address: 'https://mun_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
56
52
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
@@ -65,10 +61,6 @@ const info = {
|
|
|
65
61
|
address: 'https://mainnet-mun-api.konsortech.xyz',
|
|
66
62
|
provider: 'KonsorTech'
|
|
67
63
|
},
|
|
68
|
-
{
|
|
69
|
-
address: 'https://rest.mun.tcnetwork.io',
|
|
70
|
-
provider: 'TC Network'
|
|
71
|
-
},
|
|
72
64
|
{
|
|
73
65
|
address: 'https://mun_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
74
66
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
@@ -94,11 +86,6 @@ const info = {
|
|
|
94
86
|
url: 'https://ping.pub/mun',
|
|
95
87
|
txPage: 'https://ping.pub/mun/${txHash}'
|
|
96
88
|
},
|
|
97
|
-
{
|
|
98
|
-
kind: 'TC Network',
|
|
99
|
-
url: 'https://explorer.tcnetwork.io/mun',
|
|
100
|
-
txPage: 'https://explorer.tcnetwork.io/mun/transaction/${txHash}'
|
|
101
|
-
},
|
|
102
89
|
{
|
|
103
90
|
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
104
91
|
url: 'https://explorer.whenmoonwhenlambo.money/mun',
|
|
@@ -13826,7 +13826,6 @@ const info = {
|
|
|
13826
13826
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png',
|
|
13827
13827
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg'
|
|
13828
13828
|
}],
|
|
13829
|
-
coingeckoId: 'nim-network',
|
|
13830
13829
|
keywords: [
|
|
13831
13830
|
'gaming',
|
|
13832
13831
|
'AI',
|
|
@@ -14999,7 +14998,8 @@ const info = {
|
|
|
14999
14998
|
}]
|
|
15000
14999
|
},
|
|
15001
15000
|
{
|
|
15002
|
-
description: '
|
|
15001
|
+
description: 'Juris Protocol is the premier lending platform for the Terra Ecosystem, delivering decentralized lending and borrowing markets to enhance financial accessibility and utility.',
|
|
15002
|
+
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.',
|
|
15003
15003
|
denomUnits: [{
|
|
15004
15004
|
denom: 'ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98',
|
|
15005
15005
|
exponent: 0,
|
|
@@ -15013,6 +15013,11 @@ const info = {
|
|
|
15013
15013
|
name: 'Juris Protocol',
|
|
15014
15014
|
display: 'rakoff',
|
|
15015
15015
|
symbol: 'JURIS',
|
|
15016
|
+
coingeckoId: 'juris-protocol',
|
|
15017
|
+
socials: {
|
|
15018
|
+
website: 'https://jurisprotocol.com/',
|
|
15019
|
+
twitter: 'https://x.com/jurisprotocol'
|
|
15020
|
+
},
|
|
15016
15021
|
traces: [{
|
|
15017
15022
|
type: 'ibc-cw20',
|
|
15018
15023
|
counterparty: {
|
package/mainnet/seda/chain.js
CHANGED
|
@@ -139,6 +139,10 @@ const info = {
|
|
|
139
139
|
{
|
|
140
140
|
address: 'https://seda.rpc.cumulo.org.es',
|
|
141
141
|
provider: 'Cumulo'
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
address: 'https://rpc.seda.tcnetwork.io',
|
|
145
|
+
provider: 'TC Network'
|
|
142
146
|
}
|
|
143
147
|
],
|
|
144
148
|
rest: [
|
|
@@ -213,6 +217,10 @@ const info = {
|
|
|
213
217
|
{
|
|
214
218
|
address: 'https://seda.api.cumulo.org.es',
|
|
215
219
|
provider: 'Cumulo'
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
address: 'https://rest.seda.tcnetwork.io',
|
|
223
|
+
provider: 'TC Network'
|
|
216
224
|
}
|
|
217
225
|
],
|
|
218
226
|
grpc: [
|
|
@@ -263,6 +271,11 @@ const info = {
|
|
|
263
271
|
]
|
|
264
272
|
},
|
|
265
273
|
explorers: [
|
|
274
|
+
{
|
|
275
|
+
kind: 'TC Network',
|
|
276
|
+
url: 'https://explorer.tcnetwork.io/seda',
|
|
277
|
+
txPage: 'https://explorer.tcnetwork.io/seda/transaction/${txHash}'
|
|
278
|
+
},
|
|
266
279
|
{
|
|
267
280
|
kind: 'Chainroot',
|
|
268
281
|
url: 'https://explorer.chainroot.io/seda',
|
|
@@ -60,6 +60,35 @@ const info = [
|
|
|
60
60
|
}
|
|
61
61
|
}]
|
|
62
62
|
},
|
|
63
|
+
{
|
|
64
|
+
$schema: '../ibc_data.schema.json',
|
|
65
|
+
chain1: {
|
|
66
|
+
chainName: 'atomone',
|
|
67
|
+
clientId: '07-tendermint-6',
|
|
68
|
+
connectionId: 'connection-7'
|
|
69
|
+
},
|
|
70
|
+
chain2: {
|
|
71
|
+
chainName: 'stargaze',
|
|
72
|
+
clientId: '07-tendermint-380',
|
|
73
|
+
connectionId: 'connection-337'
|
|
74
|
+
},
|
|
75
|
+
channels: [{
|
|
76
|
+
chain1: {
|
|
77
|
+
channelId: 'channel-3',
|
|
78
|
+
portId: 'transfer'
|
|
79
|
+
},
|
|
80
|
+
chain2: {
|
|
81
|
+
channelId: 'channel-448',
|
|
82
|
+
portId: 'transfer'
|
|
83
|
+
},
|
|
84
|
+
ordering: 'unordered',
|
|
85
|
+
version: 'ics20-1',
|
|
86
|
+
tags: {
|
|
87
|
+
status: 'live',
|
|
88
|
+
preferred: true
|
|
89
|
+
}
|
|
90
|
+
}]
|
|
91
|
+
},
|
|
63
92
|
{
|
|
64
93
|
$schema: '../ibc_data.schema.json',
|
|
65
94
|
chain1: {
|
package/mainnet/sunrise/chain.js
CHANGED
|
@@ -68,6 +68,10 @@ const info = {
|
|
|
68
68
|
{
|
|
69
69
|
address: 'https://rpc-sunrise.nodeist.net',
|
|
70
70
|
provider: 'Nodeist'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
address: 'https://rpc.sunrise.tcnetwork.io',
|
|
74
|
+
provider: 'TC Network'
|
|
71
75
|
}
|
|
72
76
|
],
|
|
73
77
|
rest: [
|
|
@@ -82,6 +86,10 @@ const info = {
|
|
|
82
86
|
{
|
|
83
87
|
address: 'https://api-sunrise.nodeist.net',
|
|
84
88
|
provider: 'Nodeist'
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
address: 'https://rest.sunrise.tcnetwork.io',
|
|
92
|
+
provider: 'TC Network'
|
|
85
93
|
}
|
|
86
94
|
],
|
|
87
95
|
grpc: [{
|
|
@@ -93,6 +101,11 @@ const info = {
|
|
|
93
101
|
}]
|
|
94
102
|
},
|
|
95
103
|
explorers: [
|
|
104
|
+
{
|
|
105
|
+
kind: 'TC Network',
|
|
106
|
+
url: 'https://explorer.tcnetwork.io/sunrise',
|
|
107
|
+
txPage: 'https://explorer.tcnetwork.io/sunrise/transaction/${txHash}'
|
|
108
|
+
},
|
|
96
109
|
{
|
|
97
110
|
kind: 'Risescan',
|
|
98
111
|
url: 'https://risescan.sunriselayer.io',
|
|
@@ -4663,7 +4663,13 @@ const info = {
|
|
|
4663
4663
|
}]
|
|
4664
4664
|
},
|
|
4665
4665
|
{
|
|
4666
|
-
description: 'Juris Protocol is the
|
|
4666
|
+
description: 'Juris Protocol is the premier lending platform for the Terra Ecosystem, delivering decentralized lending and borrowing markets to enhance financial accessibility and utility.',
|
|
4667
|
+
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.',
|
|
4668
|
+
socials: {
|
|
4669
|
+
website: 'https://jurisprotocol.com/',
|
|
4670
|
+
twitter: 'https://x.com/jurisprotocol'
|
|
4671
|
+
},
|
|
4672
|
+
coingeckoId: 'juris-protocol',
|
|
4667
4673
|
typeAsset: 'cw20',
|
|
4668
4674
|
address: 'terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2',
|
|
4669
4675
|
denomUnits: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.45",
|
|
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.45"
|
|
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": "bc07cb1f6c0ee4350b5d6a6df67183af5c06b13d"
|
|
43
43
|
}
|
|
@@ -23,17 +23,17 @@ const info = {
|
|
|
23
23
|
},
|
|
24
24
|
codebase: {
|
|
25
25
|
gitRepo: 'https://github.com/cheqd/cheqd-node',
|
|
26
|
-
recommendedVersion: '
|
|
27
|
-
compatibleVersions: ['
|
|
26
|
+
recommendedVersion: 'v4.1.1',
|
|
27
|
+
compatibleVersions: ['v4.1.0', 'v4.1.1'],
|
|
28
28
|
binaries: {
|
|
29
|
-
"linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
30
|
-
"linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
31
|
-
"darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
32
|
-
"darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/
|
|
29
|
+
"linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-amd64.tar.gz',
|
|
30
|
+
"linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-arm64.tar.gz',
|
|
31
|
+
"darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-amd64.tar.gz',
|
|
32
|
+
"darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-arm64.tar.gz'
|
|
33
33
|
},
|
|
34
34
|
consensus: {
|
|
35
35
|
type: 'cometbft',
|
|
36
|
-
version: '0.
|
|
36
|
+
version: '0.38.12'
|
|
37
37
|
},
|
|
38
38
|
genesis: {
|
|
39
39
|
genesisUrl: 'https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/testnet/genesis.json'
|
|
@@ -41,12 +41,12 @@ const info = {
|
|
|
41
41
|
sdk: {
|
|
42
42
|
type: 'cosmos',
|
|
43
43
|
repo: 'https://github.com/cheqd/cosmos-sdk',
|
|
44
|
-
version: 'v0.
|
|
45
|
-
tag: 'v0.
|
|
44
|
+
version: 'v0.50.14',
|
|
45
|
+
tag: 'v0.50.14-height-mismatch-iavl'
|
|
46
46
|
},
|
|
47
47
|
ibc: {
|
|
48
48
|
type: 'go',
|
|
49
|
-
version: '
|
|
49
|
+
version: 'v8.7.0'
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
apis: {
|