Skip to content
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

adding transit pull instructions for access node with and without exe… #912

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
8 changes: 6 additions & 2 deletions docs/networks/node-ops/node-operation/spork.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Loading