Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.04 KB

README.md

File metadata and controls

54 lines (37 loc) · 1.04 KB

spells-goerli

Build Status

Staging repo for MakerDAO's Goerli executive spells.

Instructions

Getting Started

$ git clone git@github.com:makerdao/spells-goerli.git
$ dapp update

Build

$ make

Test (DappTools without Optimizations)

Set ETH_RPC_URL to a Goerli node.

$ export ETH_RPC_URL=<Goerli URL>
$ make test

Test (Forge without Optimizations)

Prerequisites

  1. Install Rust.
  2. Install Forge.

Operation

Set ETH_RPC_URL to a Goerli node.

$ export ETH_RPC_URL=<Goerli URL>
$ make test-forge

Deploy

Set ETH_RPC_URL to a Goerli node and ensure ETH_GAS_LIMIT is set to a high enough number to deploy the contract.

$ export ETH_RPC_URL=<Goerli URL>
$ export ETH_GAS_LIMIT=8000000
$ export ETH_GAS_PRICE=$(seth --to-wei 3 "gwei")
$ make deploy