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

Fix documentation for remote solana #118

Merged
merged 1 commit into from
Dec 5, 2023
Merged
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
8 changes: 4 additions & 4 deletions docs/developing/dev_environment/local_proxy_remote_solana.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,23 +76,23 @@ mv {PATH_TO_WHITELISTED_KEYS} keys/
- For Mainnet, use: `NeonVMyRX5GbCrsAHnUwx1nYYoJAtskU1bWUo6JGNyG`
- `SOLANA_URL`
- Refer to the [RPC Endpoints table](#rpc-endpoints)
- `PROXY_VERSION`
- `REVISION` - neon proxy revision

For example,
```bash
export EVM_LOADER=eeLSJgWzzxrqKv1UxtRVVH8FX3qCQWUs9QuAjJpETGU
export SOLANA_URL=http://api.devnet.solana.com/
export PROXY_VERSION=latest
export REVISION=latest
```

3. Download the `docker-compose` [file](https://github.com/neonlabsorg/proxy-model.py/blob/develop/docker-compose/docker-compose-remote-solana.yml). This file should be placed in the same folder with the `keys/` directory.
```bash
wget https://raw.githubusercontent.com/neonlabsorg/proxy-model.py/develop/proxy/docker-compose-remote-solana.yml
wget https://raw.githubusercontent.com/neonlabsorg/proxy-model.py/develop/docker-compose/docker-compose-remote-solana.yml
```

4. Start the local environment.
```bash
docker-compose -f docker-compose-remote-solana.yml up -d
docker-compose -f docker-compose-remote-solana.yml up postgres dbcreation proxy indexer -d
```

If you want to destroy the local environment, run the following command:
Expand Down