node icon indicating copy to clipboard operation
node copied to clipboard

Everything required to run your own Base node

Results 109 node issues
Sort by recently updated
recently updated
newest added

* op-reth version: `ghcr.io/base/node-reth:v0.12.9` * repro steps below, for the same payload, worked fine on Geth nodes. 1. call `eth_getTransactionReceipt` method ``` curl -X POST \ 'http://localhost:8545' \ --header 'Content-Type:...

Stale

The entrypoint hard-set HOST_IP="" which overwrote any environment-provided value. As a result, the conditional that appends --nat=extip:$HOST_IP never executed, making it impossible to advertise a public IP even when HOST_IP...

Stale

### Summary This PR refactors the Dockerfile to provide a cleaner, safer, and more efficient build process for both `op-node` and `geth`. ### Changes - Split the Dockerfile into three...

Stale

The previous pagination logic placed the `resp.NextPage == 0` check in an unreachable `else if` branch competing with TagPrefix conditions. As a result, when TagPrefix != "" and no matching...

Stale

The base node docs said that: "Ensure the RETH_FB_WEBSOCKET_URL is set. Base offers the following public rate limited RPC’s: For Mainnet: RETH_FB_WEBSOCKET_URL=wss://[mainnet.flashblocks.base.org/ws](http://mainnet.flashblocks.base.org/ws)" So did that mean I got rate limited...

Stale

When I deploy the node it shows as follows: Ensure the RETH_FB_WEBSOCKET_URL is set. Base offers the following public rate limited RPC’s: For Mainnet: RETH_FB_WEBSOCKET_URL=wss://mainnet.flashblocks.base.org/ws For Sepolia: RETH_FB_WEBSOCKET_URL=wss://sepolia.flashblocks.base.org/ws Does this...

Stale

Hello, is it possible to run the same base node setup `NODE_TYPE=vanilla - OP Reth implementation (default)` using op-reth binary (e.g. latest release https://github.com/paradigmxyz/reth/releases/tag/v1.8.3) and op-node binary (https://github.com/ethereum-optimism/optimism/releases/tag/op-node%2Fv1.14.3)? And what...

Stale

Today I found an issue with additional args in reth entrypoint, one of my args want propagate to the reth. I've checked the code and found the root cause, `ADDITIONAL_ARGS="--websocket-url=$RETH_FB_WEBSOCKET_URL"`...