@chain-registry/juno 1.17.0 → 1.18.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 +8 -0
- package/main/asset_list.js +29 -0
- package/main/chain.js +9 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.17.0...@chain-registry/juno@1.18.0) (2023-07-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @chain-registry/juno
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.16.0...@chain-registry/juno@1.17.0) (2023-07-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @chain-registry/juno
|
package/main/asset_list.js
CHANGED
|
@@ -2064,6 +2064,35 @@ var asset_list = {
|
|
|
2064
2064
|
logo_URIs: {
|
|
2065
2065
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png'
|
|
2066
2066
|
}
|
|
2067
|
+
}, {
|
|
2068
|
+
description: 'RAC',
|
|
2069
|
+
denom_units: [{
|
|
2070
|
+
denom: 'ibc/D8D6271EC54E3A96C6B9FB6C2BA9E99692B07CEB42754638029657072EA48337',
|
|
2071
|
+
exponent: 0,
|
|
2072
|
+
aliases: ['factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac']
|
|
2073
|
+
}, {
|
|
2074
|
+
denom: 'RAC',
|
|
2075
|
+
exponent: 6
|
|
2076
|
+
}],
|
|
2077
|
+
base: 'ibc/D8D6271EC54E3A96C6B9FB6C2BA9E99692B07CEB42754638029657072EA48337',
|
|
2078
|
+
name: 'RAC',
|
|
2079
|
+
display: 'RAC',
|
|
2080
|
+
symbol: 'RAC',
|
|
2081
|
+
logo_URIs: {
|
|
2082
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg',
|
|
2083
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png'
|
|
2084
|
+
},
|
|
2085
|
+
traces: [{
|
|
2086
|
+
type: 'ibc',
|
|
2087
|
+
counterparty: {
|
|
2088
|
+
channel_id: 'channel-1',
|
|
2089
|
+
base_denom: 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac',
|
|
2090
|
+
chain_name: 'migaloo'
|
|
2091
|
+
},
|
|
2092
|
+
chain: {
|
|
2093
|
+
channel_id: 'channel-210'
|
|
2094
|
+
}
|
|
2095
|
+
}]
|
|
2067
2096
|
}, {
|
|
2068
2097
|
description: 'The permissioned staking asset for Noble Chain',
|
|
2069
2098
|
denom_units: [{
|
package/main/chain.js
CHANGED
|
@@ -227,6 +227,9 @@ var chain = {
|
|
|
227
227
|
}, {
|
|
228
228
|
address: 'https://rpc-juno.validavia.me',
|
|
229
229
|
provider: 'Validavia'
|
|
230
|
+
}, {
|
|
231
|
+
address: 'https://juno-rpc.w3coins.io',
|
|
232
|
+
provider: 'w3coins'
|
|
230
233
|
}],
|
|
231
234
|
rest: [{
|
|
232
235
|
address: 'https://lcd-juno.itastakers.com',
|
|
@@ -297,6 +300,9 @@ var chain = {
|
|
|
297
300
|
}, {
|
|
298
301
|
address: 'https://lcd-juno.validavia.me',
|
|
299
302
|
provider: 'Validavia'
|
|
303
|
+
}, {
|
|
304
|
+
address: 'https://juno-api.w3coins.io',
|
|
305
|
+
provider: 'w3coins'
|
|
300
306
|
}],
|
|
301
307
|
grpc: [{
|
|
302
308
|
address: 'grpc-juno-ia.cosmosia.notional.ventures:443',
|
|
@@ -334,6 +340,9 @@ var chain = {
|
|
|
334
340
|
}, {
|
|
335
341
|
address: 'grpc-juno-01.stakeflow.io:2302',
|
|
336
342
|
provider: 'Stakeflow'
|
|
343
|
+
}, {
|
|
344
|
+
address: 'juno-grpc.w3coins.io:12690',
|
|
345
|
+
provider: 'w3coins'
|
|
337
346
|
}]
|
|
338
347
|
},
|
|
339
348
|
explorers: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.18.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",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"@babel/plugin-transform-runtime": "7.21.4",
|
|
51
51
|
"@babel/preset-env": "7.21.4",
|
|
52
52
|
"@babel/preset-typescript": "^7.21.4",
|
|
53
|
-
"@chain-registry/utils": "^1.
|
|
53
|
+
"@chain-registry/utils": "^1.13.0",
|
|
54
54
|
"@types/jest": "^29.5.1",
|
|
55
55
|
"@typescript-eslint/eslint-plugin": "5.59.0",
|
|
56
56
|
"@typescript-eslint/parser": "5.59.0",
|
|
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.17.0",
|
|
61
61
|
"cross-env": "^7.0.2",
|
|
62
62
|
"eslint": "8.38.0",
|
|
63
63
|
"eslint-config-prettier": "^8.8.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"@babel/runtime": "^7.21.0",
|
|
76
76
|
"@chain-registry/types": "^0.16.0"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "235baabaa618def6fc1bd1de9cd84660c30d1d71"
|
|
79
79
|
}
|