@chain-registry/juno 1.29.7 → 1.30.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/CHANGELOG.md +16 -0
- package/main/asset_list.js +1 -1
- package/main/assets.js +43 -0
- package/main/chain.js +9 -0
- package/package.json +3 -3
package/main/assets.js
CHANGED
|
@@ -853,6 +853,7 @@ var assets = {
|
|
|
853
853
|
}]
|
|
854
854
|
}, {
|
|
855
855
|
description: 'Kleomedes Token',
|
|
856
|
+
extended_description: 'Kleomedes is an infrastructure provider that self-hosts nodes that validate IBC networks. We are active in supporting the chains we validate through providing infrastructure support in the form of RPC endpoints and relayers.\n\nAs a DAO, we have a community of delegators who are active in the discussion of governance on all the chains we validate. We are one of the only validators in the Cosmos Ecosystem that places 100% of profits under the control of DAO governance.\n\nWe support innovation in the Cosmos Ecosystem by funding and supporting projects that we believe, support the growth and decentralization of the networks we validate.',
|
|
856
857
|
type_asset: 'cw20',
|
|
857
858
|
address: 'juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy',
|
|
858
859
|
denom_units: [{
|
|
@@ -1544,6 +1545,48 @@ var assets = {
|
|
|
1544
1545
|
images: [{
|
|
1545
1546
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png'
|
|
1546
1547
|
}]
|
|
1548
|
+
}, {
|
|
1549
|
+
description: 'ATEN is NETA.',
|
|
1550
|
+
type_asset: 'cw20',
|
|
1551
|
+
address: 'juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r',
|
|
1552
|
+
denom_units: [{
|
|
1553
|
+
denom: 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r',
|
|
1554
|
+
exponent: 0
|
|
1555
|
+
}, {
|
|
1556
|
+
denom: 'aten',
|
|
1557
|
+
exponent: 6
|
|
1558
|
+
}],
|
|
1559
|
+
base: 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r',
|
|
1560
|
+
name: 'ATEN',
|
|
1561
|
+
display: 'aten',
|
|
1562
|
+
symbol: 'ATEN',
|
|
1563
|
+
logo_URIs: {
|
|
1564
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png'
|
|
1565
|
+
},
|
|
1566
|
+
images: [{
|
|
1567
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png'
|
|
1568
|
+
}]
|
|
1569
|
+
}, {
|
|
1570
|
+
description: 'HERA is the goddess of marriage in Greek mythology.',
|
|
1571
|
+
type_asset: 'cw20',
|
|
1572
|
+
address: 'juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0',
|
|
1573
|
+
denom_units: [{
|
|
1574
|
+
denom: 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0',
|
|
1575
|
+
exponent: 0
|
|
1576
|
+
}, {
|
|
1577
|
+
denom: 'hera',
|
|
1578
|
+
exponent: 6
|
|
1579
|
+
}],
|
|
1580
|
+
base: 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0',
|
|
1581
|
+
name: 'HERA',
|
|
1582
|
+
display: 'hera',
|
|
1583
|
+
symbol: 'HERA',
|
|
1584
|
+
logo_URIs: {
|
|
1585
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png'
|
|
1586
|
+
},
|
|
1587
|
+
images: [{
|
|
1588
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png'
|
|
1589
|
+
}]
|
|
1547
1590
|
}]
|
|
1548
1591
|
};
|
|
1549
1592
|
var _default = exports["default"] = assets;
|
package/main/chain.js
CHANGED
|
@@ -126,6 +126,9 @@ var chain = {
|
|
|
126
126
|
}, {
|
|
127
127
|
address: 'https://rpc.juno.bronbro.io:443',
|
|
128
128
|
provider: 'Bro_n_Bro'
|
|
129
|
+
}, {
|
|
130
|
+
address: 'https://juno-rpc.cogwheel.zone',
|
|
131
|
+
provider: 'Cogwheel'
|
|
129
132
|
}],
|
|
130
133
|
rest: [{
|
|
131
134
|
address: 'https://lcd-juno.itastakers.com',
|
|
@@ -196,6 +199,9 @@ var chain = {
|
|
|
196
199
|
}, {
|
|
197
200
|
address: 'https://lcd.juno.bronbro.io:443',
|
|
198
201
|
provider: 'Bro_n_Bro'
|
|
202
|
+
}, {
|
|
203
|
+
address: 'https://juno-api.cogwheel.zone',
|
|
204
|
+
provider: 'Cogwheel'
|
|
199
205
|
}],
|
|
200
206
|
grpc: [{
|
|
201
207
|
address: 'grpc-juno-ia.cosmosia.notional.ventures:443',
|
|
@@ -251,6 +257,9 @@ var chain = {
|
|
|
251
257
|
}, {
|
|
252
258
|
address: 'https://grpc.juno.bronbro.io:443',
|
|
253
259
|
provider: 'Bro_n_Bro'
|
|
260
|
+
}, {
|
|
261
|
+
address: 'juno-grpc.cogwheel.zone:443',
|
|
262
|
+
provider: 'Cogwheel'
|
|
254
263
|
}]
|
|
255
264
|
},
|
|
256
265
|
explorers: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.30.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.29.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.18.1"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "31826fca4fe57e56fdc6015fd52c999db6e3b16c"
|
|
78
78
|
}
|