Skip to content

Mention rpc port on beaconkit tut and put port in evm-contract tut #425

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

Merged
merged 3 commits into from
Jul 25, 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
9 changes: 8 additions & 1 deletion tutorials/beaconkit.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Building a Sovereign Rollup with BeaconKit and Rollkit

<!-- markdownlint-disable MD033 -->
<script setup>
import constants from '../.vitepress/constants/constants.js'
</script>

![beaconkit](https://camo.githubusercontent.com/8aaae79e171969a2a9c950582d512cd1e3746e67d3aea6410afc04e9b6cb8055/68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f6475763067343032792f696d6167652f75706c6f61642f76313731383033343331322f426561636f6e4b697442616e6e65722e706e67)

## Introduction
Expand All @@ -22,7 +27,7 @@ Before you begin, ensure you have the following software installed on your machi

First, set up a local data availability network node:

```bash
```bash-vue
cd $HOME && curl -sSL https://rollkit.dev/install-local-da.sh | sh -s {{constants.localDALatestTag}}
```

Expand All @@ -47,6 +52,8 @@ cd $HOME/beacon-kit
make start-geth
```

Notice within logs indicating that your Geth client is running the RPC server is listening on port `8545`. You will need that port to deploy and interact with smart contracts on the BeaconKit EVM.

## Build and run the BeaconKit node {#build-and-run-beaconkit-node}

Open a new terminal and run:
Expand Down
2 changes: 1 addition & 1 deletion tutorials/evm-contract-interaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Export the funded private key and RPC URL:

```bash
export PRIVATE_KEY=0xfffdbb37105441e14b0ee6330d855d8504ff39e705c3afa8f859ac9865f99306
export RPC_URL=<rpc url>
export RPC_URL=http://localhost:8545 // or for Octane EVM the port is 8000
```

Use Foundry to deploy the contract to your EVM:
Expand Down
Loading