File tree Expand file tree Collapse file tree 1 file changed +9
-11
lines changed
Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Original file line number Diff line number Diff line change 1- import ' @nomicfoundation/hardhat-foundry' ;
2- import ' @nomicfoundation/hardhat-toolbox' ;
3- import ' @nomiclabs/hardhat-solhint' ;
4- import type { HardhatUserConfig } from ' hardhat/config' ;
1+ import " @nomicfoundation/hardhat-foundry" ;
2+ import " @nomicfoundation/hardhat-toolbox-viem" ;
3+ import " @nomiclabs/hardhat-solhint" ;
4+ import type { HardhatUserConfig } from " hardhat/config" ;
55
66const config : HardhatUserConfig = {
77 solidity : {
8- version : ' 0.8.26' ,
8+ version : " 0.8.26" ,
99 settings : {
1010 viaIR : true ,
1111 optimizer : {
@@ -17,18 +17,16 @@ const config: HardhatUserConfig = {
1717 networks : {
1818 hardhat : { } ,
1919 btp : {
20- url : process . env . BTP_RPC_URL || '' ,
21- gasPrice : process . env . BTP_GAS_PRICE
22- ? parseInt ( process . env . BTP_GAS_PRICE )
23- : 'auto' ,
20+ url : process . env . BTP_RPC_URL || "" ,
21+ gasPrice : process . env . BTP_GAS_PRICE ? parseInt ( process . env . BTP_GAS_PRICE ) : "auto" ,
2422 } ,
2523 } ,
2624 etherscan : {
2725 apiKey : process . env . ETHERSCAN_API_KEY ,
2826 } ,
2927 sourcify : {
3028 enabled : true ,
31- } ,
29+ }
3230} ;
3331
34- export default config ;
32+ export default config ;
You can’t perform that action at this time.
0 commit comments