Releases: blockcoders/nestjs-ethers
Releases Β· blockcoders/nestjs-ethers
v2.2.0
v2.1.0
v2.0.3
v2.0.2
v2.0.1
v2.0.0
π PR:
- #140 Release v2.0.0 - Nest.js v9
- #142 Update README.md by @copocaneta
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
withPOLYGON_NETWORK
.
v1.0.3
π PR:
- #141 Update dependencies
- #139 Fix: Function name createWalletFromEncryptedJson by @GustavoRSSilva
- #138 Fix: README injected variable ethersContract by @GustavoRSSilva
v1.0.2
v1.0.1
v1.0.0
π 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 ethersBaseProvider
interface. - Replace
SmartContractInterface
with ethersContractInterface
interface. - Replace
WalletSigner
with ethersWallet
interface. - Replace
SmartContractFactory
with ethersContractFactory
interface. RandomWalletSignerOptions
was renamed toRandomWalletOptions
EthersSigner
andEthersContract
are not longer part of the global export. Now these two provider are injected inforRoot
andforRootAsync
.@InjectContractProvider
decorator declares theEthersContract
class as a class that can be managed by the Nest IoC container.@InjectSignerProvider
decorator declares theEthersSigner
class as a class that can be managed by the Nest IoC.