mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-01-09 20:45:38 +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>
45 lines
1.2 KiB
Nim
45 lines
1.2 KiB
Nim
import std/json
|
|
import std/os
|
|
import std/tables
|
|
import pkg/ethers
|
|
import pkg/questionable
|
|
import pkg/chronicles
|
|
|
|
import ../conf
|
|
import ./marketplace
|
|
|
|
type Deployment* = ref object
|
|
provider: Provider
|
|
config: CodexConf
|
|
|
|
const knownAddresses = {
|
|
# Hardhat localhost network
|
|
"31337": {
|
|
"Marketplace": Address.init("0x59b670e9fA9D0A427751Af201D676719a970857b")
|
|
}.toTable,
|
|
# Taiko Alpha-3 Testnet
|
|
"167005": {
|
|
"Marketplace": Address.init("0x948CF9291b77Bd7ad84781b9047129Addf1b894F")
|
|
}.toTable
|
|
}.toTable
|
|
|
|
proc getKnownAddress(T: type, chainId: UInt256): ?Address =
|
|
let id = chainId.toString(10)
|
|
notice "Looking for well-known contract address with ChainID ", chainId=id
|
|
|
|
if not (id in knownAddresses):
|
|
return none Address
|
|
|
|
return knownAddresses[id].getOrDefault($T, Address.none)
|
|
|
|
proc new*(_: type Deployment, provider: Provider, config: CodexConf): Deployment =
|
|
Deployment(provider: provider, config: config)
|
|
|
|
proc address*(deployment: Deployment, contract: type): Future[?Address] {.async.} =
|
|
when contract is Marketplace:
|
|
if address =? deployment.config.marketplaceAddress:
|
|
return some address
|
|
|
|
let chainId = await deployment.provider.getChainId()
|
|
return contract.getKnownAddress(chainId)
|