version 2.0.0

Changes:
- supports Nim 2.0.x and 2.2.x
- no longer supports Nim versions 1.6.x
- better handling of async exceptions
- block number can be retrieved from a block tag
- workaround for hardhat websocket subscription timeouts
- supports estimating gas for contract calls
This commit is contained in:
Mark Spanbroek 2025-04-15 10:55:57 +02:00
parent c85192ae34
commit bbced46733
No known key found for this signature in database
GPG Key ID: FBE3E9548D427C00
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ Use the [Nimble][2] package manager to add `ethers` to an existing
project. Add the following to its .nimble file:
```nim
requires "ethers >= 1.1.0 & < 2.0.0"
requires "ethers >= 2.0.0 & < 3.0.0"
```
To avoid conflicts with previous versions of `contractabi`, use the following command to install dependencies:

View File

@ -1,4 +1,4 @@
version = "1.1.0"
version = "2.0.0"
author = "Nim Ethers Authors"
description = "library for interacting with Ethereum"
license = "MIT"