From bbced4673316763c6ef931b4d0a08069cde2474c Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Tue, 15 Apr 2025 10:55:57 +0200 Subject: [PATCH] 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 --- Readme.md | 2 +- ethers.nimble | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 809111e..645735d 100644 --- a/Readme.md +++ b/Readme.md @@ -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: diff --git a/ethers.nimble b/ethers.nimble index ebd0d94..5df4668 100644 --- a/ethers.nimble +++ b/ethers.nimble @@ -1,4 +1,4 @@ -version = "1.1.0" +version = "2.0.0" author = "Nim Ethers Authors" description = "library for interacting with Ethereum" license = "MIT"