odan blog

hardhat を試した

Ethereum のスマートコントラクト開発の補助ツールである hardbat を試してみました。個人的には truffle の代替になってくれることを期待して試してみました。

試した内容は https://github.com/odan-sandbox/erc721-compare-gas-used にあります。

hardhat.config.js

require("@nomiclabs/hardhat-waffle");

// This is a sample Hardhat task. To learn how to create your own go to
// https://hardhat.org/guides/create-task.html
task("accounts", "Prints the list of accounts", async () => {
  const accounts = await ethers.getSigners();

  for (const account of accounts) {
    console.log(account.address);
  }
});

// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more

/**
 * @type import('hardhat/config').HardhatUserConfig
 */
module.exports = {
  solidity: "0.7.3",
};

キャッシュ

TypeScript 対応

declare var task: typeof import("hardhat/config").task;
declare var hre: import("hardhat/types").HardhatRuntimeEnvironment;

scripts

グローバル変数 hre を使わない

eth-optimism/ovm-toolchain

テスト

感想