20 lines
615 B
Nim
20 lines
615 B
Nim
|
import std/json
|
||
|
import pkg/ethers
|
||
|
import pkg/questionable
|
||
|
|
||
|
type Deployment* = object
|
||
|
json: JsonNode
|
||
|
|
||
|
const defaultFile = "./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)
|