This Truffle plugin displays the contract size of all or a selection of your smart contracts in kilobytes.
- Install the plugin with npm
npm install truffle-contract-size
- Add the plugin to your
truffle.js
ortruffle-config.js
file
module.exports = {
/* ... rest of truffle-config */
plugins: [
'truffle-contract-size'
]
}
The command can be executed without any arguments to display the size of all contracts in the projects.
truffle run contract-size
To show only certain contracts one or more contract names can be given as arguments to the contracts option:
truffle run contract-size --contracts ExampleContract1 ExampleContract2
The plugin can be used to check that the smart contracts aren't bigger than the allowed maximum contract size of the Ethereum Mainnet (24 KiB = 24576 bytes). For example this can be used, to make a CI/CD pipeline fail, if a contract is bigger than allowed.
truffle run contract-size --checkMaxSize
If another size limit than the default one should be checked, it can be given as argument to the option. For example to set the maximum to 48 KiB the following command can be used:
truffle run contract-size --checkMaxSize 48
If one or more of the contracts are bigger than the maximum size, an error message will de displayed, and the exit status will be 1.
Mock contracts are used to improve the testing of smart contracts. As they are only used during testing and will not be deployed, it can be useful to ignore when calculating the contract sizes. When the option is used, all contract which names are ending with Mock
will be ignored. This can especially be useful in combination with the --checkMaxSize
option.
truffle run contract-size --ignoreMocks