Skip to content

Releases: blockcoders/nestjs-ethers

v2.2.0

04 Nov 14:15
b5416e2
Compare
Choose a tag to compare
fixes (#160)

v2.1.0

17 Oct 12:02
d90bf1f
Compare
Choose a tag to compare

πŸ“š PR:

  • #148 Added option to use MulticallProvider instead of StaticJsonRpcProvider when using custom provider by @0x67

v2.0.3

07 Jan 19:46
Compare
Choose a tag to compare
Bump to 2.0.3

v2.0.2

07 Jan 19:37
Compare
Choose a tag to compare
Update readme

v2.0.1

07 Jan 19:30
Compare
Choose a tag to compare

πŸ“š PR:

  • #145 Fix @nestjs/common peer dependenciy version

v2.0.0

07 Jan 18:19
Compare
Choose a tag to compare

πŸ“š PR:

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.

v1.0.3

14 Jul 11:12
Compare
Choose a tag to compare

πŸ“š PR:

v1.0.2

08 May 12:04
Compare
Choose a tag to compare

πŸ“š PR:

v1.0.1

15 Feb 10:50
Compare
Choose a tag to compare

πŸ“š PR:

  • #133 Update dependencies

v1.0.0

16 Sep 20:40
Compare
Choose a tag to compare

πŸ“š PR:

  • #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.