@juno-network/assets 0.13.0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
package/src/chain.ts CHANGED
@@ -10,15 +10,13 @@ const chain: Chain = {
10
10
  bech32_prefix: 'juno',
11
11
  daemon_name: 'junod',
12
12
  node_home: '$HOME/.juno',
13
- genesis: {
14
- genesis_url: 'https://download.dimi.sh/juno-phoenix2-genesis.tar.gz'
15
- },
16
13
  key_algos: ['secp256k1'],
17
14
  slip44: 118,
18
15
  fees: {
19
16
  fee_tokens: [
20
17
  {
21
18
  denom: 'ujuno',
19
+ fixed_min_gas_price: 0.0025,
22
20
  low_gas_price: 0.03,
23
21
  average_gas_price: 0.04,
24
22
  high_gas_price: 0.05
@@ -34,12 +32,15 @@ const chain: Chain = {
34
32
  },
35
33
  codebase: {
36
34
  git_repo: 'https://github.com/CosmosContracts/juno',
37
- recommended_version: 'v9.0.0',
38
- compatible_versions: ['v9.0.0'],
35
+ recommended_version: 'v11.0.0',
36
+ compatible_versions: ['v11.0.0'],
39
37
  cosmos_sdk_version: '0.45',
40
38
  tendermint_version: '0.34',
41
- cosmwasm_version: '0.27',
42
- cosmwasm_enabled: true
39
+ cosmwasm_version: '0.28',
40
+ cosmwasm_enabled: true,
41
+ genesis: {
42
+ genesis_url: 'https://download.dimi.sh/juno-phoenix2-genesis.tar.gz'
43
+ }
43
44
  },
44
45
  peers: {
45
46
  seeds: [
@@ -65,6 +66,11 @@ const chain: Chain = {
65
66
  id: '20e1000e88125698264454a884812746c2eb4807',
66
67
  address: 'seeds.lavenderfive.com:12656',
67
68
  provider: 'Lavender.Five Nodes 🐝'
69
+ },
70
+ {
71
+ id: 'ea67180befe4d9ca71142d21ada8ff58cc08f71c',
72
+ address: 'seeds.goldenratiostaking.net:1627',
73
+ provider: 'Golden Ratio Staking'
68
74
  }
69
75
  ],
70
76
  persistent_peers: [
@@ -128,6 +134,10 @@ const chain: Chain = {
128
134
  address: 'https://juno-rpc.polkachu.com',
129
135
  provider: 'Polkachu'
130
136
  },
137
+ {
138
+ address: 'https://juno.rpc.interchain.ivaldilabs.xyz',
139
+ provider: 'Ivaldi Labs'
140
+ },
131
141
  {
132
142
  address: 'https://juno-rpc.lavenderfive.com:443',
133
143
  provider: 'Lavender.Five Nodes 🐝'
@@ -136,10 +146,6 @@ const chain: Chain = {
136
146
  address: 'https://rpc.juno.pupmos.network',
137
147
  provider: 'PUPMØS'
138
148
  },
139
- {
140
- address: 'https://rpc.junomint.com',
141
- provider: 'EZStaking.io'
142
- },
143
149
  {
144
150
  address: 'https://rpc-juno-ia.cosmosia.notional.ventures/',
145
151
  provider: 'Notional'
@@ -149,8 +155,36 @@ const chain: Chain = {
149
155
  provider: 'ChainTools'
150
156
  },
151
157
  {
152
- address: 'https://juno-rpc.kleomed.es',
158
+ address: 'https://rpc.juno.silknodes.io/',
159
+ provider: 'Silk Nodes'
160
+ },
161
+ {
162
+ address: 'https://juno-rpc.kleomedes.network',
153
163
  provider: 'Kleomedes'
164
+ },
165
+ {
166
+ address: 'https://rpc.juno.interbloc.org',
167
+ provider: 'Interbloc'
168
+ },
169
+ {
170
+ address: 'https://juno.nodejumper.io',
171
+ provider: 'Nodejumper 🚀'
172
+ },
173
+ {
174
+ address: 'https://juno.rpc.stakin.com',
175
+ provider: 'Stakin'
176
+ },
177
+ {
178
+ address: 'https://juno-rpc.icycro.org',
179
+ provider: 'IcyCRO 🧊'
180
+ },
181
+ {
182
+ address: 'https://rpc-juno.goldenratiostaking.net',
183
+ provider: 'Golden Ratio Staking'
184
+ },
185
+ {
186
+ address: 'https://rpc.juno.bh.rocks',
187
+ provider: 'BlockHunters 🎯'
154
188
  }
155
189
  ],
156
190
  rest: [
@@ -162,6 +196,10 @@ const chain: Chain = {
162
196
  address: 'https://lcd-juno.itastakers.com',
163
197
  provider: 'itastakers'
164
198
  },
199
+ {
200
+ address: 'https://juno.rest.interchain.ivaldilabs.xyz',
201
+ provider: 'Ivaldi Labs'
202
+ },
165
203
  {
166
204
  address: 'https://rest-juno.ecostake.com',
167
205
  provider: 'ecostake'
@@ -174,10 +212,6 @@ const chain: Chain = {
174
212
  address: 'https://api.juno.pupmos.network',
175
213
  provider: 'PUPMØS'
176
214
  },
177
- {
178
- address: 'https://lcd.junomint.com',
179
- provider: 'EZStaking.io'
180
- },
181
215
  {
182
216
  address: 'https://api-juno-ia.cosmosia.notional.ventures/',
183
217
  provider: 'Notional'
@@ -191,8 +225,28 @@ const chain: Chain = {
191
225
  provider: 'Polkachu'
192
226
  },
193
227
  {
194
- address: 'https://juno-api.kleomed.es',
228
+ address: 'https://api.juno.silknodes.io/',
229
+ provider: 'Silk Nodes'
230
+ },
231
+ {
232
+ address: 'https://juno-api.kleomedes.network',
195
233
  provider: 'Kleomedes'
234
+ },
235
+ {
236
+ address: 'https://api.juno.interbloc.org',
237
+ provider: 'Interbloc'
238
+ },
239
+ {
240
+ address: 'https://juno.nodejumper.io:1317',
241
+ provider: 'Nodejumper 🚀'
242
+ },
243
+ {
244
+ address: 'https://juno.rest.stakin.com',
245
+ provider: 'Stakin'
246
+ },
247
+ {
248
+ address: 'https://api.juno.bh.rocks',
249
+ provider: 'BlockHunters 🎯'
196
250
  }
197
251
  ],
198
252
  grpc: [
@@ -215,10 +269,35 @@ const chain: Chain = {
215
269
  {
216
270
  address: 'juno-grpc.polkachu.com:12690',
217
271
  provider: 'Polkachu'
272
+ },
273
+ {
274
+ address: 'https://grpc.juno.silknodes.io/',
275
+ provider: 'Silk Nodes'
276
+ },
277
+ {
278
+ address: 'juno.grpc.interchain.ivaldilabs.xyz:443',
279
+ provider: 'Ivaldi Labs'
280
+ },
281
+ {
282
+ address: 'https://juno.nodejumper.io:9090',
283
+ provider: 'Nodejumper 🚀'
284
+ },
285
+ {
286
+ address: 'juno.grpc.stakin.com:443',
287
+ provider: 'Stakin'
288
+ },
289
+ {
290
+ address: 'https://grpc.juno.bh.rocks:443',
291
+ provider: 'BlockHunters 🎯'
218
292
  }
219
293
  ]
220
294
  },
221
295
  explorers: [
296
+ {
297
+ kind: 'EZStaking Tools',
298
+ url: 'https://ezstaking.tools/juno',
299
+ tx_page: 'https://ezstaking.tools/juno/txs/${txHash}'
300
+ },
222
301
  {
223
302
  kind: 'ping.pub',
224
303
  url: 'https://ping.pub/juno',
package/src/testnet.ts CHANGED
@@ -9,10 +9,6 @@ const testnet: Chain = {
9
9
  bech32_prefix: 'juno',
10
10
  daemon_name: 'junod',
11
11
  node_home: '$HOME/.juno',
12
- genesis: {
13
- genesis_url:
14
- 'https://raw.githubusercontent.com/CosmosContracts/testnets/main/uni-5/genesis.json'
15
- },
16
12
  key_algos: ['secp256k1'],
17
13
  slip44: 118,
18
14
  fees: {
@@ -39,7 +35,11 @@ const testnet: Chain = {
39
35
  cosmos_sdk_version: '0.45',
40
36
  tendermint_version: '0.34',
41
37
  cosmwasm_version: '0.27',
42
- cosmwasm_enabled: true
38
+ cosmwasm_enabled: true,
39
+ genesis: {
40
+ genesis_url:
41
+ 'https://raw.githubusercontent.com/CosmosContracts/testnets/main/uni-5/genesis.json'
42
+ }
43
43
  },
44
44
  peers: {
45
45
  seeds: [],
@@ -53,10 +53,6 @@ const testnet: Chain = {
53
53
  },
54
54
  apis: {
55
55
  rpc: [
56
- {
57
- address: 'https://rpc.uni.junomint.com',
58
- provider: 'EZStaking.io'
59
- },
60
56
  {
61
57
  address: 'https://rpc.uni.junonetwork.io',
62
58
  provider: 'Juno'
@@ -67,10 +63,6 @@ const testnet: Chain = {
67
63
  }
68
64
  ],
69
65
  rest: [
70
- {
71
- address: 'https://lcd.uni.junomint.com',
72
- provider: 'EZStaking.io'
73
- },
74
66
  {
75
67
  address: 'https://api.uni.junonetwork.io',
76
68
  provider: 'Juno'
@@ -88,6 +80,11 @@ const testnet: Chain = {
88
80
  ]
89
81
  },
90
82
  explorers: [
83
+ {
84
+ kind: 'EZStaking Tools',
85
+ url: 'https://testnet.ezstaking.tools/juno-testnet',
86
+ tx_page: 'https://testnet.ezstaking.tools/juno-testnet/txs/${txHash}'
87
+ },
91
88
  {
92
89
  kind: 'Mintscan',
93
90
  url: 'https://testnet.mintscan.io/juno-testnet',
package/types/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: 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;
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 };