Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation README.md and HOWTO.md in local-testnet #30

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ Check [here](./local-testnet/HOWTO.md)

## Building the source

Before building, make sure all Git submodules are initialized. This repository includes submodules (e.g. `libs/fhevm-backend`) that are required for the build. Run the following command from the repository root:

```shell
git submodule update --init --recursive
```

For prerequisites and detailed build instructions please read the [Installation Instructions](https://geth.ethereum.org/docs/getting-started/installing-geth).

Building `geth` requires both a Go (version 1.21 or later) and a C compiler. You can install
Expand Down
4 changes: 2 additions & 2 deletions local-testnet/HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
1. This command will among other steps generate fhe keys in fhevm-keys

> [!NOTE]
> Be careful fhevm-go-copro expects fhe keys in FHEVM_GO_KEYS_DIR env variable, if this is already set globally it could potentially overwrite the env variable given to rpc node.
> Be careful! fhevm-go-copro expects FHE keys in the FHEVM_GO_KEYS_DIR environment variable. If this variable is already set globally, it could potentially overwrite the environment variable provided to the RPC node.
3. Check you have 4 tmux sessions
```bash
tmux ls
Expand All @@ -20,7 +20,7 @@ val2: 1 windows (created Thu Apr 25 15:07:05 2024)
tmux a -t rpc1
```

5. Open **Metamask** and import a new account with the following pricate key:
5. Open **Metamask** and import a new account with the following private key:
`d4251c2bca983ae6d2e19e728ec7fd8b80002cde2ee5c21f3f243fad82852386`


Expand Down