You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,24 +95,35 @@ forge test
95
95
96
96
#### Deploying
97
97
98
-
0. Copy `.env.example` to `.env` and populate the variables you plan to use if you plan to deploy any contracts.
98
+
1. Copy `.env.example` to `.env` and populate the variables depending on the deployment scripts that you will execute.
99
99
100
100
```shell
101
101
source .env
102
102
```
103
103
104
-
1. Use [Anvil](https://book.getfoundry.sh/reference/anvil/) to run a local fork of a blockchain to develop in an isolated environment.
104
+
2. For local testing, use [Anvil](https://book.getfoundry.sh/reference/anvil/) to run a local fork of a blockchain to develop in an isolated environment. Or obtain the RPC url for the blockchain to deploy.
105
105
106
106
```shell
107
+
# Example of a forked local environment using anvil
107
108
anvil -f <your_rpc_url>
108
109
```
109
110
110
-
2. Deploy the necessary environment contracts.
111
+
3. Deploy the necessary contracts.
111
112
112
113
> NOTE: As this system matures, this step will no longer be required for public chains where the DeleGator is in use.
0 commit comments