@chain-registry/juno 1.70.218 → 1.70.220
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 +5 -1
- package/esm/chain.js +5 -1
- package/esm/testnet.js +26 -6
- package/package.json +4 -4
- package/testnet.js +26 -6
package/chain.js
CHANGED
|
@@ -184,6 +184,10 @@ const chain = {
|
|
|
184
184
|
address: 'juno-grpc.stakeandrelax.net:12690',
|
|
185
185
|
provider: 'Stake&Relax Validator 🦥'
|
|
186
186
|
},
|
|
187
|
+
{
|
|
188
|
+
address: 'juno.grpc.kleomedes.network',
|
|
189
|
+
provider: 'Kleomedes'
|
|
190
|
+
},
|
|
187
191
|
{
|
|
188
192
|
address: 'juno.lavenderfive.com:443',
|
|
189
193
|
provider: 'Lavender.Five Nodes 🐝'
|
|
@@ -252,7 +256,7 @@ const chain = {
|
|
|
252
256
|
tx_page: 'https://explorer.tcnetwork.io/juno/transaction/${txHash}'
|
|
253
257
|
},
|
|
254
258
|
{
|
|
255
|
-
kind: 'Kleomedes',
|
|
259
|
+
kind: 'Stake Hub by Kleomedes',
|
|
256
260
|
url: 'https://www.stake-hub.xyz/juno'
|
|
257
261
|
},
|
|
258
262
|
{
|
package/esm/chain.js
CHANGED
|
@@ -182,6 +182,10 @@ const chain = {
|
|
|
182
182
|
address: 'juno-grpc.stakeandrelax.net:12690',
|
|
183
183
|
provider: 'Stake&Relax Validator 🦥'
|
|
184
184
|
},
|
|
185
|
+
{
|
|
186
|
+
address: 'juno.grpc.kleomedes.network',
|
|
187
|
+
provider: 'Kleomedes'
|
|
188
|
+
},
|
|
185
189
|
{
|
|
186
190
|
address: 'juno.lavenderfive.com:443',
|
|
187
191
|
provider: 'Lavender.Five Nodes 🐝'
|
|
@@ -250,7 +254,7 @@ const chain = {
|
|
|
250
254
|
tx_page: 'https://explorer.tcnetwork.io/juno/transaction/${txHash}'
|
|
251
255
|
},
|
|
252
256
|
{
|
|
253
|
-
kind: 'Kleomedes',
|
|
257
|
+
kind: 'Stake Hub by Kleomedes',
|
|
254
258
|
url: 'https://www.stake-hub.xyz/juno'
|
|
255
259
|
},
|
|
256
260
|
{
|
package/esm/testnet.js
CHANGED
|
@@ -49,23 +49,40 @@ const testnet = {
|
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
apis: {
|
|
52
|
-
rpc: [
|
|
52
|
+
rpc: [
|
|
53
|
+
{
|
|
53
54
|
address: 'https://juno-testnet-rpc.polkachu.com',
|
|
54
55
|
provider: 'Polkachu'
|
|
55
|
-
},
|
|
56
|
+
},
|
|
57
|
+
{
|
|
56
58
|
address: 'https://rpc-uni.junonetwork.io',
|
|
57
59
|
provider: 'Juno Network'
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
address: 'https://junotestnet-rpc.kleomedes.network',
|
|
63
|
+
provider: 'Kleomedes'
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
rest: [
|
|
67
|
+
{
|
|
60
68
|
address: 'https://juno-testnet-api.polkachu.com',
|
|
61
69
|
provider: 'Polkachu'
|
|
62
|
-
},
|
|
70
|
+
},
|
|
71
|
+
{
|
|
63
72
|
address: 'https://lcd-uni.junonetwork.io',
|
|
64
73
|
provider: 'Juno Network'
|
|
65
|
-
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
address: 'https://junotestnet-api.kleomedes.network',
|
|
77
|
+
provider: 'Kleomedes'
|
|
78
|
+
}
|
|
79
|
+
],
|
|
66
80
|
grpc: [{
|
|
67
81
|
address: 'juno-testnet-grpc.polkachu.com:12690',
|
|
68
82
|
provider: 'Polkachu'
|
|
83
|
+
}, {
|
|
84
|
+
address: 'junotestnet.gprc.kleomedes.network',
|
|
85
|
+
provider: 'Kleomedes'
|
|
69
86
|
}]
|
|
70
87
|
},
|
|
71
88
|
explorers: [{
|
|
@@ -73,6 +90,9 @@ const testnet = {
|
|
|
73
90
|
url: 'https://explorer.stavr.tech/Juno-Testnet',
|
|
74
91
|
tx_page: 'https://explorer.stavr.tech/Juno-Testnet/txs/${txHash}',
|
|
75
92
|
account_page: 'https://explorer.stavr.tech/Juno-Testnet/account/${accountAddress}'
|
|
93
|
+
}, {
|
|
94
|
+
kind: 'Stake Hub by Kleomedes',
|
|
95
|
+
url: 'https://www.stake-hub.xyz/junotestnet'
|
|
76
96
|
}]
|
|
77
97
|
};
|
|
78
98
|
export default testnet;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "1.70.
|
|
3
|
+
"version": "1.70.220",
|
|
4
4
|
"description": "Chain Registry info for Juno",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/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.220"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@chain-registry/types": "^0.50.
|
|
35
|
+
"@chain-registry/types": "^0.50.135"
|
|
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": "9e38e5644419ce771c85a28d28160950175face5"
|
|
47
47
|
}
|
package/testnet.js
CHANGED
|
@@ -51,23 +51,40 @@ const testnet = {
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
apis: {
|
|
54
|
-
rpc: [
|
|
54
|
+
rpc: [
|
|
55
|
+
{
|
|
55
56
|
address: 'https://juno-testnet-rpc.polkachu.com',
|
|
56
57
|
provider: 'Polkachu'
|
|
57
|
-
},
|
|
58
|
+
},
|
|
59
|
+
{
|
|
58
60
|
address: 'https://rpc-uni.junonetwork.io',
|
|
59
61
|
provider: 'Juno Network'
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
address: 'https://junotestnet-rpc.kleomedes.network',
|
|
65
|
+
provider: 'Kleomedes'
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
rest: [
|
|
69
|
+
{
|
|
62
70
|
address: 'https://juno-testnet-api.polkachu.com',
|
|
63
71
|
provider: 'Polkachu'
|
|
64
|
-
},
|
|
72
|
+
},
|
|
73
|
+
{
|
|
65
74
|
address: 'https://lcd-uni.junonetwork.io',
|
|
66
75
|
provider: 'Juno Network'
|
|
67
|
-
}
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
address: 'https://junotestnet-api.kleomedes.network',
|
|
79
|
+
provider: 'Kleomedes'
|
|
80
|
+
}
|
|
81
|
+
],
|
|
68
82
|
grpc: [{
|
|
69
83
|
address: 'juno-testnet-grpc.polkachu.com:12690',
|
|
70
84
|
provider: 'Polkachu'
|
|
85
|
+
}, {
|
|
86
|
+
address: 'junotestnet.gprc.kleomedes.network',
|
|
87
|
+
provider: 'Kleomedes'
|
|
71
88
|
}]
|
|
72
89
|
},
|
|
73
90
|
explorers: [{
|
|
@@ -75,6 +92,9 @@ const testnet = {
|
|
|
75
92
|
url: 'https://explorer.stavr.tech/Juno-Testnet',
|
|
76
93
|
tx_page: 'https://explorer.stavr.tech/Juno-Testnet/txs/${txHash}',
|
|
77
94
|
account_page: 'https://explorer.stavr.tech/Juno-Testnet/account/${accountAddress}'
|
|
95
|
+
}, {
|
|
96
|
+
kind: 'Stake Hub by Kleomedes',
|
|
97
|
+
url: 'https://www.stake-hub.xyz/junotestnet'
|
|
78
98
|
}]
|
|
79
99
|
};
|
|
80
100
|
exports.default = testnet;
|