rocketh 0.15.15 → 0.17.0-next.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.
Files changed (55) hide show
  1. package/dist/environment/index.d.ts +12 -2
  2. package/dist/environment/index.d.ts.map +1 -1
  3. package/dist/environment/index.js +94 -48
  4. package/dist/environment/index.js.map +1 -1
  5. package/dist/executor/index.d.ts +11 -9
  6. package/dist/executor/index.d.ts.map +1 -1
  7. package/dist/executor/index.js +144 -238
  8. package/dist/executor/index.js.map +1 -1
  9. package/dist/index.d.ts +5 -5
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +5 -4
  12. package/dist/index.js.map +1 -1
  13. package/dist/internal/types.d.ts +0 -1
  14. package/dist/internal/types.d.ts.map +1 -1
  15. package/dist/types.d.ts +25 -0
  16. package/dist/types.d.ts.map +1 -1
  17. package/package.json +18 -20
  18. package/.prettierignore +0 -3
  19. package/.prettierrc +0 -7
  20. package/CHANGELOG.md +0 -950
  21. package/dist/cli.d.ts +0 -3
  22. package/dist/cli.d.ts.map +0 -1
  23. package/dist/cli.js +0 -30
  24. package/dist/cli.js.map +0 -1
  25. package/dist/environment/deployments.d.ts +0 -12
  26. package/dist/environment/deployments.d.ts.map +0 -1
  27. package/dist/environment/deployments.js +0 -108
  28. package/dist/environment/deployments.js.map +0 -1
  29. package/dist/executor/setup.test.d.ts +0 -14
  30. package/dist/executor/setup.test.d.ts.map +0 -1
  31. package/dist/executor/setup.test.js +0 -107
  32. package/dist/executor/setup.test.js.map +0 -1
  33. package/dist/utils/fs.d.ts +0 -16
  34. package/dist/utils/fs.d.ts.map +0 -1
  35. package/dist/utils/fs.js +0 -52
  36. package/dist/utils/fs.js.map +0 -1
  37. package/src/cli.ts +0 -34
  38. package/src/environment/deployments.ts +0 -135
  39. package/src/environment/index.ts +0 -696
  40. package/src/environment/providers/BaseProvider.ts +0 -13
  41. package/src/environment/providers/TransactionHashTracker.ts +0 -22
  42. package/src/environment/utils/artifacts.ts +0 -176
  43. package/src/environment/utils/chains.ts +0 -192
  44. package/src/executor/index.ts +0 -638
  45. package/src/executor/setup.test.ts +0 -151
  46. package/src/index.ts +0 -17
  47. package/src/internal/logging.ts +0 -80
  48. package/src/internal/types.ts +0 -5
  49. package/src/types.ts +0 -601
  50. package/src/utils/eth.ts +0 -96
  51. package/src/utils/extensions.test.ts +0 -53
  52. package/src/utils/extensions.ts +0 -72
  53. package/src/utils/fs.ts +0 -70
  54. package/src/utils/json.ts +0 -33
  55. package/tsconfig.json +0 -18
