forked from NomicFoundation/hardhat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.ts
1142 lines (1138 loc) · 38.8 KB
/
plugins.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This list of plugins is automatically sorted by the numbers of downloads
// that the plugin got on npm in the last 30 days. Please add yourself to the
// bottom of the list.
//
// If your plugin's `name` is not it's package name, you can add an optional
// `npmPackage` field.
import { IPlugin } from "../../../model/types";
const communityPlugins: IPlugin[] = [
{
name: "hardhat-deploy",
author: "Ronan Sandford",
authorUrl: "https://github.com/wighawag",
description: "Hardhat plugin for Deployments",
tags: ["Deployment", "Testing"],
},
{
name: "hardhat-preprocessor",
author: "Ronan Sandford",
authorUrl: "https://github.com/wighawag",
description:
"An hardhat plugin to pre-process contract source code before compilation",
tags: ["Solidity", "Preprocessor"],
},
{
name: "hardhat-deploy-ethers",
author: "Ronan Sandford",
authorUrl: "https://github.com/wighawag",
description: "A hardhat-deploy plugin for Ethers.js v5",
tags: ["Ethers.js", "hardhat-deploy"],
},
{
name: "@openzeppelin/hardhat-upgrades",
author: "OpenZeppelin",
authorUrl: "https://openzeppelin.com",
description:
"Hardhat plugin for deploying and managing upgradeable contracts.",
tags: ["Security", "Upgrades", "OpenZeppelin"],
},
{
name: "hardhat-forta",
author: "Forta",
authorUrl: "https://forta.org/",
description:
"Quickly add security and operational alerting for your project using Forta: a decentralized monitoring network for Web3 systems.",
tags: ["Security", "Monitoring", "Alerting", "Forta"],
},
{
name: "@kriptonio/hardhat-kriptonio",
author: "Kriptonio",
authorUrl: "https://kriptonio.com/",
description:
"This plugin allows you to upload compiled hardhat smart contract artifacts to Kriptonio. On kriptonio side new smart contract will be created with attached artifacts, which you can afterward deploy and manage via kriptonio.",
tags: ["Monitoring", "Debugging", "Deployment"],
},
{
name: "@tenderly/hardhat-tenderly",
author: "Tenderly",
authorUrl: "https://tenderly.co/",
description:
"Easily integrate your Hardhat project with Tenderly. Tenderly is an Ethereum monitoring, debugging and analytics platform.",
tags: ["Debuggin", "Monitoring", "Alerting", "Tasks", "Scripts"],
},
{
name: "hardhat-ethernal",
author: "Ethernal",
authorUrl: "https://www.tryethernal.com",
description:
"Integrate your Hardhat project and Hardhat network with Ethernal. Ethernal is a block explorer for private chains.",
tags: ["explorer", "debugging", "development-tool"],
},
{
name: "@typechain/hardhat",
author: "Rahul Sethuram",
authorUrl: "https://twitter.com/rhlsthrm",
description: "Zero-config TypeChain support for Hardhat.",
tags: ["Testing", "Tasks"],
},
{
name: "hardhat-spdx-license-identifier",
author: "Nick Barry",
authorUrl: "https://github.com/ItsNickBarry",
description:
"Automatically prepend local Solidity source files with an SPDX License Identifier",
tags: ["License"],
},
{
name: "hardhat-abi-exporter",
author: "Nick Barry",
authorUrl: "https://github.com/ItsNickBarry",
description: "Automatically export Solidity contract ABIs on compilation",
tags: ["Compiling", "ABI"],
},
{
name: "hardhat-contract-sizer",
author: "Nick Barry",
authorUrl: "https://github.com/ItsNickBarry",
description: "Calculate compiled contract sizes",
tags: ["Compiling", "Bytecode"],
},
{
name: "hardhat-log-remover",
author: "Nick Barry",
authorUrl: "https://github.com/ItsNickBarry",
description:
"Remove Hardhat console.log imports and calls from Solidity source files",
tags: ["Logging", "Console", "Deployment"],
},
{
name: "hardhat-dependency-compiler",
author: "Nick Barry",
authorUrl: "https://github.com/ItsNickBarry",
description: "Compile Solidity sources directly from npm dependencies",
tags: ["Compiling", "Dependencies"],
},
{
name: "hardhat-docgen",
author: "Nick Barry, samuveth",
authorUrl: "https://github.com/ItsNickBarry",
description: "Generate a static documentation site from NatSpec comments",
tags: ["Documentation", "NatSpec"],
},
{
name: "@solidstate/hardhat-4byte-uploader",
author: "Nick Barry",
authorUrl: "https://github.com/ItsNickBarry",
description:
"Upload local function selectors to the Ethereum Selector Database",
tags: ["Bytecode", "ABI"],
},
{
name: "@solidstate/hardhat-test-short-circuit",
author: "Nick Barry",
authorUrl: "https://github.com/ItsNickBarry",
description:
"Stop Hardhat test execution on demand and print output from completed tests",
tags: ["Testing", "Mocha"],
},
{
name: "@solidstate/hardhat-txn-dot-xyz",
author: "Nick Barry",
authorUrl: "https://github.com/ItsNickBarry",
description: "Generate and execute on-chain transactions via txn.xyz",
tags: ["Signing", "Scripts"],
},
{
name: "@solidstate/hardhat-bytecode-exporter",
author: "Nick Barry",
authorUrl: "https://github.com/ItsNickBarry",
description: "Automatically export contract bytecode on compilation",
tags: ["Bytecode", "Compiling"],
},
{
name: "@solidstate/hardhat-accounts",
author: "Nick Barry",
authorUrl: "https://github.com/ItsNickBarry",
description: "Output list of available accounts and their balances",
tags: ["Accounts", "Balances"],
},
{
name: "hardhat-watcher",
author: "Xander Deseyn",
authorUrl: "https://github.com/N1ghtly",
description: "Automatically run Hardhat actions on file changes.",
tags: ["Tasks", "Testing"],
},
{
name: "solidity-coverage",
author: "Chris Gewecke",
authorUrl: "https://github.com/cgewecke",
description: "Code coverage for Solidity",
tags: ["Testing", "Coverage", "Hardhat plugin"],
},
{
name: "hardhat-gas-trackooor",
author: "d3or",
authorUrl: "https://github.com/d3or",
description: "Simple plugin to track gas on the transaction level.",
tags: ["Testing", "Gas", "Hardhat plugin"],
},
{
name: "hardhat-gas-reporter",
author: "Chris Gewecke",
authorUrl: "https://github.com/cgewecke",
description:
"Gas usage per unit test. Average gas usage per method. A mocha reporter.",
tags: ["Testing", "Gas", "Hardhat plugin"],
},
{
name: "hardhat-erc1820",
author: "David Mihal",
authorUrl: "https://twitter.com/dmihal",
description:
"Automatically deploy the ERC-1820 registry contract to Hardhat EVM chains.",
tags: ["Testing"],
},
{
name: "hardhat-local-networks-config-plugin",
author: "Facu Spagnuolo",
authorUrl: "https://twitter.com/facuspagnuolo",
description:
"Allow loading network configs for Hardhat projects in home file",
tags: ["Networks", "Config"],
},
{
name: "@eth-optimism/plugins/hardhat/compiler",
npmPackage: "@eth-optimism/plugins",
author: "Optimism",
authorUrl: "https://github.com/ethereum-optimism",
description:
"Automatically compiles your Solidity contracts with the OVM compiler.",
tags: ["Optimism", "Solidity", "Compiler", "OVM"],
},
{
name: "@eth-optimism/plugins/hardhat/ethers",
npmPackage: "@eth-optimism/plugins",
author: "Optimism",
authorUrl: "https://github.com/ethereum-optimism",
description: "Integrates Hardhat and ethers.js with Optimism's L2 network.",
tags: ["Optimism", "ethers.js", "OVM"],
},
{
name: "hardhat-react",
npmPackage: "@symfoni/hardhat-react",
author: "Symfoni",
authorUrl: "https://github.com/symfoni/",
description:
"A Hardhat plugin that generates a React hook component from your smart contracts. Hot reloaded into your React app. Deployed or not deployed. And everything typed and initialized.",
tags: [
"Ethers.js",
"React",
"Deploy",
"Typechain",
"Frontend",
"Web3modal",
],
},
{
name: "hardhat-etherscan-abi",
author: "Roman Semenov",
authorUrl: "https://github.com/poma",
description: "Automatically fetch contract ABI from Etherscan",
tags: ["Etherscan", "ABI"],
},
{
name: "hardhat-tracer",
author: "Soham Zemse",
authorUrl: "https://github.com/zemse/",
description:
"See internal transactions, events and storage operations during your hardhat tests in the console",
tags: ["EVM", "Events", "Logs", "Trace", "Console", "Testing"],
},
{
name: "hardhat-circom",
author: "Project Sophon",
authorUrl: "https://github.com/projectsophon",
description: "Provide tasks to integrate Circom and SnarkJS",
tags: [
"Circom",
"Snarkjs",
"Preprocessor",
"Compiling",
"Tasks",
"Scripts",
],
},
{
name: "hardhat-storage-layout",
author: "Aurora Labs",
authorUrl: "https://github.com/aurora-is-near",
description: "Exporting solidity contract storage layout",
tags: ["solidity", "storage-layout"],
},
{
name: "hardhat-storage-layout-json",
npmPackage: "hardhat-storage-layout-json",
author: "(Aurora Labs, mostly!) + 3obby",
authorUrl: "https://github.com/3obby/hardhat-storage-layout-json",
description: "View contracts' layouts with CLI and .json output",
tags: ["solidity", "storage"],
},
{
name: "hardhat-change-network",
author: "David Mihal",
authorUrl: "https://github.com/dmihal",
description: "Allows changing the current network in Hardhat.",
tags: ["Testing"],
},
{
name: "hardhat-packager",
author: "Paul Razvan Berg",
authorUrl: "https://github.com/paulrberg",
description:
"Prepare the contract artifacts and the TypeChain bindings for registry deployment.",
tags: ["Deployment", "Tasks", "TypeChain"],
},
{
name: "hardhat-time-n-mine",
npmPackage: "@atixlabs/hardhat-time-n-mine",
author: "Gonzalo Petraglia & Alan Verbner",
authorUrl: "https://github.com/atixlabs",
description:
"Helper plugin to manipulate blocks timestamp and trigger mining. It can be used from the command line and in the tests.",
tags: ["Testing"],
},
{
name: "hardhat-proxy",
author: "Jinyang Liu",
authorUrl: "https://github.com/jinyang1994",
description:
"This plugin brings the proxy contract to Hardhat, which allows you to manage the proxy contract in a simple way.",
tags: ["Proxy Contract", "Tasks", "Scripts"],
},
{
name: "hardhat-fund-link",
author: "Applied Blockchain",
npmPackage: "@appliedblockchain/chainlink-plugins-fund-link",
authorUrl: "https://github.com/appliedblockchain",
description: "Transfers Link token amount between accounts.",
tags: ["Chainlink", "Link"],
},
{
name: "@defi-wonderland/smock",
author: "DeFi Wonderland and Optimism PBC",
authorUrl: "https://github.com/defi-wonderland",
description:
"The Solidity mocking library. Smock is a utility package that can generate mock Solidity contracts written entirely in JavaScript.",
tags: ["Testing", "Mocking"],
},
{
name: "xdeployer",
author: "Pascal Marco Caversaccio",
authorUrl: "https://github.com/pcaversaccio",
description:
"Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.",
tags: ["Deployment", "CREATE2", "Tasks"],
},
{
name: "@tovarishfin/hardhat-yul",
author: "tovarishfin",
authorUrl: "https://codylamson.com",
description:
"An updated and working Hardhat plugin to compile the Yul and Yul+ languages into solc compatible artifacts. Works with .yul and .yulp file extensions",
tags: ["Yul", "Assembly", "Compiler", "Yul+"],
},
{
name: "@controlcpluscontrolv/hardhat-yul",
author: "ControlCplusControlV",
authorUrl: "https://github.com/controlCplusControlV/",
description:
"Hardhat plugin to compile the Yul and Yul+ languages into solc compatible artifacts. Works with .yul and .yulp file extensions",
tags: ["Yul", "Assembly", "Compiler", "Yul+"],
},
{
name: "@primitivefi/hardhat-dodoc",
author: "Primitive",
authorUrl: "https://github.com/primitivefinance/primitive-dodoc",
description:
"Zero-config Hardhat plugin to generate documentation for all your Solidity contracts.",
tags: ["Documentation", "Docs", "Solidity", "NatSpec"],
},
{
name: "hardhat-output-validator",
author: "Indeavr",
authorUrl: "https://github.com/indeavr",
description:
"Zero-config Hardhat plugin to check the output of the compiler for any problems like missing NatSpec",
tags: [
"Productivity",
"CI",
"Compiler",
"Docs",
"Solidity",
"NatSpec",
"Build",
],
},
{
name: "@ericxstone/hardhat-blockscout-verify",
author: "ericxstone",
authorUrl: "https://github.com/ericxstone",
description:
"Hardhat plugin for solidity contract verification on Blockscout block explorer.",
tags: ["Blockscout", "Deployment", "Solidity", "Verification"],
},
{
name: "@muzamint/hardhat-etherspot",
author: "muzamint",
authorUrl: "https://github.com/muzamint",
description: "Hardhat TypeScript plugin for Etherspot",
tags: ["smart contract wallet"],
},
{
name: "hardhat-multibaas-plugin",
author: "Curvegrid",
authorUrl: "https://www.curvegrid.com/",
description: "Integrate MultiBaas into Hardhat's workflow!",
tags: ["middleware", "ethereum", "OMG"],
},
{
name: "@mangrovedao/hardhat-test-solidity",
author: "Mangrove",
authorUrl: "https://mangrove.exchange/",
description: "Hardhat plugin for writing tests in solidity",
tags: ["solidity tests"],
},
{
name: "@reef-defi/hardhat-reef",
author: "Reef Chain",
authorUrl: "https://reef.io/",
description:
"Hardhat Reef plugin for interacting with contracts on the Reef chain",
tags: ["Reef Chain"],
},
{
name: "hardhat-diamond-abi",
author: "Project Sophon",
authorUrl: "https://github.com/projectsophon",
description:
"Hardhat plugin to combine multiple ABIs into a Diamond ABI artifact",
tags: ["diamond standard"],
},
{
name: "@idle-finance/hardhat-proposals-plugin",
author: "Idle Finance",
authorUrl: "https://idle.finance/",
description: "A Hardhat plugin for working with on-chain proposals",
tags: ["governance", "proposals", "simulation"],
},
{
name: "@shardlabs/starknet-hardhat-plugin",
author: "Shard Labs",
authorUrl: "https://shardlabs.io/",
description:
"A plugin for integrating Starknet tools into Hardhat projects",
tags: ["starknet", "cairo", "layer two"],
},
{
name: "@uniswap/hardhat-v3-deploy",
author: "Uniswap Labs",
authorUrl: "https://uniswap.org/",
description: "Hardhat plugin for Uniswap V3 deployment",
tags: ["uniswap", "testing", "deployment", "local"],
},
{
name: "@unlock-protocol/hardhat-plugin",
author: "Unlock Inc",
authorUrl: "http://unlock-protocol.com/",
description: "Hardhat plugin for Unlock Protocol deployments.",
tags: ["unlock", "nft", "memberships", "udt", "testing", "deployment"],
},
{
name: "hardhat-deploy-tenderly",
author: "Ronan Sandford",
authorUrl: "https://github.com/wighawag",
description: "A plugin to push contracts to tenderly",
tags: ["Deployment", "Testing", "Tenderly", "Verification"],
},
{
name: "hardhat-laika",
author: "Laika Blockchain Lab",
authorUrl: "https://github.com/laika-lab/hardhat-laika",
description: "Hardhat plugin to sync your compiled contract with Laika",
tags: ["Tasks", "Laika"],
},
{
name: "hardhat-network-metadata",
author: "Focal Labs Inc.",
authorUrl: "https://github.com/krruzic/hardhat-network-metadata",
description:
"Hardhat plugin to allow adding any extra data to your network configuration",
tags: ["Metadata", "Testing", "Tasks", "Config"],
},
{
name: "hardhat-exposed",
author: "Francisco Giordano",
authorUrl: "https://github.com/frangio",
description: "Automatically expose internal Solidity functions for testing",
tags: ["Solidity", "Testing"],
},
{
name: "hardhat-hethers",
author: "LimeChain",
authorUrl: "https://github.com/LimeChain/hardhat-hethers",
description: "Injects hethers into the Hardhat Runtime Environment",
tags: ["Hedera", "hethers"],
},
{
name: "hardhat-sourcify",
author: "Zoey T",
authorUrl: "https://twitter.com/zzzzoey_t",
description: "A plugin for submitting code to Sourcify",
tags: ["Sourcify", "Verification"],
},
{
name: "hardhat-awesome-cli",
author: "Marc-Aurele Besner",
authorUrl: "https://github.com/marc-aurele-besner",
description:
"Hardhat made awesome with a flexible CLI to help run tests, scripts, deploy Mock contracts and more.",
tags: ["CLI", "Testing", "Tasks", "Config"],
},
{
name: "hardhat-test-utils",
author: "Naveen Sahu",
authorUrl: "https://twitter.com/heyNvN",
description:
"Handy set of utilities for testing contracts in Hardhat projects",
tags: ["testing", "solidity"],
},
{
name: "hardhat-deals",
author: "use less",
authorUrl: "https://github.com/Karuzzzo",
description: "Small hardhat task for debug money transfers 🤝💰",
tags: ["Deployment", "Testing", "Security", "Debug", "helper", "Tasks"],
},
{
name: "hardhat-contract-dumper",
author: "use less",
authorUrl: "https://github.com/Karuzzzo",
description:
"Another small hardhat task for printing contract's storage layout 📐",
tags: ["Deployment", "Testing", "Security", "Debug", "helper", "Tasks"],
},
{
name: "@0xweb/hardhat",
author: "Alex Kit",
authorUrl: "https://github.com/tenbits",
description:
"Generate 0xWeb classes for contracts to easily communicate with the blockchain.",
tags: ["dApp-Client", "Class-Generation", "Testing"],
},
{
name: "jest-environment-hardhat",
author: "Uniswap Labs",
authorUrl: "https://uniswap.org/",
description: "A jest environment with hardhat built in.",
tags: ["uniswap", "testing", "jest", "node"],
},
{
name: "hardhat-ctf",
author: "Oren Yomtov",
authorUrl: "https://github.com/orenyomtov",
description: "A framework for building solidity CTF challenges.",
tags: ["ctf", "capture-the-flag", "framework", "security", "solidity"],
},
{
name: "hardhat-contract-prompts",
author: "dbadoy",
authorUrl: "https://github.com/dbadoy",
description: "Build prompt with Solidity code.",
tags: ["solidity", "CLI"],
},
{
name: "hardhat-address-exporter",
author: "Dennis Zoma",
authorUrl: "https://twitter.com/dennis_zoma",
description:
"Export deployed contract addresses (multichain) in typescript files.",
tags: [
"solidity",
"vyper",
"deployment",
"typescript",
"addresses",
"monorepo",
"frontend",
],
},
{
name: "@graphprotocol/hardhat-graph",
author: "The Graph",
authorUrl: "https://thegraph.com",
description:
"Develop your subgraph side by side with your contracts to save gas and increase productivity.",
tags: ["graphprotocol", "subgraph", "graphql", "development", "deployment"],
},
{
name: "hardhat-storage-layout-changes",
author: "Soham Zemse",
authorUrl: "https://github.com/zemse/",
description: "Check for storage layout changes",
tags: ["Storage Layout", "Solidity", "Upgradable Contracts"],
},
{
name: "hardhat-live-fork",
author: "Soham Zemse",
authorUrl: "https://github.com/zemse/",
description:
"Keeps mainnet fork state updated by replaying relevant live txs",
tags: ["Mainnet fork", "live", "transaction replay"],
},
{
name: "hardhat-ens-mock",
author: "DefiCake",
authorUrl: "https://github.com/DefiCake",
description:
"Overrides ENS ownership in hardhat network to allow orchestration superpowers",
tags: ["ENS", "Testing", "Orchestration", "Productivity"],
},
{
name: "hardhat-cannon",
author: "Synthetix Core Contributors",
authorUrl: "https://github.com/dbeal-eth",
description:
"Define your project's deployment in a simple manifest, then deploy and share it anywhere. Inspired by Docker, Terraform, and npm. https://usecannon.com/",
tags: ["Tooling", "Deployment", "Testing"],
},
{
name: "hardhat-etherscan-contract-cloner",
author: "Tuckson",
authorUrl: "https://github.com/TucksonDev",
description:
"Hardhat plugin for cloning verified contracts from any supported network using Etherscan's API.",
tags: ["Etherscan", "Clone", "Smart contract"],
},
{
name: "hardhat-interact",
author: "Synthetix Core Contributors",
authorUrl: "https://github.com/dbeal-eth",
description:
"Execute commands on deployed contracts on any network using a helpful TUI.",
tags: ["Tooling", "Operations", "Testing"],
},
{
name: "hardhat-chainlink-plugin",
author: "protofire.io",
authorUrl: "https://protofire.io/",
description:
"Hardhat TypeScript plugin to run a chainlink node and interact with it",
tags: ["ethereum", "smart-contracts", "chainlink", "hardhat-plugin"],
},
{
name: "huff-deployer",
author: "Rodrigo Herrera",
authorUrl: "https://github.com/rodrigoherrerai",
description:
"A Hardhat Typescript plugin to test and interact with Huff contracts",
tags: ["Deployment", "Tasks", "Huff"],
},
{
name: "hardhat-gui",
author: "yecandir",
authorUrl: "https://github.com/yecandir",
description:
"Hardhat React Plugin to interact with your deployed contracts",
tags: ["Tooling", "Testing", "ui", "plugin"],
},
{
name: "hardhat-finder",
author: "Emre Tepe",
authorUrl: "https://emretepedev.github.io/",
description: "Hardhat plugin to get compiler outputs of contracts",
tags: ["Tooling", "Testing", "Tasks", "Scripts", "Solc", "Compiler"],
},
{
name: "@solarity/hardhat-migrate",
author: "Distributed Lab",
authorUrl: "https://distributedlab.com/",
description:
"Hardhat plugin to automate the deployment and verification of contracts",
tags: ["Deployment", "Verification", "Migration", "Solarity"],
},
{
name: "hardhat-notifier",
author: "Mister Singh",
authorUrl: "https://www.npmjs.com/package/hardhat-notifier",
description:
"Hardhat plugin to send an OSX notification when hardhat compilcation fails/succeeds",
tags: ["Deployment", "Tooling", "Notification", "Compile"],
},
{
name: "hardhat-jest",
author: "Arian Hosseini",
authorUrl: "https://www.npmjs.com/package/hardhat-jest",
description: "Hardhat plugin that allows you to use Jest easily",
tags: ["Deployment", "Testing", "Jest", "Smart Contracts", "Solidity"],
},
{
name: "@solarity/hardhat-gobind",
author: "Distributed Lab",
authorUrl: "https://distributedlab.com/",
description:
"Hardhat plugin to generate smart contract bindings for Golang",
tags: ["Bindings", "Go", "Testing", "Solarity"],
},
{
name: "hardhat-storage-vault",
author: "Emre Tepe",
authorUrl: "https://emretepedev.github.io/",
description:
"Hardhat plugin to check and lock the storage layout of contracts",
tags: ["Tooling", "Testing", "Storage"],
},
{
name: "hardhat-insight",
author: "Andres Adjimann",
authorUrl: "https://www.npmjs.com/package/hardhat-insight",
description:
"Hardhat plugin to get contract storage, gas and code size insights using the compiler ast output",
tags: ["Tooling", "Storage", "Gas", "Size", "Bytecode"],
},
{
name: "hardhat-scilla-plugin",
author: "Saeed Dadkhah",
authorUrl: "https://www.github.com/its-saeed",
description:
"Hardhat plugin to test scilla contracts. Scilla is Zillqa's programming language to develop smart contracts.",
tags: ["Scilla", "Testing", "Zilliqa"],
},
{
name: "hardhat-flat-exporter",
author: "Laz",
authorUrl: "https://github.com/Saszr",
description: "Export flat contract on compilation via Hardhat.",
tags: ["Flatten", "Smart contract", "Solidity", "Deployment"],
},
{
name: "@chainlink/hardhat-chainlink",
author: "Chainlink Labs",
authorUrl: "https://github.com/smartcontractkit/hardhat-chainlink",
description: "Integrates Chainlink into Hardhat projects.",
tags: ["chainlink", "hardhat"],
},
{
name: "@solarity/hardhat-markup",
author: "Distributed Lab",
authorUrl: "https://distributedlab.com/",
description:
"Hardhat plugin to generate customizable smart contracts documentation",
tags: ["Documentation", "NatSpec", "Markdown", "Solarity"],
},
{
name: "hardhat-contract-clarity",
author: "Marc-Aurele Besner",
authorUrl: "https://github.com/marc-aurele-besner",
description:
"This Hardhat plugin add 3 tasks to Hardhat, to summarize a smart contract in human readable format using OpenAI GPT-3, to create a readme looking at your package.json and a task to ask question to chatGPT when running into errors.",
tags: ["chatGPT", "openai", "gpt3", "ai"],
},
{
name: "transaction-retry-tool",
author: "Marc-Aurele Besner",
authorUrl: "https://github.com/marc-aurele-besner",
description:
"This Hardhat plugin provides two tasks and two functions to help you manage and optimize your transactions on Ethereum compatible blockchain. The two tasks include the ability to retry a transaction and retrieve the current gas cost.",
tags: ["transaction", "gasPrice", "retry", "helper"],
},
{
name: "@fireblocks/hardhat-fireblocks",
author: "Fireblocks",
authorUrl: "https://github.com/fireblocks",
description: "Hardhat plugin for integrating with Fireblocks",
tags: ["Deployment", "Security"],
},
{
name: "hardhat-uniswap-v2-deploy-plugin",
author: "Cyrille Derché",
authorUrl: "https://github.com/onmychain/hardhat-uniswap-v2-deploy-plugin",
description:
"Hardhat plugin for Uniswap V2 (pancakeswap protocol) testing and deployment. You can use it to test features such as pair creation, liquidity provisioning, and swaps.",
tags: ["uniswap", "pancakeswap", "testing", "deployment", "automated"],
},
{
name: "hardhat-deal",
author: "Rubilmax",
authorUrl: "https://github.com/rubilmax/hardhat-deal",
description:
"Hardhat plugin to ease dealing ERC20 tokens in hardhat forks.",
tags: [
"erc20",
"deal",
"foundry",
"forge",
"mock",
"balanceOf",
"fork",
"testing",
"tests",
],
},
{
name: "@truffle/dashboard-hardhat-plugin",
author: "Truffle",
authorUrl: "https://trufflesuite.com/",
description:
"Enable project-specific features inside Truffle Dashboard, including advanced calldata decoding and more",
tags: ["truffle-dashboard", "transaction", "signing", "decoding"],
},
{
name: "hardhat-w3f",
author: "Gelato Network",
npmPackage: "@gelatonetwork/web3-functions-sdk",
authorUrl: "https://github.com/gelatodigital/web3-functions-sdk",
description:
"The hardhat-w3f plugin allows builders to build & run Web3 Functions connecting smart off-chain data with smart contracts ",
tags: ["Gelato", "w3f", "offchain", "functions"],
},
{
name: "hardhat-publish-typechain",
author: "xiaosongfu",
npmPackage: "hardhat-publish-typechain",
authorUrl: "https://github.com/xiaosongfu",
description: "Publish generated typechain-types to NPM",
tags: ["typechain-types", "npm registry"],
},
{
name: "hardhat-deployed-records",
author: "xiaosongfu",
npmPackage: "hardhat-deployed-records",
authorUrl: "https://github.com/xiaosongfu",
description: "Recording deployed contracts address to json file",
tags: ["deployed history"],
},
{
name: "hardhat-generate-function-selectors",
author: "3obby",
npmPackage: "hardhat-generate-function-selectors",
authorUrl: "https://github.com/3obby/function-selectors-plugin",
description:
"generate an output file of organized function selectors for all ABI/.json files within ./artifacts/contracts",
tags: ["function", "selectors", "tooling", "router"],
},
{
name: "hardhat-gasless-deployer",
author: "Ahmed Ali",
authorUrl: "https://twitter.com/0xAhmedAli",
npmPackage: "https://www.npmjs.com/package/hardhat-gasless-deployer",
description: "Deploy contracts with Hardhat using Gas Station Network",
tags: ["GSN", "Gasless", "Deployment"],
},
{
name: "hardhat-generate-storage-namespace",
npmPackage: "hardhat-generate-storage-namespace",
author: "3obby",
authorUrl: "https://github.com/3obby/hardhat-generate-storage-namespace",
description: "Generate unique storage namespaces within a script/task",
tags: ["solidity", "storage", "namespace", "router"],
},
{
name: "@solarity/hardhat-smart-compare",
author: "Distributed Lab",
authorUrl: "https://distributedlab.com/",
description: "Hardhat plugin to deeply compare smart contracts",
tags: ["Storage Layout", "Bytecode", "Diff", "Compare", "Solarity"],
},
{
name: "hardhat-logger",
author: "kruglay",
npmPackage: "hardhat-logger",
authorUrl: "https://github.com/kruglay/hardhat-logger",
description:
"Show transaction params before hardhat send transaction to network",
tags: ["log", "logger", "transaction"],
},
{
name: "hardhat-contract-signatures",
author: "Axel Loupias",
npmPackage: "hardhat-contract-signatures",
authorUrl: "https://github.com/AxelLoupias",
description:
"Display different signatures that have the methods, events and errors of your contracts by console",
tags: ["functions", "errors", "events", "tooling", "selectorss"],
},
{
name: "@dgma/hardhat-sol-bundler",
author: "Dogma Labs",
authorUrl: "https://github.com/dgma",
description: "Build and deploy only changed smartcontracts",
tags: ["deployment", "diff deployment", "ethers.js", "proxy"],
},
{
name: "@bonadocs/docgen",
author: "Bonadocs",
npmPackage: "@bonadocs/docgen",
authorUrl: "https://github.com/bonadocs",
description:
"Generate a beautiful and interactive documentation website for your project in seconds",
tags: ["Documentation", "NatSpec"],
},
{
name: "ethernaut-ai",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description:
"AI assistant that interprets user input and executes hardhat tasks",
tags: ["ethernaut-cli", "AI", "Agent"],
},
{
name: "ethernaut-ai-ui",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description: "Ui extensions for the ethernaut-ai package",
tags: ["ethernaut-cli", "ui", "AI"],
},
{
name: "ethernaut-challenges",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description:
"Tasks for playing the Open Zeppelin Ethernaut challenges from the CLI",
tags: ["ethernaut-cli", "OpenZeppelin", "Ethernaut"],
},
{
name: "ethernaut-interact",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description:
"Tasks for sending transactions and interacting with contracts",
tags: ["ethernaut-cli", "contract", "send", "transactions"],
},
{
name: "ethernaut-interact-ui",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description: "Ui extensions for the ethernaut-interact package",
tags: ["ethernaut-cli", "ui", "interact", "etherscan"],
},
{
name: "ethernaut-network",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description: "Tasks for interacting with different networks",
tags: ["ethernaut-cli", "network"],
},
{
name: "ethernaut-network-ui",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description: "Ui extensions for the ethernaut-network package",
tags: ["ethernaut-cli", "ui", "network"],
},
{
name: "ethernaut-ui",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description: "Ui extensions for the ethernaut-network package",
tags: ["ethernaut-cli", "ui", "interactivity", "enquirer", "prompts"],
},
{
name: "ethernaut-util",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description: "Simple, everyday utilities for Ethereum devs",
tags: ["ethernaut-cli", "utilities"],
},
{
name: "ethernaut-util-ui",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description: "Ui extensions for the ethernaut-util package",
tags: ["ethernaut-cli", "ui", "utilities"],
},
{
name: "ethernaut-wallet",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description: "Tasks for interacting from different Ethereum accounts",
tags: ["ethernaut-cli", "wallet"],
},
{
name: "ethernaut-wallet-ui",
author: "Alejandro Santander",
authorUrl: "https://github.com/theethernaut",
description: "Ui extensions for the ethernaut-wallet package",
tags: ["ethernaut-cli", "ui", "wallet"],
},
{
name: "@okxweb3/hardhat-explorer-verify",
author: "okx",
authorUrl: "https://github.com/okx",
description:
"Hardhat plugin for verifying smart contracts deployed on the EVM chains including X Layer",
tags: ["OKX Explorer", "Verification", "X Layer"],
},
{
name: "@solarity/hardhat-zkit",
author: "Distributed Lab",
authorUrl: "https://distributedlab.com/",
description: "The ultimate environment for building with Circom",
tags: ["Circom", "zk", "SnarkJS", "environment", "Solarity"],
},
{
name: "@solarity/hardhat-habits",
author: "Distributed Lab",
authorUrl: "https://distributedlab.com/",
description: "Hardhat plugin to get interfaceid",
tags: ["ABI", "interfaceid", "Solarity"],
},
{
name: "@yankeguo/hardhat-trezor",
author: "Yanke G.",
authorUrl: "https://yankeguo.com",
description: "Hardhat plugin for the Trezor hardware wallet",
tags: ["Trezor", "Wallet"],
},
{
name: "hardhat-switch-network",
author: "0xNeshi",