@chain-registry/juno 1.26.4 → 1.27.0
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/main/asset_list.js +1399 -33
- package/main/assets.js +22 -0
- package/main/chain.js +99 -14
- package/package.json +3 -3
- package/CHANGELOG.md +0 -520
package/main/assets.js
CHANGED
|
@@ -653,6 +653,7 @@ var assets = {
|
|
|
653
653
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png',
|
|
654
654
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg'
|
|
655
655
|
},
|
|
656
|
+
coingecko_id: 'wynd',
|
|
656
657
|
images: [{
|
|
657
658
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png',
|
|
658
659
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg'
|
|
@@ -1480,6 +1481,27 @@ var assets = {
|
|
|
1480
1481
|
images: [{
|
|
1481
1482
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bits.png'
|
|
1482
1483
|
}]
|
|
1484
|
+
}, {
|
|
1485
|
+
description: "The least memeable memecoin in existence. The cats have had their day, it's time for $POIL coin to take reign.",
|
|
1486
|
+
type_asset: 'cw20',
|
|
1487
|
+
address: 'juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw',
|
|
1488
|
+
denom_units: [{
|
|
1489
|
+
denom: 'cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw',
|
|
1490
|
+
exponent: 0
|
|
1491
|
+
}, {
|
|
1492
|
+
denom: 'poil',
|
|
1493
|
+
exponent: 6
|
|
1494
|
+
}],
|
|
1495
|
+
base: 'cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw',
|
|
1496
|
+
name: 'POIL',
|
|
1497
|
+
display: 'poil',
|
|
1498
|
+
symbol: 'POIL',
|
|
1499
|
+
logo_URIs: {
|
|
1500
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/poil.png'
|
|
1501
|
+
},
|
|
1502
|
+
images: [{
|
|
1503
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/poil.png'
|
|
1504
|
+
}]
|
|
1483
1505
|
}, {
|
|
1484
1506
|
description: 'The native token cw20 for Neta on Juno Chain',
|
|
1485
1507
|
type_asset: 'cw20',
|
package/main/chain.js
CHANGED
|
@@ -39,42 +39,75 @@ var chain = {
|
|
|
39
39
|
},
|
|
40
40
|
codebase: {
|
|
41
41
|
git_repo: 'https://github.com/CosmosContracts/juno',
|
|
42
|
-
recommended_version: '
|
|
43
|
-
compatible_versions: ['
|
|
44
|
-
|
|
42
|
+
recommended_version: 'v18.1.0',
|
|
43
|
+
compatible_versions: ['v18.1.0'],
|
|
44
|
+
binaries: {
|
|
45
|
+
'linux/amd64': 'https://github.com/CosmosContracts/juno/releases/download/v18.1.0/junod'
|
|
46
|
+
},
|
|
47
|
+
cosmos_sdk_version: '0.47.5',
|
|
45
48
|
consensus: {
|
|
46
49
|
type: 'cometbft',
|
|
47
|
-
version: '0.
|
|
50
|
+
version: '0.37.2'
|
|
48
51
|
},
|
|
49
|
-
cosmwasm_version: '0.
|
|
52
|
+
cosmwasm_version: '0.45.0',
|
|
50
53
|
cosmwasm_enabled: true,
|
|
54
|
+
ibc_go_version: 'v7.3.1',
|
|
51
55
|
genesis: {
|
|
52
56
|
genesis_url: 'https://download.dimi.sh/juno-phoenix2-genesis.tar.gz'
|
|
53
57
|
},
|
|
54
58
|
versions: [{
|
|
55
59
|
name: 'v13',
|
|
60
|
+
proposal: 271,
|
|
61
|
+
height: 7374801,
|
|
56
62
|
recommended_version: 'v13.0.0',
|
|
57
63
|
compatible_versions: ['v13.0.0'],
|
|
58
|
-
|
|
64
|
+
binaries: {
|
|
65
|
+
'linux/amd64': 'https://github.com/CosmosContracts/juno/releases/download/v13.0.0/junod'
|
|
66
|
+
},
|
|
67
|
+
cosmos_sdk_version: '0.45.14',
|
|
59
68
|
consensus: {
|
|
60
69
|
type: 'tendermint',
|
|
61
|
-
version: '
|
|
70
|
+
version: 'informalsystems/tendermint v0.34.26'
|
|
62
71
|
},
|
|
63
|
-
cosmwasm_version: '0.30',
|
|
72
|
+
cosmwasm_version: '0.30.0',
|
|
64
73
|
cosmwasm_enabled: true,
|
|
74
|
+
ibc_go_version: 'v4.3.0',
|
|
65
75
|
next_version_name: 'v14'
|
|
66
76
|
}, {
|
|
67
77
|
name: 'v14',
|
|
78
|
+
proposal: 282,
|
|
68
79
|
height: 7875721,
|
|
69
80
|
recommended_version: 'v14.1.0',
|
|
70
81
|
compatible_versions: ['v14.0.0', 'v14.1.0'],
|
|
82
|
+
binaries: {
|
|
83
|
+
'linux/amd64': 'https://github.com/CosmosContracts/juno/releases/download/v14.1.0/junod'
|
|
84
|
+
},
|
|
85
|
+
cosmos_sdk_version: '0.45.15',
|
|
86
|
+
consensus: {
|
|
87
|
+
type: 'cometbft',
|
|
88
|
+
version: 'mev-cometbft v0.34.27-mev.18'
|
|
89
|
+
},
|
|
90
|
+
cosmwasm_version: '0.31.0',
|
|
91
|
+
cosmwasm_enabled: true,
|
|
92
|
+
ibc_go_version: 'v4.3.0',
|
|
71
93
|
next_version_name: 'v15'
|
|
72
94
|
}, {
|
|
73
95
|
name: 'v15',
|
|
96
|
+
proposal: 295,
|
|
74
97
|
height: 8577241,
|
|
75
98
|
recommended_version: 'v15.0.0',
|
|
76
|
-
proposal: 295,
|
|
77
99
|
compatible_versions: ['v15.0.0'],
|
|
100
|
+
binaries: {
|
|
101
|
+
'linux/amd64': 'https://github.com/CosmosContracts/juno/releases/download/v15.0.0/junod'
|
|
102
|
+
},
|
|
103
|
+
cosmos_sdk_version: '0.45.16',
|
|
104
|
+
consensus: {
|
|
105
|
+
type: 'cometbft',
|
|
106
|
+
version: 'mev-cometbft v0.34.27-mev.18'
|
|
107
|
+
},
|
|
108
|
+
cosmwasm_version: '0.31.0',
|
|
109
|
+
cosmwasm_enabled: true,
|
|
110
|
+
ibc_go_version: 'v4.3.1',
|
|
78
111
|
next_version_name: 'v16'
|
|
79
112
|
}, {
|
|
80
113
|
name: 'v16',
|
|
@@ -82,6 +115,17 @@ var chain = {
|
|
|
82
115
|
height: 9481382,
|
|
83
116
|
recommended_version: 'v16.0.2',
|
|
84
117
|
compatible_versions: ['v16.0.0', 'v16.0.2'],
|
|
118
|
+
binaries: {
|
|
119
|
+
'linux/amd64': 'https://github.com/CosmosContracts/juno/releases/download/v16.0.2/junod'
|
|
120
|
+
},
|
|
121
|
+
cosmos_sdk_version: '0.47.3',
|
|
122
|
+
consensus: {
|
|
123
|
+
type: 'cometbft',
|
|
124
|
+
version: '0.37.2'
|
|
125
|
+
},
|
|
126
|
+
cosmwasm_version: '0.40.2',
|
|
127
|
+
cosmwasm_enabled: true,
|
|
128
|
+
ibc_go_version: 'v7.2.0',
|
|
85
129
|
next_version_name: 'v17'
|
|
86
130
|
}, {
|
|
87
131
|
name: 'v17',
|
|
@@ -89,6 +133,35 @@ var chain = {
|
|
|
89
133
|
height: 10078449,
|
|
90
134
|
recommended_version: 'v17.1.1',
|
|
91
135
|
compatible_versions: ['v17.0.0', 'v17.1.1'],
|
|
136
|
+
binaries: {
|
|
137
|
+
'linux/amd64': 'https://github.com/CosmosContracts/juno/releases/download/v17.1.1/junod'
|
|
138
|
+
},
|
|
139
|
+
cosmos_sdk_version: '0.47.5',
|
|
140
|
+
consensus: {
|
|
141
|
+
type: 'cometbft',
|
|
142
|
+
version: '0.37.2'
|
|
143
|
+
},
|
|
144
|
+
cosmwasm_version: '0.41.0',
|
|
145
|
+
cosmwasm_enabled: true,
|
|
146
|
+
ibc_go_version: 'v7.3.0',
|
|
147
|
+
next_version_name: 'v18'
|
|
148
|
+
}, {
|
|
149
|
+
name: 'v18',
|
|
150
|
+
proposal: 325,
|
|
151
|
+
height: 12265007,
|
|
152
|
+
recommended_version: 'v18.1.0',
|
|
153
|
+
compatible_versions: ['v18.1.0'],
|
|
154
|
+
binaries: {
|
|
155
|
+
'linux/amd64': 'https://github.com/CosmosContracts/juno/releases/download/v18.1.0/junod'
|
|
156
|
+
},
|
|
157
|
+
cosmos_sdk_version: '0.47.5',
|
|
158
|
+
consensus: {
|
|
159
|
+
type: 'cometbft',
|
|
160
|
+
version: '0.37.2'
|
|
161
|
+
},
|
|
162
|
+
cosmwasm_version: '0.45.0',
|
|
163
|
+
cosmwasm_enabled: true,
|
|
164
|
+
ibc_go_version: 'v7.3.1',
|
|
92
165
|
next_version_name: ''
|
|
93
166
|
}]
|
|
94
167
|
},
|
|
@@ -126,9 +199,9 @@ var chain = {
|
|
|
126
199
|
address: 'juno-mainnet-seed.autostake.com:27136',
|
|
127
200
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
128
201
|
}, {
|
|
129
|
-
id: '
|
|
202
|
+
id: 'c28827cb96c14c905b127b92065a3fb4cd77d7f6',
|
|
130
203
|
address: 'seeds.whispernode.com:12656',
|
|
131
|
-
provider: 'WhisperNode🤐'
|
|
204
|
+
provider: 'WhisperNode 🤐'
|
|
132
205
|
}, {
|
|
133
206
|
id: '509f6dbae3133a9df177edea051b31e1210b117e',
|
|
134
207
|
address: 'seed-juno-01.stakeflow.io:2307',
|
|
@@ -154,8 +227,8 @@ var chain = {
|
|
|
154
227
|
address: 'peer-juno-01.stakeflow.io:2307',
|
|
155
228
|
provider: 'Stakeflow'
|
|
156
229
|
}, {
|
|
157
|
-
id: '
|
|
158
|
-
address: '
|
|
230
|
+
id: '397281b9fa745482127093f08ac05724c2b8d6f8',
|
|
231
|
+
address: '65.108.195.213:33656',
|
|
159
232
|
provider: 'StakeTown'
|
|
160
233
|
}, {
|
|
161
234
|
id: '77c33f62d34c20a0e795240f4548ab741ea558d9',
|
|
@@ -166,7 +239,7 @@ var chain = {
|
|
|
166
239
|
apis: {
|
|
167
240
|
rpc: [{
|
|
168
241
|
address: 'https://rpc-juno.whispernode.com:443',
|
|
169
|
-
provider: 'WhisperNode🤐'
|
|
242
|
+
provider: 'WhisperNode 🤐'
|
|
170
243
|
}, {
|
|
171
244
|
address: 'https://rpc-juno.goldenratiostaking.net',
|
|
172
245
|
provider: 'Golden Ratio Staking'
|
|
@@ -236,6 +309,9 @@ var chain = {
|
|
|
236
309
|
}, {
|
|
237
310
|
address: 'https://rpc-juno.mainnet.validatrium.club:443',
|
|
238
311
|
provider: 'Validatrium'
|
|
312
|
+
}, {
|
|
313
|
+
address: 'https://juno-rpc.stakeandrelax.net',
|
|
314
|
+
provider: 'Stake&Relax 🦥'
|
|
239
315
|
}],
|
|
240
316
|
rest: [{
|
|
241
317
|
address: 'https://lcd-juno.itastakers.com',
|
|
@@ -300,6 +376,12 @@ var chain = {
|
|
|
300
376
|
}, {
|
|
301
377
|
address: 'https://juno-api.stake-town.com',
|
|
302
378
|
provider: 'StakeTown'
|
|
379
|
+
}, {
|
|
380
|
+
address: 'https://lcd-juno.whispernode.com:443',
|
|
381
|
+
provider: 'WhisperNode 🤐'
|
|
382
|
+
}, {
|
|
383
|
+
address: 'https://juno-api.stakeandrelax.net',
|
|
384
|
+
provider: 'Stake&Relax 🦥'
|
|
303
385
|
}],
|
|
304
386
|
grpc: [{
|
|
305
387
|
address: 'grpc-juno-ia.cosmosia.notional.ventures:443',
|
|
@@ -346,6 +428,9 @@ var chain = {
|
|
|
346
428
|
}, {
|
|
347
429
|
address: '138.201.21.121:24990',
|
|
348
430
|
provider: 'Validatrium'
|
|
431
|
+
}, {
|
|
432
|
+
address: 'juno-grpc.stakeandrelax.net:12690',
|
|
433
|
+
provider: 'Stake&Relax 🦥'
|
|
349
434
|
}]
|
|
350
435
|
},
|
|
351
436
|
explorers: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.0",
|
|
4
4
|
"description": "Chain Registry info for Juno",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"babel-core": "7.0.0-bridge.0",
|
|
58
58
|
"babel-jest": "29.5.0",
|
|
59
59
|
"babel-watch": "^7.7.2",
|
|
60
|
-
"chain-registry": "^1.
|
|
60
|
+
"chain-registry": "^1.26.0",
|
|
61
61
|
"cross-env": "^7.0.2",
|
|
62
62
|
"eslint": "8.38.0",
|
|
63
63
|
"eslint-config-prettier": "^8.8.0",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"@babel/runtime": "^7.21.0",
|
|
75
75
|
"@chain-registry/types": "^0.17.1"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "c5398f7753ca80387b35f08f0dba3a0be3be8bef"
|
|
78
78
|
}
|