Skip to content

Commit

Permalink
Upgrade to hardhat-toolbox for batch bin and custom pin contracts
Browse files Browse the repository at this point in the history
Signed-off-by: Nicko Guyer <[email protected]>
  • Loading branch information
nguyer committed Mar 15, 2024
1 parent 577e8c4 commit dbb1ed7
Show file tree
Hide file tree
Showing 10 changed files with 9,014 additions and 21,645 deletions.
18 changes: 7 additions & 11 deletions smart_contracts/ethereum/custompin_sample/hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
import { HardhatUserConfig } from 'hardhat/config';
import '@nomiclabs/hardhat-etherscan';
import '@nomiclabs/hardhat-waffle';
import '@typechain/hardhat';
import 'hardhat-gas-reporter';
import 'solidity-coverage';
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";

// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
Expand All @@ -12,17 +8,17 @@ const config: HardhatUserConfig = {
solidity: "0.8.4",
defaultNetwork: "firefly-cli",
networks: {
'firefly-cli': {
url: "http://127.0.0.1:5100"
}
"firefly-cli": {
url: "http://127.0.0.1:5100",
},
},
gasReporter: {
enabled: process.env.REPORT_GAS !== undefined,
currency: 'USD',
currency: "USD",
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
},
};

export default config;
export default config;
Loading

0 comments on commit dbb1ed7

Please sign in to comment.