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

Fixed broken link to BPF description #183

Merged
merged 2 commits into from
Oct 8, 2024
Merged
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
4 changes: 2 additions & 2 deletions docs/developing/dev_environment/local_proxy_remote_solana.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export SOLANA_KEY_FOR_EVM_CONFIG=<YOUR_SOLANA_PUBLIC_KEY>
Please note that public Solana nodes have [rate limits](https://solana.com/docs/core/clusters) and they may not work with the local Neon Proxy.
If you want to host the local instance on your end you need a Solana node with no rate limits. You can set up your own node or just request one from a provider like P2P, Everstake or QuickNode.

3. Download the files neede to run services:
3. Download the files needed to run services:
```bash
# docker-compose file
wget https://raw.githubusercontent.com/neonlabsorg/neon-proxy.py/develop/docker-compose/docker-compose-ro.yml
Expand All @@ -107,7 +107,7 @@ docker-compose -f docker-compose-ro.yml up -d
```

5. Check the local environment.
You can ensure that start is succesfull by service statuses:
You can ensure that start is succesful by service statuses:
```console
dbcreation - Exited
indexer - Up
Expand Down
2 changes: 1 addition & 1 deletion docs/evm_compatibility/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ for (uint256 i = 0; i < 32; i++) {
<!-- todo looks like these code snippets will benefit at least a sentence to explain list vs map which is better and why -->

### Heap size
Ethereum-like transactions are executed by Neon EVM inside [Solana's Berkeley Packet Filter (BPF)](https://docs.solana.com/developing/on-chain-programs/overview#berkeley-packet-filter-bpf). The BPF has heap memory limit of 256 KB, i.e. the size of the heap allocated to a contract call, is limited to 256 KB.
Ethereum-like transactions are executed by Neon EVM inside [Solana's Berkeley Packet Filter (BPF)](https://solana.com/docs/core/programs#berkeley-packet-filter-bpf). The BPF has heap memory limit of 256 KB, i.e. the size of the heap allocated to a contract call, is limited to 256 KB.

:::info

Expand Down
Loading