mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-02 13:43:06 +00:00
* Add EIP-1559 implementation for gas price * Improve logs * Improve comment * Rename maxFee and maxPriorityFee to use official EIP-1559 names * Delete gas price when using EIP-1559 * Allow override maxFeePerGas * Code style * Remove useless specific EIP1559 test because Hardhart support it so all transactions are using EIP1559 by default * Restore test to check legacy transaction * Update after rebase * Call eth_maxPriorityFeePerGas and returns a manual defined maxPriorityFeePerGas as a fallback * Catch JsonRpcProviderError instead of ProviderError * Improve readability * Set none value for maxFeePerGas in case of non EIP-1559 transaction * Assign none to maxPriorityFeePerGas for non EIP-1559 transaction to avoid potential side effect in wallet signing * Remove upper bound version for stew and update contractabi
21 lines
595 B
Nim
21 lines
595 B
Nim
version = "2.0.0"
|
|
author = "Nim Ethers Authors"
|
|
description = "library for interacting with Ethereum"
|
|
license = "MIT"
|
|
|
|
requires "nim >= 2.0.14"
|
|
requires "chronicles >= 0.10.3 & < 0.11.0"
|
|
requires "chronos >= 4.0.4 & < 4.1.0"
|
|
requires "contractabi >= 0.7.2 & < 0.8.0"
|
|
requires "questionable >= 0.10.2 & < 0.11.0"
|
|
requires "json_rpc >= 0.5.0 & < 0.6.0"
|
|
requires "serde >= 1.2.1 & < 1.3.0"
|
|
requires "stint >= 0.8.1 & < 0.9.0"
|
|
requires "stew >= 0.2.0"
|
|
requires "eth >= 0.5.0 & < 0.6.0"
|
|
|
|
task test, "Run the test suite":
|
|
# exec "nimble install -d -y"
|
|
withDir "testmodule":
|
|
exec "nimble test"
|