Giter Site home page Giter Site logo

truffle-contract-size's Introduction

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

truffle-contract-size's People

Contributors

daniel-iobuilders avatar marcosio avatar ferparishuertas avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.