Skip to content

Commit 06457bd

Browse files
Mention rpc port on beaconkit tut and put port in evm-contract tut (#425)
* Mention rpc port on beaconkit tut and put port in evm-contract tut * Rephrase * Fix missing constants import
1 parent bc4e70e commit 06457bd

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

tutorials/beaconkit.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Building a Sovereign Rollup with BeaconKit and Rollkit
22

3+
<!-- markdownlint-disable MD033 -->
4+
<script setup>
5+
import constants from '../.vitepress/constants/constants.js'
6+
</script>
7+
38
![beaconkit](https://camo.githubusercontent.com/8aaae79e171969a2a9c950582d512cd1e3746e67d3aea6410afc04e9b6cb8055/68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f6475763067343032792f696d6167652f75706c6f61642f76313731383033343331322f426561636f6e4b697442616e6e65722e706e67)
49

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

2328
First, set up a local data availability network node:
2429

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

@@ -47,6 +52,8 @@ cd $HOME/beacon-kit
4752
make start-geth
4853
```
4954

55+
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.
56+
5057
## Build and run the BeaconKit node {#build-and-run-beaconkit-node}
5158

5259
Open a new terminal and run:

tutorials/evm-contract-interaction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Export the funded private key and RPC URL:
3737

3838
```bash
3939
export PRIVATE_KEY=0xfffdbb37105441e14b0ee6330d855d8504ff39e705c3afa8f859ac9865f99306
40-
export RPC_URL=<rpc url>
40+
export RPC_URL=http://localhost:8545 // or for Octane EVM the port is 8000
4141
```
4242

4343
Use Foundry to deploy the contract to your EVM:

0 commit comments

Comments
 (0)