@chain-registry/juno 1.70.21 → 1.70.23
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/chain.js +1 -11
- package/esm/chain.js +1 -11
- package/esm/testnet.js +1 -3
- package/index.d.ts +5 -5
- package/package.json +4 -4
- package/testnet.js +1 -3
package/chain.js
CHANGED
|
@@ -34,9 +34,7 @@ const chain = {
|
|
|
34
34
|
denom: 'ujuno'
|
|
35
35
|
}]
|
|
36
36
|
},
|
|
37
|
-
codebase: {
|
|
38
|
-
cosmos_sdk_version: 'v0.47.12'
|
|
39
|
-
},
|
|
37
|
+
codebase: {},
|
|
40
38
|
logo_URIs: {
|
|
41
39
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png',
|
|
42
40
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg'
|
|
@@ -52,10 +50,6 @@ const chain = {
|
|
|
52
50
|
address: 'http://juno.rpc.m.stavr.tech:1067',
|
|
53
51
|
provider: '🔥STAVR🔥'
|
|
54
52
|
},
|
|
55
|
-
{
|
|
56
|
-
address: 'https://rpc-juno.ecostake.com',
|
|
57
|
-
provider: 'ecostake'
|
|
58
|
-
},
|
|
59
53
|
{
|
|
60
54
|
address: 'https://juno-rpc.polkachu.com',
|
|
61
55
|
provider: 'Polkachu'
|
|
@@ -162,10 +156,6 @@ const chain = {
|
|
|
162
156
|
address: 'https://lcd-juno.itastakers.com',
|
|
163
157
|
provider: 'itastakers'
|
|
164
158
|
},
|
|
165
|
-
{
|
|
166
|
-
address: 'https://rest-juno.ecostake.com',
|
|
167
|
-
provider: 'ecostake'
|
|
168
|
-
},
|
|
169
159
|
{
|
|
170
160
|
address: 'https://rest.lavenderfive.com:443/juno',
|
|
171
161
|
provider: 'Lavender.Five Nodes 🐝'
|
package/esm/chain.js
CHANGED
|
@@ -32,9 +32,7 @@ const chain = {
|
|
|
32
32
|
denom: 'ujuno'
|
|
33
33
|
}]
|
|
34
34
|
},
|
|
35
|
-
codebase: {
|
|
36
|
-
cosmos_sdk_version: 'v0.47.12'
|
|
37
|
-
},
|
|
35
|
+
codebase: {},
|
|
38
36
|
logo_URIs: {
|
|
39
37
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png',
|
|
40
38
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg'
|
|
@@ -50,10 +48,6 @@ const chain = {
|
|
|
50
48
|
address: 'http://juno.rpc.m.stavr.tech:1067',
|
|
51
49
|
provider: '🔥STAVR🔥'
|
|
52
50
|
},
|
|
53
|
-
{
|
|
54
|
-
address: 'https://rpc-juno.ecostake.com',
|
|
55
|
-
provider: 'ecostake'
|
|
56
|
-
},
|
|
57
51
|
{
|
|
58
52
|
address: 'https://juno-rpc.polkachu.com',
|
|
59
53
|
provider: 'Polkachu'
|
|
@@ -160,10 +154,6 @@ const chain = {
|
|
|
160
154
|
address: 'https://lcd-juno.itastakers.com',
|
|
161
155
|
provider: 'itastakers'
|
|
162
156
|
},
|
|
163
|
-
{
|
|
164
|
-
address: 'https://rest-juno.ecostake.com',
|
|
165
|
-
provider: 'ecostake'
|
|
166
|
-
},
|
|
167
157
|
{
|
|
168
158
|
address: 'https://rest.lavenderfive.com:443/juno',
|
|
169
159
|
provider: 'Lavender.Five Nodes 🐝'
|
package/esm/testnet.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ import chain from './chain';
|
|
|
4
4
|
import testnet from './testnet';
|
|
5
5
|
import testnet_assets from './testnet_assets';
|
|
6
6
|
declare const _default: {
|
|
7
|
-
chain: Chain;
|
|
8
|
-
assets: AssetList;
|
|
9
|
-
asset_list: AssetList;
|
|
10
|
-
testnet: Chain;
|
|
11
|
-
testnet_assets: AssetList;
|
|
7
|
+
chain: import("@chain-registry/types").Chain;
|
|
8
|
+
assets: import("@chain-registry/types").AssetList;
|
|
9
|
+
asset_list: import("@chain-registry/types").AssetList;
|
|
10
|
+
testnet: import("@chain-registry/types").Chain;
|
|
11
|
+
testnet_assets: import("@chain-registry/types").AssetList;
|
|
12
12
|
};
|
|
13
13
|
export default _default;
|
|
14
14
|
export { asset_list, assets, chain, testnet, testnet_assets };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "1.70.
|
|
3
|
+
"version": "1.70.23",
|
|
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",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"chain-registry": "^1.69.
|
|
32
|
+
"chain-registry": "^1.69.23"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@chain-registry/types": "^0.50.
|
|
35
|
+
"@chain-registry/types": "^0.50.5"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|
|
38
38
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"tokens",
|
|
44
44
|
"juno"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "40f88102a9dc8242df401b400693b1f16af511b7"
|
|
47
47
|
}
|