package/CHANGELOG.md DELETED
@@ -1,950 +0,0 @@
1
- # rocketh
2
-
3
- ## 0.15.15
4
-
5
- ### Patch Changes
6
-
7
- - fix
8
-
9
- ## 0.15.14
10
-
11
- ### Patch Changes
12
-
13
- - auto-mine + faster import by caching
14
-
15
- ## 0.15.13
16
-
17
- ### Patch Changes
18
-
19
- - forgot to build
20
-
21
- ## 0.15.12
22
-
23
- ### Patch Changes
24
-
25
- - only export types from eip-1193
26
-
27
- ## 0.15.11
28
-
29
- ### Patch Changes
30
-
31
- - reexport EIP-1193 types
32
-
33
- ## 0.15.10
34
-
35
- ### Patch Changes
36
-
37
- - latest deps
38
-
39
- ## 0.15.9
40
-
41
- ### Patch Changes
42
-
43
- - remove unecessary spinner
44
-
45
- ## 0.15.8
46
-
47
- ### Patch Changes
48
-
49
- - fix tx nonce fetching
50
-
51
- ## 0.15.7
52
-
53
- ### Patch Changes
54
-
55
- - proxy: do not merge docs from proxy contract
56
-
57
- ## 0.15.6
58
-
59
- ### Patch Changes
60
-
61
- - proxy: add checkProxyAdmin and checkABIConflict + merge abi
62
-
63
- ## 0.15.5
64
-
65
- ### Patch Changes
66
-
67
- - forgot to build
68
-
69
- ## 0.15.4
70
-
71
- ### Patch Changes
72
-
73
- - megaeth exception not required anymore
74
-
75
- ## 0.15.3
76
-
77
- ### Patch Changes
78
-
79
- - fix
80
-
81
- ## 0.15.2
82
-
83
- ### Patch Changes
84
-
85
- - defaultChainProperties
86
-
87
- ## 0.15.1
88
-
89
- ### Patch Changes
90
-
91
- - better message
92
-
93
- ## 0.15.0
94
-
95
- ### Minor Changes
96
-
97
- - 851378e: revamp the settings to be allowed to configure per chain as well as per target
98
-
99
- ### Patch Changes
100
-
101
- - 8122cdb: fix
102
- - e6de720: fork
103
- - 1f2e044: fixes + support old hardhat-deploy
104
- - 9d920a8: fix
105
- - c682fd2: canonical chain names export
106
- - 0d7e7ed: fix export
107
- - 691d296: fixes
108
- - cb340e2: fix
109
- - 2b82b5b: fix
110
- - a0fcde6: fixes
111
- - 356f26c: executeDeployScriptsDirectly is now executeDeployScripts
112
- - 03f2406: fixes
113
- - 68151ae: rname target to environment
114
- - e2dbd6f: revamp of types and resolution
115
- - 4d1a814: fix cli
116
- - e260c6d: fix
117
- - feb4780: context only to be provided
118
-
119
- ## 0.15.0-testing.17
120
-
121
- ### Patch Changes
122
-
123
- - executeDeployScriptsDirectly is now executeDeployScripts
124
-
125
- ## 0.15.0-testing.16
126
-
127
- ### Patch Changes
128
-
129
- - fix
130
-
131
- ## 0.15.0-testing.15
132
-
133
- ### Patch Changes
134
-
135
- - context only to be provided
136
-
137
- ## 0.15.0-testing.14
138
-
139
- ### Patch Changes
140
-
141
- - fixes
142
-
143
- ## 0.15.0-testing.13
144
-
145
- ### Patch Changes
146
-
147
- - rname target to environment
148
-
149
- ## 0.15.0-testing.12
150
-
151
- ### Patch Changes
152
-
153
- - canonical chain names export
154
-
155
- ## 0.15.0-testing.11
156
-
157
- ### Patch Changes
158
-
159
- - fork
160
-
161
- ## 0.15.0-testing.10
162
-
163
- ### Patch Changes
164
-
165
- - fix export
166
-
167
- ## 0.15.0-testing.9
168
-
169
- ### Patch Changes
170
-
171
- - fixes
172
-
173
- ## 0.15.0-testing.8
174
-
175
- ### Patch Changes
176
-
177
- - fix
178
-
179
- ## 0.15.0-testing.7
180
-
181
- ### Patch Changes
182
-
183
- - revamp of types and resolution
184
-
185
- ## 0.15.0-testing.6
186
-
187
- ### Patch Changes
188
-
189
- - fix
190
-
191
- ## 0.15.0-testing.5
192
-
193
- ### Patch Changes
194
-
195
- - fix
196
-
197
- ## 0.15.0-testing.4
198
-
199
- ### Patch Changes
200
-
201
- - fixes
202
-
203
- ## 0.15.0-testing.3
204
-
205
- ### Patch Changes
206
-
207
- - fix
208
-
209
- ## 0.15.0-testing.2
210
-
211
- ### Patch Changes
212
-
213
- - fix cli
214
-
215
- ## 0.15.0-testing.1
216
-
217
- ### Patch Changes
218
-
219
- - fixes + support old hardhat-deploy
220
-
221
- ## 0.15.0-testing.0
222
-
223
- ### Minor Changes
224
-
225
- - revamp the settings to be allowed to configure per chain as well as per target
226
-
227
- ## 0.14.9
228
-
229
- ### Patch Changes
230
-
231
- - consolidate the export format + add ability to augment chain data with custom properties
232
-
233
- ## 0.14.8
234
-
235
- ### Patch Changes
236
-
237
- - fix
238
-
239
- ## 0.14.7
240
-
241
- ### Patch Changes
242
-
243
- - latest deps + fix eth_feeHistory
244
-
245
- ## 0.14.6
246
-
247
- ### Patch Changes
248
-
249
- - network name default considered memory
250
-
251
- ## 0.14.5
252
-
253
- ### Patch Changes
254
-
255
- - allow to configure polling interval + remove confirmation field from deployment data
256
-
257
- ## 0.14.4
258
-
259
- ### Patch Changes
260
-
261
- - revert
262
-
263
- ## 0.14.2
264
-
265
- ### Patch Changes
266
-
267
- - also setup for loadEnvironment (used by hardhat-deploy)
268
-
269
- ## 0.14.1
270
-
271
- ### Patch Changes
272
-
273
- - fix type
274
-
275
- ## 0.14.0
276
-
277
- ### Minor Changes
278
-
279
- - setup for both deployScript and loadAndExecuteDeployments
280
-
281
- ## 0.13.4
282
-
283
- ### Patch Changes
284
-
285
- - extension for loadAndExecuteDeployments
286
-
287
- ## 0.13.3
288
-
289
- ### Patch Changes
290
-
291
- - fix waitForTransactionReceipt + handle missing earliest
292
-
293
- ## 0.13.2
294
-
295
- ### Patch Changes
296
-
297
- - fix
298
-
299
- ## 0.13.1
300
-
301
- ### Patch Changes
302
-
303
- - rename and allow for variable getters in env
304
-
305
- ## 0.13.0
306
-
307
- ### Minor Changes
308
-
309
- - use env function for extended functions
310
-
311
- ## 0.12.1
312
-
313
- ### Patch Changes
314
-
315
- - Merge branch 'feat/create3-support'
316
-
317
- ## 0.12.0
318
-
319
- ### Minor Changes
320
-
321
- - switch to setup function
322
-
323
- ## 0.11.22
324
-
325
- ### Patch Changes
326
-
327
- - 5bf9962: allow to pass Extra date to environment
328
- - a76870d: signer protocols are specified via config
329
- - de97d9c: fix
330
- - 77c2ffd: fix
331
- - c841f17: use hard deps
332
- - 966bab6: fixes
333
- - c03812e: Extra type generic
334
- - 1148e1c: fix
335
- - 4d37f14: remove use of global, breakinmg change
336
-
337
- ## 0.11.22-testing.8
338
-
339
- ### Patch Changes
340
-
341
- - fix
342
-
343
- ## 0.11.22-testing.7
344
-
345
- ### Patch Changes
346
-
347
- - Extra type generic
348
-
349
- ## 0.11.22-testing.6
350
-
351
- ### Patch Changes
352
-
353
- - fix
354
-
355
- ## 0.11.22-testing.5
356
-
357
- ### Patch Changes
358
-
359
- - allow to pass Extra date to environment
360
-
361
- ## 0.11.22-testing.4
362
-
363
- ### Patch Changes
364
-
365
- - fix
366
-
367
- ## 0.11.22-testing.3
368
-
369
- ### Patch Changes
370
-
371
- - signer protocols are specified via config
372
-
373
- ## 0.11.22-testing.2
374
-
375
- ### Patch Changes
376
-
377
- - use hard deps
378
-
379
- ## 0.11.22-testing.1
380
-
381
- ### Patch Changes
382
-
383
- - fixes
384
-
385
- ## 0.11.22-testing.0
386
-
387
- ### Patch Changes
388
-
389
- - remove use of global, breakinmg change
390
-
391
- ## 0.11.21
392
-
393
- ### Patch Changes
394
-
395
- - allow minimal deployment info for read/execute
396
-
397
- ## 0.11.20
398
-
399
- ### Patch Changes
400
-
401
- - use file:// import so it works on windows
402
-
403
- ## 0.11.19
404
-
405
- ### Patch Changes
406
-
407
- - fix publicInfo for networks
408
-
409
- ## 0.11.18
410
-
411
- ### Patch Changes
412
-
413
- - fixes + add basescan
414
-
415
- ## 0.11.17
416
-
417
- ### Patch Changes
418
-
419
- - fix
420
-
421
- ## 0.11.16
422
-
423
- ### Patch Changes
424
-
425
- - public chain info in config
426
-
427
- ## 0.11.15
428
-
429
- ### Patch Changes
430
-
431
- - for convenience:support bigint but stringify it
432
-
433
- ## 0.11.14
434
-
435
- ### Patch Changes
436
-
437
- - LinkedData + remove auto-json-convertion
438
-
439
- ## 0.11.13
440
-
441
- ### Patch Changes
442
-
443
- - fix
444
-
445
- ## 0.11.12
446
-
447
- ### Patch Changes
448
-
449
- - fix network specifics script folder
450
-
451
- ## 0.11.11
452
-
453
- ### Patch Changes
454
-
455
- - actual fix
456
-
457
- ## 0.11.10
458
-
459
- ### Patch Changes
460
-
461
- - fix
462
-
463
- ## 0.11.9
464
-
465
- ### Patch Changes
466
-
467
- - 6d4e756: allow to specific data per network
468
- - 82f6787: allow for specific deploy scripts folder per network
469
- - 37e6a46: fix types
470
-
471
- ## 0.11.8
472
-
473
- ### Patch Changes
474
-
475
- - fix
476
-
477
- ## 0.11.7
478
-
479
- ### Patch Changes
480
-
481
- - deterministicDeployment fix
482
-
483
- ## 0.11.6
484
-
485
- ### Patch Changes
486
-
487
- - fixes
488
-
489
- ## 0.11.5
490
-
491
- ### Patch Changes
492
-
493
- - 4426c7d: remove .json config file + support custom deterministic deployment factory
494
-
495
- ## 0.11.4
496
-
497
- ### Patch Changes
498
-
499
- - add default tags option for network
500
-
501
- ## 0.11.3
502
-
503
- ### Patch Changes
504
-
505
- - 2431e8f: remove the use of context
506
-
507
- ## 0.11.2
508
-
509
- ### Patch Changes
510
-
511
- - f2959f3: display <no-name>
512
- - 169b618: migrations
513
- - aaba9cb: allow to not save deployment + use it for diamond unamed artifact execution
514
- - fee5656: upgradeIndex and numDeployments tracking
515
-
516
- ## 0.11.1
517
-
518
- ### Patch Changes
519
-
520
- - release as v0.11.1
521
-
522
- ### Major Changes
523
-
524
- - first alpha release
525
-
526
- ## 0.10.18
527
-
528
- ### Patch Changes
529
-
530
- - fix chains import, no default export
531
-
532
- ## 0.10.17
533
-
534
- ### Patch Changes
535
-
536
- - hardhat3-rocketh
537
-
538
- ## 0.10.16
539
-
540
- ### Patch Changes
541
-
542
- - use tsx
543
-
544
- ## 0.10.15
545
-
546
- ### Patch Changes
547
-
548
- - update latest esbuil
549
-
550
- ## 0.10.14
551
-
552
- ### Patch Changes
553
-
554
- - latest dependencies
555
-
556
- ## 0.10.13
557
-
558
- ### Patch Changes
559
-
560
- - forgot to build
561
-
562
- ## 0.10.12
563
-
564
- ### Patch Changes
565
-
566
- - fixes for rocketh-doc and allow memory hardhat network to be used for it
567
-
568
- ## 0.10.11
569
-
570
- ### Patch Changes
571
-
572
- - speicfy context from executor
573
-
574
- ## 0.10.10
575
-
576
- ### Patch Changes
577
-
578
- - unnamedAccounts
579
-
580
- ## 0.10.9
581
-
582
- ### Patch Changes
583
-
584
- - use pkgroll and @rocketh namespace
585
-
586
- ## 0.10.8
587
-
588
- ### Patch Changes
589
-
590
- - add ancient8 to chains + export info via rocketh-export
591
-
592
- ## 0.10.7
593
-
594
- ### Patch Changes
595
-
596
- - export eth utils like getGasPriceEstimate
597
-
598
- ## 0.10.6
599
-
600
- ### Patch Changes
601
-
602
- - add info about network
603
-
604
- ## 0.10.5
605
-
606
- ### Patch Changes
607
-
608
- - fix
609
-
610
- ## 0.10.4
611
-
612
- ### Patch Changes
613
-
614
- - can skp report and prompts
615
-
616
- ## 0.10.3
617
-
618
- ### Patch Changes
619
-
620
- - router allow extra abi
621
-
622
- ## 0.10.2
623
-
624
- ### Patch Changes
625
-
626
- - report gas use
627
-
628
- ## 0.10.1
629
-
630
- ### Patch Changes
631
-
632
- - ask before proceeding option
633
-
634
- ## 0.10.0
635
-
636
- ### Minor Changes
637
-
638
- - read config always
639
-
640
- ## 0.9.2
641
-
642
- ### Patch Changes
643
-
644
- - can reverse lookup named abi rom address
645
-
646
- ## 0.9.1
647
-
648
- ### Patch Changes
649
-
650
- - use latest solidity-proxy
651
-
652
- ## 0.9.0
653
-
654
- ### Minor Changes
655
-
656
- - get throw if deployment not found, add getOrNull
657
-
658
- ## 0.8.2
659
-
660
- ### Patch Changes
661
-
662
- - attempt fix
663
-
664
- ## 0.8.1
665
-
666
- ### Patch Changes
667
-
668
- - remove the need to pass chain
669
-
670
- ## 0.8.0
671
-
672
- ### Minor Changes
673
-
674
- - use latest viem + add read
675
-
676
- ## 0.7.6
677
-
678
- ### Patch Changes
679
-
680
- - type devdoc more leniant for older solc
681
-
682
- ## 0.7.5
683
-
684
- ### Patch Changes
685
-
686
- - type devdoc more leniant for older solc
687
-
688
- ## 0.7.4
689
-
690
- ### Patch Changes
691
-
692
- - use eip-1193-jsonrpc-provider new name
693
-
694
- ## 0.7.3
695
-
696
- ### Patch Changes
697
-
698
- - fix
699
-
700
- ## 0.7.2
701
-
702
- ### Patch Changes
703
-
704
- - use .chain file and include genesisHash
705
-
706
- ## 0.7.1
707
-
708
- ### Patch Changes
709
-
710
- - use latest eip-1193-json-provider
711
-
712
- ## 0.7.0
713
-
714
- ### Minor Changes
715
-
716
- - latest deps minus isomorphic-unfetch
717
-
718
- ## 0.6.20
719
-
720
- ### Patch Changes
721
-
722
- - fix message indentation
723
-
724
- ## 0.6.19
725
-
726
- ### Patch Changes
727
-
728
- - forgot to build
729
-
730
- ## 0.6.18
731
-
732
- ### Patch Changes
733
-
734
- - show Contract Address
735
-
736
- ## 0.6.17
737
-
738
- ### Patch Changes
739
-
740
- - fix deterministic deployment when already deployed + showMessage
741
-
742
- ## 0.6.16
743
-
744
- ### Patch Changes
745
-
746
- - deterministic deployment via create2 factory
747
-
748
- ## 0.6.15
749
-
750
- ### Patch Changes
751
-
752
- - confirmations for receipt
753
-
754
- ## 0.6.14
755
-
756
- ### Patch Changes
757
-
758
- - simplify receipt
759
-
760
- ## 0.6.13
761
-
762
- ### Patch Changes
763
-
764
- - add receipt to deployments
765
-
766
- ## 0.6.12
767
-
768
- ### Patch Changes
769
-
770
- - forgot to build
771
-
772
- ## 0.6.11
773
-
774
- ### Patch Changes
775
-
776
- - log using console if Logging level
777
-
778
- ## 0.6.10
779
-
780
- ### Patch Changes
781
-
782
- - Option to skip esbuild-register
783
-
784
- ## 0.6.9
785
-
786
- ### Patch Changes
787
-
788
- - add bytecode and linkedData to export
789
-
790
- ## 0.6.8
791
-
792
- ### Patch Changes
793
-
794
- - better docs
795
-
796
- ## 0.6.7
797
-
798
- ### Patch Changes
799
-
800
- - fix types
801
-
802
- ## 0.6.6
803
-
804
- ### Patch Changes
805
-
806
- - fix types
807
-
808
- ## 0.6.5
809
-
810
- ### Patch Changes
811
-
812
- - add rocketh-doc
813
-
814
- ## 0.6.4
815
-
816
- ### Patch Changes
817
-
818
- - void spinner
819
-
820
- ## 0.6.3
821
-
822
- ### Patch Changes
823
-
824
- - let deploy script accept arguments
825
-
826
- ## 0.6.2
827
-
828
- ### Patch Changes
829
-
830
- - fix logging
831
-
832
- ## 0.6.1
833
-
834
- ### Patch Changes
835
-
836
- - latest update + rocketh-router
837
-
838
- ## 0.6.0
839
-
840
- ### Minor Changes
841
-
842
- - transaction field in deployment
843
-
844
- ## 0.5.18
845
-
846
- ### Patch Changes
847
-
848
- - add loadEnvironment
849
-
850
- ## 0.5.17
851
-
852
- ### Patch Changes
853
-
854
- - skip tx recovery when saveDeployments=false
855
-
856
- ## 0.5.16
857
-
858
- ### Patch Changes
859
-
860
- - return environment instead of just deployments
861
-
862
- ## 0.5.15
863
-
864
- ### Patch Changes
865
-
866
- - forgot to pass tx info
867
-
868
- ## 0.5.14
869
-
870
- ### Patch Changes
871
-
872
- - add tx info in all case
873
-
874
- ## 0.5.13
875
-
876
- ### Patch Changes
877
-
878
- - fixes
879
-
880
- ## 0.5.12
881
-
882
- ### Patch Changes
883
-
884
- - fix
885
-
886
- ## 0.5.11
887
-
888
- ### Patch Changes
889
-
890
- - better handling of pending tx
891
-
892
- ## 0.5.10
893
-
894
- ### Patch Changes
895
-
896
- - show deploy name
897
-
898
- ## 0.5.9
899
-
900
- ### Patch Changes
901
-
902
- - remove some log as we can't use ora
903
-
904
- ## 0.5.8
905
-
906
- ### Patch Changes
907
-
908
- - remove ora
909
-
910
- ## 0.5.7
911
-
912
- ### Patch Changes
913
-
914
- - use latest ora-cjs
915
-
916
- ## 0.5.6
917
-
918
- ### Patch Changes
919
-
920
- - forgot to build
921
-
922
- ## 0.5.5
923
-
924
- ### Patch Changes
925
-
926
- - fix
927
-
928
- ## 0.5.4
929
-
930
- ### Patch Changes
931
-
932
- - use ora-cjs
933
-
934
- ## 0.5.3
935
-
936
- ### Patch Changes
937
-
938
- - add logging
939
-
940
- ## 0.5.2
941
-
942
- ### Patch Changes
943
-
944
- - fix
945
-
946
- ## 0.5.1
947
-
948
- ### Patch Changes
949
-
950
- - 0.5.1