Skip to content

2.1.0

Compare
Choose a tag to compare
@marekkirejczyk marekkirejczyk released this 23 Aug 17:08
· 405 commits to master since this release
89c4c6c

Features:

  • Ability to modify default provider gasLimit and gasPrice in createMockProvider(). It can be object with path to config file, e.g.:

    provider = createMockProvider({gasLimit: 0x6691b7, gasPrice: 0x77359400});

    or

    provider = createMockProvider('./waffle.json');

    waffle.json:

    {
      ...
      "ganacheOptions": {
        "gasLimit": "0x6691b7",
        "gasPrice": "0x77359400"
      }
    }

Bugfixes and maintance:

  • Fix ganache-core version to 2.6.1 (seems stable)
  • Update yarn.lock
  • Move @types/ganache-core to dependencies

Note:

  • Form this versions we start using semantic versioning.