Skip to content

Latest commit

History

History
97 lines (60 loc) 路 1.72 KB

CHANGELOG.md

File metadata and controls

97 lines (60 loc) 路 1.72 KB

@typechain/truffle-v5

8.0.7

8.0.6

8.0.5

8.0.4

8.0.3

8.0.2

8.0.1

8.0.0

Minor Changes

  • e447bfb: Added optional config.inputDir property and --input-dir flag to control directory structure in generated types. If not set, it's inferred as lowest common path of all ABI files.

Patch Changes

  • Updated dependencies [3a8a99a]
  • Updated dependencies [5b9a7fb]
  • Updated dependencies [e447bfb]
  • Updated dependencies [978490f]
  • Updated dependencies [a59ae6e]
  • Updated dependencies [975a9dc]
  • Updated dependencies [e1f832c]
    • typechain@8.0.0

7.0.0

Patch Changes

  • Updated dependencies [92939ea]
  • Updated dependencies [d244e41]
    • typechain@7.0.0

6.0.0

Patch Changes

  • Updated dependencies [0ac4921]
  • Updated dependencies [95517e9]
  • Updated dependencies [33ee803]
    • typechain@6.0.0

5.1.0

Minor Changes

  • b3c94a1: Adds overrides introduced by EIP-1559.

5.0.0

Patch Changes

  • Updated dependencies [d60a343]
  • Updated dependencies [5a60d00]
  • Updated dependencies [d60a343]
    • typechain@5.0.0

4.0.1

Patch Changes

  • ebaeffc: Add missing properties to Truffle.ContractInstance

4.0.0

Major Changes

  • f8711eb: Changed return type of functions from an array to a object. This represents better runtime types.

    Before, solidity function like this:

    function x() public pure returns (uint256)
    

    Generated such method signature:

    x(txDetails?: Truffle.TransactionDetails): Promise<[BigNumber]>;

    New output is:

    x(txDetails?: Truffle.TransactionDetails): Promise<{0: BigNumber}>;

    The difference is that now you can use standard object destructuring while working with output types.