diff --git a/src/content/docs/validator/external-chains/flow.mdx b/src/content/docs/validator/external-chains/flow.mdx
index b9d3cbc0..d5bb5d1e 100644
--- a/src/content/docs/validator/external-chains/flow.mdx
+++ b/src/content/docs/validator/external-chains/flow.mdx
@@ -67,7 +67,7 @@ mkdir ./bootstrap
The network address is the address that will be used by the other nodes in the network to talk to your node.
- Please ensure that the address (hostname:port) that you use is accessible from outside and there is no firewall rule blocking egress and **ingress** traffic for that address.
+ Please ensure that the address (hostname:port) that you use is accessible from outside and there is no firewall rule blocking egress and **ingress** traffic for that address.
This will generate the node information which includes public and private staking keys, public and private networking key and the node ID.
@@ -418,7 +418,7 @@ make build
mv flow-evm-gateway /usr/bin/
```
-Further details on EVM Gateway building and configuration can be found in the EVM Gateway [repo](https://github.com/onflow/flow-evm-gateway/blob/main/README.md#building).
+Further details on EVM Gateway building and configuration can be found in the EVM Gateway node ops [docs](https://developers.flow.com/networks/node-ops/access-onchain-data/evm-gateway/evm-gateway-setup).
### Enable EVM address for Flow operator account
@@ -448,8 +448,9 @@ EVM operator address and private key is configured for `--coa-address` & `--coa-
```bash
ACCESS_NODE_GRPC_HOST="${YOUR_NODE_ADDRESS}:9000"
+ ACCESS_NODE_SPORK_HOSTS="access-001.mainnet25.nodes.onflow.org:9000"
FLOW_NETWORK_ID="flow-mainnet"
- INIT_CADENCE_HEIGHT="211176670" # see below
+ INIT_CADENCE_HEIGHT="85981135"
COINBASE="${LINKED_EVM_ADDRESS_WITHOUT_0x}"
COA_ADDRESS="${FLOW_OPERATOR_ACCOUNT_ADDRESS}"
COA_KEY="${FLOW_OPERATOR_ACCOUNT_PRIVATE_KEY}"
@@ -459,8 +460,9 @@ EVM operator address and private key is configured for `--coa-address` & `--coa-
```bash
ACCESS_NODE_GRPC_HOST="${YOUR_NODE_ADDRESS}:9000"
+ ACCESS_NODE_SPORK_HOSTS="access-001.devnet51.nodes.onflow.org:9000"
FLOW_NETWORK_ID="flow-testnet"
- INIT_CADENCE_HEIGHT="211176670" # see below
+ INIT_CADENCE_HEIGHT="211176670"
COINBASE="${LINKED_EVM_ADDRESS_WITHOUT_0x}"
COA_ADDRESS="${FLOW_OPERATOR_ACCOUNT_ADDRESS}"
COA_KEY="${FLOW_OPERATOR_ACCOUNT_PRIVATE_KEY}"
@@ -481,6 +483,7 @@ After=network-online.target
User=$USER
ExecStart=/usr/bin/flow-evm-gateway run \
--access-node-grpc-host=$ACCESS_NODE_GRPC_HOST \
+--access-node-spork-hosts=$ACCESS_NODE_SPORK_HOSTS \
--flow-network-id=$FLOW_NETWORK_ID \
--init-cadence-height=$INIT_CADENCE_HEIGHT \
--ws-enabled=true \
@@ -490,6 +493,7 @@ ExecStart=/usr/bin/flow-evm-gateway run \
--rate-limit=9999999 \
--rpc-host=0.0.0.0 \
--gas-price=$GAS_PRICE
+--tx-state-validation=local-index
Restart=always
RestartSec=3
LimitNOFILE=4096