mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-11 10:03:09 +00:00
- signer procs raise SignerError, provider procs raise ProviderError - WalletError now inherits from SignerError - move wallet module under signers - create jsonrpo moudle under signers - bump nim-json-rpc for null-handling fixes - All jsonrpc provider tests passing, still need to fix others
20 lines
531 B
Nim
20 lines
531 B
Nim
version = "0.7.1"
|
|
author = "Nim Ethers Authors"
|
|
description = "library for interacting with Ethereum"
|
|
license = "MIT"
|
|
|
|
requires "nim >= 1.6.0"
|
|
requires "chronicles >= 0.10.3 & < 0.11.0"
|
|
requires "chronos#f0a2d4df61302d24baa6c0f1c257f92045c9ee57"
|
|
requires "contractabi >= 0.6.0 & < 0.7.0"
|
|
requires "questionable >= 0.10.2 & < 0.11.0"
|
|
requires "json_rpc >= 0.3.0 & < 0.4.0"
|
|
requires "stint"
|
|
requires "stew"
|
|
requires "eth"
|
|
|
|
task test, "Run the test suite":
|
|
exec "nimble install -d -y"
|
|
withDir "testmodule":
|
|
exec "nimble test"
|