Output Solidity contract sizes with Hardhat.
Versions of this plugin prior to
3.0.0
were released ashardhat-contract-sizer
, outside of the@solidstate
namespace.
Versions of this plugin prior to
2.0.0
were released asbuidler-contract-sizer
.
npm install --save-dev @solidstate/hardhat-contract-sizer
# or
pnpm add -D @solidstate/hardhat-contract-sizer
Load plugin in Hardhat config:
import hardhatContractSizer from '@solidstate/hardhat-contract-sizer';
const config: HardhatUserConfig = {
plugins: [
hardhatContractSizer,
],
contractSizer: {
... // see table for configuration options
},
};
Add configuration under the contractSizer
key:
option | description | default |
---|---|---|
alphaSort |
whether to sort results table alphabetically (default sort is by contract size) | false |
runOnCompile |
whether to output contract sizes automatically after compilation | false |
flat |
whether to hide the full path to the compilation artifact and output only the contract name | false |
strict |
whether to throw an error if any contracts exceed the size limit | false |
only |
Array of String matchers used to select included contracts, defaults to all contracts if length is 0 |
[] |
except |
Array of String matchers used to exclude contracts |
[] |
unit |
unit of measurement for the size of contracts, which can be expressed in 'B' (bytes), 'kB' (kilobytes) or 'KiB' (kibibytes) | KiB |
Additional configuration options are provided by @solidstate/hardhat-git
, which is included as a dependency.
Run the included Hardhat task to output compiled contract sizes:
npx hardhat size-contracts
# or
pnpm hardhat size-contracts
By default, the hardhat compile
task is run before sizing contracts. This behavior can be disabled with the --no-compile
flag:
npx hardhat size-contracts --no-compile
# or
pnpm hardhat size-contracts --no-compile
Install dependencies via pnpm:
pnpm install
Setup Husky to format code on commit:
pnpm prepare