nim-ethers/ethers.nimble
Eric 9f4f762e21
version 0.5.0
Breaking change:
`Filter` has been changed to `EventFilter` to be inline with ethers.js. `Filter` is used for creating subscriptions in `nim-ethers`. All previously-created instances of `Filter` in your consuming application code should be changed to `EventFilter`.
2023-07-24 15:54:18 +10:00

20 lines
486 B
Nim

version = "0.5.0"
author = "Nim Ethers Authors"
description = "library for interacting with Ethereum"
license = "MIT"
requires "nim >= 1.6.0"
requires "chronos >= 3.0.0 & < 4.0.0"
requires "contractabi >= 0.5.0 & < 0.6.0"
requires "questionable >= 0.10.2 & < 0.11.0"
requires "upraises >= 0.1.0 & < 0.2.0"
requires "json_rpc"
requires "stint"
requires "stew"
requires "eth"
task test, "Run the test suite":
exec "nimble install -d -y"
withDir "testmodule":
exec "nimble test"