Skip to content

Latest commit

 

History

History
94 lines (78 loc) · 5.39 KB

CHANGELOG.md

File metadata and controls

94 lines (78 loc) · 5.39 KB

Changelog

2.0.3

Published by blockcoders on 2023/01/07

  • Add @ethersproject/* as dependencies

2.0.2

Published by blockcoders on 2023/01/07

  • Update Readme

2.0.1

Published by blockcoders on 2023/01/07

  • #145 Fix @nestjs/common peer dependenciy version

2.0.0

Published by blockcoders on 2023/01/07

BREAKING CHANGE

  • Dropped support for node < 14
  • Upgrade @nestjs/* from 8.x to 9.x
  • Remove deprecated ethereum chains (ropsten, rinkeby and kovan).
  • Add new RPC providers Moralis and Ankr.
  • Ethers.js is not longer part of the index.ts export.
  • @ethersproject/* is now part of peerDependencies.
  • Rename MATIC_NETWORK with POLYGON_NETWORK.

1.0.3

Published by blockcoders on 2022/05/08

1.0.2

Published by blockcoders on 2022/05/08

1.0.1

Published by blockcoders on 2022/01/15

  • #133 Update dependencies

1.0.0

Published by blockcoders on 2021/09/16

  • #129 Add module context token
  • #128 Add option waitUntilIsConnected
  • #127 Custom StaticJsonRpcProvider
  • #126 BscScan Provider
  • #125 Add precommit
  • #124 Add new network chains
  • #123 Export everything in ethers module
  • #122 Update ethers to 5.4.6
  • #119 Remove dependabot.yml
  • #118 Update eslint

BREAKING CHANGE

  • Replace EthersBaseProvider with ethers BaseProvider interface.
  • Replace SmartContractInterface with ethers ContractInterface interface.
  • Replace WalletSigner with ethers Wallet interface.
  • Replace SmartContractFactory with ethers ContractFactory interface.
  • RandomWalletSignerOptions was renamed to RandomWalletOptions
  • EthersSigner and EthersContract are not longer part of the global export. Now these two provider are injected in forRoot and forRootAsync.
  • @InjectContractProvider decorator declares the EthersContract class as a class that can be managed by the Nest IoC container.
  • @InjectSignerProvider decorator declares the EthersSigner class as a class that can be managed by the Nest IoC .

0.3.2

Published by blockcoders on 2021/08/12

  • #111 Update dependencies
  • #110 Remove Dependabot Badge

0.3.1

Published by blockcoders on 2021/07/13

  • #93 Update dependencies

0.3.0

Published by blockcoders on 2021/04/21

  • #19 Release v0.3.0 - EthersContract implementation
  • #18 Add EthersContract to the README
  • #17 Add SmartContract creation

0.2.0

Published by blockcoders on 2021/04/17

  • #16 Release v0.2.0 - EthersSigner implementation
  • #15 Update Readme with EthersSigner
  • #14 Update PULL_REQUEST_TEMPLATE
  • #13 Add wallet signer service

BREAKING CHANGE

  • Removed providerName option from forRoot and forRootAsync functions.

0.1.0

Published by blockcoders on 2021/04/14

  • #10 Release v0.1.0 - Ethereum Module implementation for NestJS based on Ethers.js