@pioneer-platform/nodes 8.3.13 → 8.3.17

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/lib/index.js CHANGED
@@ -24,8 +24,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
24
24
  });
25
25
  };
26
26
  var __generator = (this && this.__generator) || function (thisArg, body) {
27
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
28
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
27
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
28
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
29
29
  function verb(n) { return function (v) { return step([n, v]); }; }
30
30
  function step(op) {
31
31
  if (f) throw new TypeError("Generator is already executing.");
package/lib/seeds.d.ts CHANGED
@@ -33,28 +33,15 @@ export declare const blockbooks: ({
33
33
  networkId?: undefined;
34
34
  websocket?: undefined;
35
35
  })[];
36
- export declare const shapeshift: ({
36
+ interface NodeEntry {
37
37
  key: string;
38
38
  value: string;
39
- swagger: string;
39
+ swagger?: string;
40
40
  network: string;
41
- protocol: string;
41
+ protocol?: string;
42
42
  type: string;
43
- nodeType?: undefined;
44
- } | {
45
- key: string;
46
- value: string;
47
- network: string;
48
- protocol: string;
49
- type: string;
50
- swagger?: undefined;
51
- nodeType?: undefined;
52
- } | {
53
- key: string;
54
- value: string;
55
- network: string;
56
- nodeType: string;
57
- type: string;
58
- swagger?: undefined;
59
- protocol?: undefined;
60
- })[];
43
+ nodeType?: string;
44
+ service?: string;
45
+ }
46
+ export declare const shapeshift: NodeEntry[];
47
+ export {};
package/lib/seeds.js CHANGED
@@ -267,278 +267,281 @@ exports.blockbooks = [
267
267
  // }
268
268
  ];
269
269
  exports.shapeshift = [
270
- {
271
- key: "REACT_APP_UNCHAINED_ETHEREUM_HTTP_URL",
272
- value: "https://api.ethereum.shapeshift.com",
273
- swagger: "https://api.ethereum.shapeshift.com/swagger.json",
274
- network: "ethereum",
275
- protocol: "http",
276
- type: "unchained"
277
- },
278
- {
279
- key: "REACT_APP_UNCHAINED_ETHEREUM_WS_URL",
280
- value: "wss://api.ethereum.shapeshift.com",
281
- network: "ethereum",
282
- protocol: "websocket",
283
- type: "unchained"
284
- },
285
- {
286
- key: "REACT_APP_UNCHAINED_AVALANCHE_HTTP_URL",
287
- value: "https://api.avalanche.shapeshift.com",
288
- swagger: "https://api.avalanche.shapeshift.com/swagger.json",
289
- network: "avalanche",
290
- protocol: "http",
291
- type: "unchained"
292
- },
293
- {
294
- key: "REACT_APP_UNCHAINED_AVALANCHE_WS_URL",
295
- value: "wss://api.avalanche.shapeshift.com",
296
- network: "avalanche",
297
- protocol: "websocket",
298
- type: "unchained"
299
- },
300
- {
301
- key: "REACT_APP_UNCHAINED_OPTIMISM_HTTP_URL",
302
- value: "https://api.optimism.shapeshift.com",
303
- swagger: "https://api.optimism.shapeshift.com/swagger.json",
304
- network: "optimism",
305
- protocol: "http",
306
- type: "unchained"
307
- },
308
- {
309
- key: "REACT_APP_UNCHAINED_OPTIMISM_WS_URL",
310
- value: "wss://api.optimism.shapeshift.com",
311
- network: "optimism",
312
- protocol: "websocket",
313
- type: "unchained"
314
- },
315
- {
316
- key: "REACT_APP_UNCHAINED_BNBSMARTCHAIN_HTTP_URL",
317
- value: "https://api.bnbsmartchain.shapeshift.com",
318
- swagger: "https://api.bnbsmartchain.shapeshift.com/swagger.json",
319
- network: "bnbsmartchain",
320
- protocol: "http",
321
- type: "unchained"
322
- },
323
- {
324
- key: "REACT_APP_UNCHAINED_BNBSMARTCHAIN_WS_URL",
325
- value: "wss://api.bnbsmartchain.shapeshift.com",
326
- network: "bnbsmartchain",
327
- protocol: "websocket",
328
- type: "unchained"
329
- },
330
- {
331
- key: "REACT_APP_UNCHAINED_POLYGON_HTTP_URL",
332
- value: "https://dev-api.polygon.shapeshift.com",
333
- swagger: "https://dev-api.polygon.shapeshift.com/swagger.json",
334
- network: "polygon",
335
- protocol: "http",
336
- type: "unchained"
337
- },
338
- {
339
- key: "REACT_APP_UNCHAINED_POLYGON_WS_URL",
340
- value: "wss://dev-api.polygon.shapeshift.com",
341
- network: "polygon",
342
- protocol: "websocket",
343
- type: "unchained"
344
- },
345
- {
346
- key: "REACT_APP_UNCHAINED_GNOSIS_HTTP_URL",
347
- value: "https://api.gnosis.shapeshift.com",
348
- swagger: "https://api.gnosis.shapeshift.com/swagger.json",
349
- network: "gnosis",
350
- protocol: "http",
351
- type: "unchained"
352
- },
353
- {
354
- key: "REACT_APP_UNCHAINED_GNOSIS_WS_URL",
355
- value: "wss://api.gnosis.shapeshift.com",
356
- network: "gnosis",
357
- protocol: "websocket",
358
- type: "unchained"
359
- },
360
- {
361
- key: "REACT_APP_UNCHAINED_BITCOIN_HTTP_URL",
362
- value: "https://api.bitcoin.shapeshift.com",
363
- swagger: "https://api.bitcoin.shapeshift.com/swagger.json",
364
- network: "bitcoin",
365
- protocol: "http",
366
- type: "unchained"
367
- },
368
- {
369
- key: "REACT_APP_UNCHAINED_BITCOIN_WS_URL",
370
- value: "wss://api.bitcoin.shapeshift.com",
371
- network: "bitcoin",
372
- protocol: "websocket",
373
- type: "unchained"
374
- },
375
- {
376
- key: "REACT_APP_UNCHAINED_DOGECOIN_WS_URL",
377
- value: "wss://api.dogecoin.shapeshift.com",
378
- network: "dogecoin",
379
- protocol: "websocket",
380
- type: "unchained"
381
- },
382
- {
383
- key: "REACT_APP_UNCHAINED_DOGECOIN_HTTP_URL",
384
- value: "https://api.dogecoin.shapeshift.com",
385
- swagger: "https://api.dogecoin.shapeshift.com/swagger.json",
386
- network: "dogecoin",
387
- protocol: "http",
388
- type: "unchained"
389
- },
390
- {
391
- key: "REACT_APP_UNCHAINED_LITECOIN_WS_URL",
392
- value: "wss://api.litecoin.shapeshift.com",
393
- network: "litecoin",
394
- protocol: "websocket",
395
- type: "unchained"
396
- },
397
- {
398
- key: "REACT_APP_UNCHAINED_LITECOIN_HTTP_URL",
399
- value: "https://api.litecoin.shapeshift.com",
400
- swagger: "https://api.litecoin.shapeshift.com/swagger.json",
401
- network: "litecoin",
402
- protocol: "http",
403
- type: "unchained"
404
- },
405
- {
406
- key: "REACT_APP_UNCHAINED_BITCOINCASH_HTTP_URL",
407
- value: "https://api.bitcoincash.shapeshift.com",
408
- swagger: "https://api.bitcoincash.shapeshift.com/swagger.json",
409
- network: "bitcoincash",
410
- protocol: "http",
411
- type: "unchained"
412
- },
413
- {
414
- key: "REACT_APP_UNCHAINED_BITCOINCASH_WS_URL",
415
- value: "wss://api.bitcoincash.shapeshift.com",
416
- network: "bitcoincash",
417
- protocol: "websocket",
418
- type: "unchained"
419
- },
420
- {
421
- key: "REACT_APP_UNCHAINED_COSMOS_HTTP_URL",
422
- value: "https://api.cosmos.shapeshift.com",
423
- swagger: "https://api.cosmos.shapeshift.com/swagger",
424
- network: "cosmos",
425
- protocol: "http",
426
- type: "unchained"
427
- },
428
- {
429
- key: "REACT_APP_UNCHAINED_COSMOS_WS_URL",
430
- value: "wss://api.cosmos.shapeshift.com",
431
- network: "cosmos",
432
- protocol: "websocket",
433
- type: "unchained"
434
- },
435
- // fu shapeshift
436
- // {
437
- // key: "REACT_APP_UNCHAINED_OSMOSIS_HTTP_URL",
438
- // value: "https://api.osmosis.shapeshift.com",
439
- // swagger: "https://api.osmosis.shapeshift.com/swagger",
440
- // network: "osmosis",
441
- // protocol: "http",
442
- // type: "unchained"
443
- // },
444
- // {
445
- // key: "REACT_APP_UNCHAINED_OSMOSIS_WS_URL",
446
- // value: "wss://api.osmosis.shapeshift.com",
447
- // network: "osmosis",
448
- // protocol: "websocket",
449
- // type: "unchained"
450
- // },
451
- {
452
- key: "REACT_APP_UNCHAINED_THORCHAIN_HTTP_URL",
453
- value: "https://api.thorchain.shapeshift.com",
454
- swagger: "https://api.thorchain.shapeshift.com/swagger",
455
- network: "thorchain",
456
- protocol: "http",
457
- type: "unchained"
458
- },
459
- {
460
- key: "REACT_APP_UNCHAINED_THORCHAIN_WS_URL",
461
- value: "wss://api.thorchain.shapeshift.com",
462
- network: "thorchain",
463
- protocol: "websocket",
464
- type: "unchained"
465
- },
466
- {
467
- key: "REACT_APP_ETHEREUM_NODE_URL",
468
- value: "https://daemon.ethereum.shapeshift.com",
469
- network: "ethereum",
470
- nodeType: "eth-node",
471
- type: "daemon"
472
- },
473
- // {
474
- // key: "REACT_APP_ETHEREUM_INFURA_URL",
475
- // value: "https://mainnet.infura.io/v3/6e2f28ff4f5340fdb0db5da3baec0af2",
476
- // network: "ethereum",
477
- // nodeType: "infura",
478
- // type: "unchained"
479
- // },
480
- {
481
- key: "REACT_APP_AVALANCHE_NODE_URL",
482
- value: "https://daemon.avalanche.shapeshift.com/ext/bc/C/rpc",
483
- network: "avalanche",
484
- nodeType: "avalanche-node",
485
- type: "daemon"
486
- },
487
- {
488
- key: "REACT_APP_OPTIMISM_NODE_URL",
489
- value: "https://daemon.optimism.shapeshift.com",
490
- network: "optimism",
491
- nodeType: "optimism-node",
492
- type: "daemon"
493
- },
494
- {
495
- key: "REACT_APP_BNBSMARTCHAIN_NODE_URL",
496
- value: "https://daemon.bnbsmartchain.shapeshift.com",
497
- network: "bnbsmartchain",
498
- nodeType: "bnbsmartchain-node",
499
- type: "daemon"
500
- },
501
- {
502
- key: "REACT_APP_POLYGON_NODE_URL",
503
- value: "https://dev-daemon.polygon.shapeshift.com",
504
- network: "polygon",
505
- nodeType: "polygon-node",
506
- type: "daemon"
507
- },
508
- {
509
- key: "REACT_APP_GNOSIS_NODE_URL",
510
- value: "https://daemon.gnosis.shapeshift.com",
511
- network: "gnosis",
512
- nodeType: "gnosis-node",
513
- type: "daemon"
514
- },
515
- {
516
- key: "REACT_APP_COSMOS_NODE_URL",
517
- value: "https://daemon.cosmos.shapeshift.com",
518
- network: "cosmos",
519
- nodeType: "cosmos-node",
520
- type: "daemon"
521
- },
522
- {
523
- key: "REACT_APP_OSMOSIS_NODE_URL",
524
- value: "https://daemon.osmosis.shapeshift.com",
525
- network: "osmosis",
526
- nodeType: "osmosis-node",
527
- type: "daemon"
528
- },
529
- {
530
- key: "REACT_APP_THORCHAIN_NODE_URL",
531
- value: "https://daemon.thorchain.shapeshift.com",
532
- network: "thorchain",
533
- nodeType: "thorchain-node",
534
- type: "daemon"
535
- },
536
- // {
537
- // key: "REACT_APP_MIDGARD_URL",
538
- // value: "https://indexer.thorchain.shapeshift.com/v2",
539
- // network: "thorchain",
540
- // service: "midgard",
541
- // type: "unchained"
542
- // },
543
- //
270
+ // DISABLED: ShapeShift Unchained APIs are offline/deprecated (causing timeouts)
271
+ // The system will fall back to alternative providers (NowNodes Blockbook, BitGo, etc.)
272
+ // {
273
+ // key: "REACT_APP_UNCHAINED_ETHEREUM_HTTP_URL",
274
+ // value: "https://api.ethereum.shapeshift.com",
275
+ // swagger: "https://api.ethereum.shapeshift.com/swagger.json",
276
+ // network: "ethereum",
277
+ // protocol: "http",
278
+ // type: "unchained"
279
+ // },
280
+ // {
281
+ // key: "REACT_APP_UNCHAINED_ETHEREUM_WS_URL",
282
+ // value: "wss://api.ethereum.shapeshift.com",
283
+ // network: "ethereum",
284
+ // protocol: "websocket",
285
+ // type: "unchained"
286
+ // },
287
+ // {
288
+ // key: "REACT_APP_UNCHAINED_AVALANCHE_HTTP_URL",
289
+ // value: "https://api.avalanche.shapeshift.com",
290
+ // swagger: "https://api.avalanche.shapeshift.com/swagger.json",
291
+ // network: "avalanche",
292
+ // protocol: "http",
293
+ // type: "unchained"
294
+ // },
295
+ // {
296
+ // key: "REACT_APP_UNCHAINED_AVALANCHE_WS_URL",
297
+ // value: "wss://api.avalanche.shapeshift.com",
298
+ // network: "avalanche",
299
+ // protocol: "websocket",
300
+ // type: "unchained"
301
+ // },
302
+ // {
303
+ // key: "REACT_APP_UNCHAINED_OPTIMISM_HTTP_URL",
304
+ // value: "https://api.optimism.shapeshift.com",
305
+ // swagger: "https://api.optimism.shapeshift.com/swagger.json",
306
+ // network: "optimism",
307
+ // protocol: "http",
308
+ // type: "unchained"
309
+ // },
310
+ // {
311
+ // key: "REACT_APP_UNCHAINED_OPTIMISM_WS_URL",
312
+ // value: "wss://api.optimism.shapeshift.com",
313
+ // network: "optimism",
314
+ // protocol: "websocket",
315
+ // type: "unchained"
316
+ // },
317
+ // {
318
+ // key: "REACT_APP_UNCHAINED_BNBSMARTCHAIN_HTTP_URL",
319
+ // value: "https://api.bnbsmartchain.shapeshift.com",
320
+ // swagger: "https://api.bnbsmartchain.shapeshift.com/swagger.json",
321
+ // network: "bnbsmartchain",
322
+ // protocol: "http",
323
+ // type: "unchained"
324
+ // },
325
+ // {
326
+ // key: "REACT_APP_UNCHAINED_BNBSMARTCHAIN_WS_URL",
327
+ // value: "wss://api.bnbsmartchain.shapeshift.com",
328
+ // network: "bnbsmartchain",
329
+ // protocol: "websocket",
330
+ // type: "unchained"
331
+ // },
332
+ // {
333
+ // key: "REACT_APP_UNCHAINED_POLYGON_HTTP_URL",
334
+ // value: "https://dev-api.polygon.shapeshift.com",
335
+ // swagger: "https://dev-api.polygon.shapeshift.com/swagger.json",
336
+ // network: "polygon",
337
+ // protocol: "http",
338
+ // type: "unchained"
339
+ // },
340
+ // {
341
+ // key: "REACT_APP_UNCHAINED_POLYGON_WS_URL",
342
+ // value: "wss://dev-api.polygon.shapeshift.com",
343
+ // network: "polygon",
344
+ // protocol: "websocket",
345
+ // type: "unchained"
346
+ // },
347
+ // {
348
+ // key: "REACT_APP_UNCHAINED_GNOSIS_HTTP_URL",
349
+ // value: "https://api.gnosis.shapeshift.com",
350
+ // swagger: "https://api.gnosis.shapeshift.com/swagger.json",
351
+ // network: "gnosis",
352
+ // protocol: "http",
353
+ // type: "unchained"
354
+ // },
355
+ // {
356
+ // key: "REACT_APP_UNCHAINED_GNOSIS_WS_URL",
357
+ // value: "wss://api.gnosis.shapeshift.com",
358
+ // network: "gnosis",
359
+ // protocol: "websocket",
360
+ // type: "unchained"
361
+ // },
362
+ // {
363
+ // key: "REACT_APP_UNCHAINED_BITCOIN_HTTP_URL",
364
+ // value: "https://api.bitcoin.shapeshift.com",
365
+ // swagger: "https://api.bitcoin.shapeshift.com/swagger.json",
366
+ // network: "bitcoin",
367
+ // protocol: "http",
368
+ // type: "unchained"
369
+ // },
370
+ // {
371
+ // key: "REACT_APP_UNCHAINED_BITCOIN_WS_URL",
372
+ // value: "wss://api.bitcoin.shapeshift.com",
373
+ // network: "bitcoin",
374
+ // protocol: "websocket",
375
+ // type: "unchained"
376
+ // },
377
+ // {
378
+ // key: "REACT_APP_UNCHAINED_DOGECOIN_WS_URL",
379
+ // value: "wss://api.dogecoin.shapeshift.com",
380
+ // network: "dogecoin",
381
+ // protocol: "websocket",
382
+ // type: "unchained"
383
+ // },
384
+ // {
385
+ // key: "REACT_APP_UNCHAINED_DOGECOIN_HTTP_URL",
386
+ // value: "https://api.dogecoin.shapeshift.com",
387
+ // swagger: "https://api.dogecoin.shapeshift.com/swagger.json",
388
+ // network: "dogecoin",
389
+ // protocol: "http",
390
+ // type: "unchained"
391
+ // },
392
+ // {
393
+ // key: "REACT_APP_UNCHAINED_LITECOIN_WS_URL",
394
+ // value: "wss://api.litecoin.shapeshift.com",
395
+ // network: "litecoin",
396
+ // protocol: "websocket",
397
+ // type: "unchained"
398
+ // },
399
+ // {
400
+ // key: "REACT_APP_UNCHAINED_LITECOIN_HTTP_URL",
401
+ // value: "https://api.litecoin.shapeshift.com",
402
+ // swagger: "https://api.litecoin.shapeshift.com/swagger.json",
403
+ // network: "litecoin",
404
+ // protocol: "http",
405
+ // type: "unchained"
406
+ // },
407
+ // {
408
+ // key: "REACT_APP_UNCHAINED_BITCOINCASH_HTTP_URL",
409
+ // value: "https://api.bitcoincash.shapeshift.com",
410
+ // swagger: "https://api.bitcoincash.shapeshift.com/swagger.json",
411
+ // network: "bitcoincash",
412
+ // protocol: "http",
413
+ // type: "unchained"
414
+ // },
415
+ // {
416
+ // key: "REACT_APP_UNCHAINED_BITCOINCASH_WS_URL",
417
+ // value: "wss://api.bitcoincash.shapeshift.com",
418
+ // network: "bitcoincash",
419
+ // protocol: "websocket",
420
+ // type: "unchained"
421
+ // },
422
+ // {
423
+ // key: "REACT_APP_UNCHAINED_COSMOS_HTTP_URL",
424
+ // value: "https://api.cosmos.shapeshift.com",
425
+ // swagger: "https://api.cosmos.shapeshift.com/swagger",
426
+ // network: "cosmos",
427
+ // protocol: "http",
428
+ // type: "unchained"
429
+ // },
430
+ // {
431
+ // key: "REACT_APP_UNCHAINED_COSMOS_WS_URL",
432
+ // value: "wss://api.cosmos.shapeshift.com",
433
+ // network: "cosmos",
434
+ // protocol: "websocket",
435
+ // type: "unchained"
436
+ // },
437
+ // fu shapeshift
438
+ // {
439
+ // key: "REACT_APP_UNCHAINED_OSMOSIS_HTTP_URL",
440
+ // value: "https://api.osmosis.shapeshift.com",
441
+ // swagger: "https://api.osmosis.shapeshift.com/swagger",
442
+ // network: "osmosis",
443
+ // protocol: "http",
444
+ // type: "unchained"
445
+ // },
446
+ // {
447
+ // key: "REACT_APP_UNCHAINED_OSMOSIS_WS_URL",
448
+ // value: "wss://api.osmosis.shapeshift.com",
449
+ // network: "osmosis",
450
+ // protocol: "websocket",
451
+ // type: "unchained"
452
+ // },
453
+ // {
454
+ // key: "REACT_APP_UNCHAINED_THORCHAIN_HTTP_URL",
455
+ // value: "https://api.thorchain.shapeshift.com",
456
+ // swagger: "https://api.thorchain.shapeshift.com/swagger",
457
+ // network: "thorchain",
458
+ // protocol: "http",
459
+ // type: "unchained"
460
+ // },
461
+ // {
462
+ // key: "REACT_APP_UNCHAINED_THORCHAIN_WS_URL",
463
+ // value: "wss://api.thorchain.shapeshift.com",
464
+ // network: "thorchain",
465
+ // protocol: "websocket",
466
+ // type: "unchained"
467
+ // },
468
+ // NOTE: Daemon nodes below are also likely offline/deprecated
469
+ // {
470
+ // key: "REACT_APP_ETHEREUM_NODE_URL",
471
+ // value: "https://daemon.ethereum.shapeshift.com",
472
+ // network: "ethereum",
473
+ // nodeType: "eth-node",
474
+ // type: "daemon"
475
+ // },
476
+ // {
477
+ // key: "REACT_APP_ETHEREUM_INFURA_URL",
478
+ // value: "https://mainnet.infura.io/v3/6e2f28ff4f5340fdb0db5da3baec0af2",
479
+ // network: "ethereum",
480
+ // nodeType: "infura",
481
+ // type: "unchained"
482
+ // },
483
+ // {
484
+ // key: "REACT_APP_AVALANCHE_NODE_URL",
485
+ // value: "https://daemon.avalanche.shapeshift.com/ext/bc/C/rpc",
486
+ // network: "avalanche",
487
+ // nodeType: "avalanche-node",
488
+ // type: "daemon"
489
+ // },
490
+ // {
491
+ // key: "REACT_APP_OPTIMISM_NODE_URL",
492
+ // value: "https://daemon.optimism.shapeshift.com",
493
+ // network: "optimism",
494
+ // nodeType: "optimism-node",
495
+ // type: "daemon"
496
+ // },
497
+ // {
498
+ // key: "REACT_APP_BNBSMARTCHAIN_NODE_URL",
499
+ // value: "https://daemon.bnbsmartchain.shapeshift.com",
500
+ // network: "bnbsmartchain",
501
+ // nodeType: "bnbsmartchain-node",
502
+ // type: "daemon"
503
+ // },
504
+ // {
505
+ // key: "REACT_APP_POLYGON_NODE_URL",
506
+ // value: "https://dev-daemon.polygon.shapeshift.com",
507
+ // network: "polygon",
508
+ // nodeType: "polygon-node",
509
+ // type: "daemon"
510
+ // },
511
+ // {
512
+ // key: "REACT_APP_GNOSIS_NODE_URL",
513
+ // value: "https://daemon.gnosis.shapeshift.com",
514
+ // network: "gnosis",
515
+ // nodeType: "gnosis-node",
516
+ // type: "daemon"
517
+ // },
518
+ // {
519
+ // key: "REACT_APP_COSMOS_NODE_URL",
520
+ // value: "https://daemon.cosmos.shapeshift.com",
521
+ // network: "cosmos",
522
+ // nodeType: "cosmos-node",
523
+ // type: "daemon"
524
+ // },
525
+ // {
526
+ // key: "REACT_APP_OSMOSIS_NODE_URL",
527
+ // value: "https://daemon.osmosis.shapeshift.com",
528
+ // network: "osmosis",
529
+ // nodeType: "osmosis-node",
530
+ // type: "daemon"
531
+ // },
532
+ // {
533
+ // key: "REACT_APP_THORCHAIN_NODE_URL",
534
+ // value: "https://daemon.thorchain.shapeshift.com",
535
+ // network: "thorchain",
536
+ // nodeType: "thorchain-node",
537
+ // type: "daemon"
538
+ // },
539
+ // {
540
+ // key: "REACT_APP_MIDGARD_URL",
541
+ // value: "https://indexer.thorchain.shapeshift.com/v2",
542
+ // network: "thorchain",
543
+ // service: "midgard",
544
+ // type: "unchained"
545
+ // },
546
+ //
544
547
  ];
package/package.json CHANGED
@@ -1,21 +1,21 @@
1
1
  {
2
2
  "name": "@pioneer-platform/nodes",
3
- "version": "8.3.13",
3
+ "version": "8.3.17",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "scripts": {
7
- "npm": "npm i",
8
- "npm-update": "npm update",
9
- "test": "npm run build && node __tests__/test-module.js",
10
- "test-cli-export": "npm run build && node __tests__/reference-test-cli-export.js",
7
+ "npm": "pnpm i",
8
+ "npm-update": "pnpm update",
9
+ "test": "pnpm run build && node __tests__/test-module.js",
10
+ "test-cli-export": "pnpm run build && node __tests__/reference-test-cli-export.js",
11
11
  "lint": "prettier --write '**/**/*.ts'",
12
12
  "start": "nodemon --watch 'src/**/*.ts' --exec ts-node __tests__node",
13
13
  "build": "tsc -p .",
14
- "prepublish": "npm run build",
15
- "refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
14
+ "prepublish": "pnpm run build",
15
+ "refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install",
16
16
  "test-jest": "jest --coverage",
17
17
  "test:watch": "jest --coverage --watchAll",
18
- "build:watch": "onchange 'src/**/*.ts' -- npm run build",
18
+ "build:watch": "onchange 'src/**/*.ts' -- pnpm run build",
19
19
  "view:coverage": "serve coverage/lcov-report",
20
20
  "clean": "rm -rf coverage src/**/*.js src/**/*.map lib node_modules"
21
21
  },
@@ -25,14 +25,14 @@
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/jest": "^25.2.3",
28
- "@types/node": "^13.13.39",
28
+ "@types/node": "^18.16.0",
29
29
  "@types/source-map-support": "^0.5.3",
30
30
  "jest": "^26.6.3",
31
31
  "onchange": "^7.1.0",
32
32
  "serve": "^11.3.2",
33
33
  "source-map-support": "^0.5.19",
34
34
  "ts-jest": "^29.0.5",
35
- "typescript": "^5.0.2"
35
+ "typescript": "^5.0.4"
36
36
  },
37
37
  "gitHead": "aeae28273014ab69b42f22abec159c6693a56c40"
38
38
  }