-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,31 +10,29 @@ | |
Make sure you have the following dependencies installed on your machine: | ||
|
||
- [Rust](https://www.rust-lang.org/tools/install) | ||
- [Node.js](https://nodejs.org/en/download/package-manager) | ||
- [pnpm](https://pnpm.io/installation) | ||
|
||
EDR is part of the [Hardhat monorepo](https://github.com/NomicFoundation/hardhat). Clone the source code using ssh: | ||
Clone the source code using ssh: | ||
|
||
```bash | ||
git clone [email protected]:NomicFoundation/hardhat.git | ||
git clone [email protected]:NomicFoundation/edr.git | ||
``` | ||
|
||
or https: | ||
|
||
```bash | ||
git clone https://github.com/NomicFoundation/hardhat.git | ||
git clone https://github.com/NomicFoundation/edr.git | ||
``` | ||
|
||
Use `cargo` to build a release version: | ||
|
||
```bash | ||
cd hardhat | ||
cd edr | ||
cargo build --release | ||
``` | ||
|
||
## Building a Node.js native module | ||
|
||
Make sure you have the following dependencies installed on your machine: | ||
|
||
- [node.js](https://nodejs.org) | ||
### Building a Node.js native module | ||
|
||
Use `pnpm` to build a release version: | ||
|
||
|