From c2ee9702a5e4172f3925eaf0cf55ef9da2ebcc3c Mon Sep 17 00:00:00 2001 From: Vishal <1117327+vishalchangrani@users.noreply.github.com> Date: Tue, 26 Nov 2024 14:13:03 -0800 Subject: [PATCH] =?UTF-8?q?adding=20transit=20pull=20instructions=20for=20?= =?UTF-8?q?access=20node=20with=20and=20without=20exe=E2=80=A6=20(#912)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * adding transit pull instructions for access node with and without execution data sync enabled and disabled * typo * typo --- docs/networks/node-ops/node-operation/spork.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/networks/node-ops/node-operation/spork.md b/docs/networks/node-ops/node-operation/spork.md index 8d2210bb7e..483ba2d8c6 100644 --- a/docs/networks/node-ops/node-operation/spork.md +++ b/docs/networks/node-ops/node-operation/spork.md @@ -42,8 +42,12 @@ If you had set the [dynamic bootstrap arguments](https://developers.flow.com/net 1. Run the transit script to fetch the new genesis info: `./boot-tools/transit pull -b ./bootstrap -t ${PULL_TOKEN} -r ${YOUR_NODE_TYPE} --concurrency 10 --timeout 15m` -- `PULL_TOKEN` will be provided by the Flow team - +- `PULL_TOKEN` will be provided by the Flow team. + - For `collection`, `consensus`, `verification` node type it will generally be `testnet-x` or `mainnet-x` where x is the latest number of respective network upgrade. e.g. `testnet-52`, `mainnet-26`. + - For `execution` node type it will generally be `testnet-x-execution` or `mainnet-x-execution`. + - For `access` node: + - It will generally be `testnet-x` or `mainnet-x` if execution data indexing is not enabled. + - It will generally be `testnet-x-execution` or `mainnet-x-execution` if execution data indexing is enabled. - `YOUR_NODE_TYPE` should be one of `collection`, `consensus`, `execution`, `verification`, `access` based on the node(s) that you are running.