File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
crytic_compile/cryticparser Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -385,6 +385,30 @@ def _init_etherscan(parser: ArgumentParser) -> None:
385
385
default = DEFAULTS_FLAG_IN_CONFIG ["etherscan_api_key" ],
386
386
)
387
387
388
+ group_etherscan .add_argument (
389
+ "--base-apikey" ,
390
+ help = "Basescan API key." ,
391
+ action = "store" ,
392
+ dest = "base_api_key" ,
393
+ default = DEFAULTS_FLAG_IN_CONFIG ["etherscan_api_key" ],
394
+ )
395
+
396
+ group_etherscan .add_argument (
397
+ "--gno-apikey" ,
398
+ help = "Gnosisscan API key." ,
399
+ action = "store" ,
400
+ dest = "gno_api_key" ,
401
+ default = DEFAULTS_FLAG_IN_CONFIG ["etherscan_api_key" ],
402
+ )
403
+
404
+ group_etherscan .add_argument (
405
+ "--polyzk-apikey" ,
406
+ help = "zkEVM Polygonscan API key." ,
407
+ action = "store" ,
408
+ dest = "polyzk_api_key" ,
409
+ default = DEFAULTS_FLAG_IN_CONFIG ["etherscan_api_key" ],
410
+ )
411
+
388
412
group_etherscan .add_argument (
389
413
"--etherscan-export-directory" ,
390
414
help = "Directory in which to save the analyzed contracts." ,
You can’t perform that action at this time.
0 commit comments