-
Moonbase Alpha PolkadotJS app https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Fwss.testnet.moonbeam.network#/explorer
- Many Thanks @JoshOrndorff
- moonbeam-foundation/moonbeam#930 (comment)
docker run --rm --name moonbeam_development --network host moonbeam-0.13.2-arm --dev --rpc-methods unsafe --rpc-external --ws-external --pool-limit 100000 --ws-port 9944 --rpc-cors all
docker run --rm --name moonbeam_development -p 9944:9944 -p 9933:9933 \
purestake/moonbeam:v0.21.1 \
--dev --ws-external --rpc-external --sealing manual
# 1000 -l rpc=trace
curl -H "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method":
"chain_getBlock", "params":[]}' http://localhost:9933 | json_pp -json_opt pretty,canonical
curl -H "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method":
"eth_chainId", "params":[]}' http://localhost:9933 | json_pp -json_opt pretty,canonical
https://docs.moonbeam.network/tokens/staking/stake/
Retrieving the List of Collators
Before starting to stake tokens, it is important to retrieve the list of collators available in the network. To do so:
Head to the "Developer" tab
Click on "Chain State"
Choose the pallet to interact with. In this case, it is the parachainStaking pallet
Choose the state to query. In this case, it is the selectedCandidates or candidatePool state
Send the state query by clicking on the "+" button
Each extrinsic provides a different response:
selectedCandidates — returns the current active set of collators, that is, the top 60 collators by total tokens staked (including nominations)
candidatePool — returns the current list of all the collators, including those that are not in the active set