mirror of
https://github.com/status-im/nim-dagger.git
synced 2025-01-10 14:46:03 +00:00
71cd35112b
* [docs] fix two client scenario: add missing collateral * [integration] separate step to wait for node to be started * [cli] add option to specify ethereum private key * Remove unused imports * Fix warnings * [integration] move type definitions to correct place * [integration] wait a bit longer for a node to start in debug mode When e.g. running against Taiko test net rpc, the node start takes longer * [integration] simplify handling of codex node and client * [integration] add Taiko integration test * [contracts] await token approval confirmation before next tx * [contracts] deployment address of marketplace on Taiko * [cli] --eth-private-key now takes a file name Instead of supplying the private key on the command line, expect the private key to be in a file with the correct permissions. * [utils] Fixes undeclared `activeChroniclesStream` on Windows * [build] update nim-ethers to include PR #52 Co-authored-by: Eric Mastro <eric.mastro@gmail.com> * [cli] Better error messages when reading eth private key Co-authored-by: Eric Mastro <eric.mastro@gmail.com> * [integration] simplify reading of cmd line arguments Co-authored-by: Eric Mastro <eric.mastro@gmail.com> * [build] update to latest version of nim-ethers * [contracts] updated contract address for Taiko L2 * [build] update codex contracts to latest version --------- Co-authored-by: Eric Mastro <eric.mastro@gmail.com>
35 lines
895 B
Nim
35 lines
895 B
Nim
version = "0.1.0"
|
|
author = "Codex Team"
|
|
description = "p2p data durability engine"
|
|
license = "MIT"
|
|
binDir = "build"
|
|
srcDir = "."
|
|
installFiles = @["build.nims"]
|
|
|
|
requires "nim >= 1.2.0"
|
|
requires "asynctest >= 0.3.2 & < 0.4.0"
|
|
requires "bearssl >= 0.1.4"
|
|
requires "chronicles >= 0.7.2"
|
|
requires "chronos >= 2.5.2"
|
|
requires "confutils"
|
|
requires "ethers >= 0.7.0 & < 0.8.0"
|
|
requires "libbacktrace"
|
|
requires "libp2p"
|
|
requires "metrics"
|
|
requires "nimcrypto >= 0.4.1"
|
|
requires "nitro >= 0.5.1 & < 0.6.0"
|
|
requires "presto"
|
|
requires "protobuf_serialization >= 0.2.0 & < 0.3.0"
|
|
requires "questionable >= 0.10.6 & < 0.11.0"
|
|
requires "secp256k1"
|
|
requires "stew"
|
|
requires "upraises >= 0.1.0 & < 0.2.0"
|
|
requires "toml_serialization"
|
|
requires "https://github.com/status-im/lrucache.nim#1.2.2"
|
|
requires "leopard >= 0.1.0 & < 0.2.0"
|
|
requires "blscurve"
|
|
requires "libp2pdht"
|
|
requires "eth"
|
|
|
|
include "build.nims"
|