mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-02 13:43:06 +00:00
* Update dependencies for Nim 2.x * Use refc as memory management and disable styleCheck because of testutils * Fix ambiguous import * Change Address init because eth introduced Byte20 type for Address type * use uint64 instead of init64 * Rename properties after a change in eth to be closer to the spec * Use Opt type instead of Option * Add 2.0.12 version to CI * Increment the version * Update the Nim version in CI * Update to Nim 2.0.14 * Use Nim 2.x commit hash for contractabi * Remove stable on CI because we don't want to test with Nim 2.2.x * Update Nim minimum version to 2.0.14 * fix version deps * remove fq typename * Add debug flag * Define maximumtaggedversions * Update readme --------- Co-authored-by: Eric <5089238+emizzle@users.noreply.github.com>
14 lines
402 B
Nim
14 lines
402 B
Nim
--styleCheck:usages
|
|
# Disable styleCheck temporarily because Nim 2.x is checking that
|
|
# getopt is used instead of
|
|
# https://github.com/status-im/nim-testutils/pull/54/commits/a1b07a11dd6a0c537a72e5ebf70df438c80f920a
|
|
#--styleCheck:error
|
|
|
|
# begin Nimble config (version 1)
|
|
when fileExists("nimble.paths"):
|
|
include "nimble.paths"
|
|
# end Nimble config
|
|
|
|
when (NimMajor, NimMinor) >= (2, 0):
|
|
--mm:refc
|