truffle-contract-size

2.0.1 • Public • Published

truffle-contract-size

npm

This Truffle plugin displays the contract size of all or a selection of your smart contracts in kilobytes.

Installation

  1. Install the plugin with npm
npm install truffle-contract-size
  1. Add the plugin to your truffle.js or truffle-config.js file
    module.exports = {
      /* ... rest of truffle-config */
 
      plugins: [
        'truffle-contract-size'
      ]
    }

Usage

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

Check maximum contract sizes

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.

Ignore mocks

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

Package Sidebar

Install

npm i truffle-contract-size

Weekly Downloads

1,140

Version

2.0.1

License

Apache-2.0

Unpacked Size

19.1 kB

Total Files

6

Last publish

Collaborators

  • iobuilders