21 lines
659 B
Nim
21 lines
659 B
Nim
import std/json
|
|
import std/os
|
|
import pkg/ethers
|
|
import pkg/questionable
|
|
|
|
type Deployment* = object
|
|
json: JsonNode
|
|
|
|
const defaultFile = "vendor" / "dagger-contracts" / "deployment-localhost.json"
|
|
|
|
## Reads deployment information from a json file. It expects a file that has
|
|
## been exported with Hardhat deploy.
|
|
## See also:
|
|
## https://github.com/wighawag/hardhat-deploy/tree/master#6-hardhat-export
|
|
proc deployment*(file = defaultFile): Deployment =
|
|
Deployment(json: parseFile(file))
|
|
|
|
proc address*(deployment: Deployment, Contract: typedesc): ?Address =
|
|
let address = deployment.json["contracts"][$Contract]["address"].getStr()
|
|
Address.init(address)
|