curl --request POST \
--url http://localhost:5935/activateOrchestrator \
--header 'Content-Type: application/json' \
--data '
{
"blockRewardCut": "10",
"feeShare": "5",
"pricePerUnit": "1000",
"serviceURI": "https://orchestrator.example.com:8935"
}
'{
"txHash": "0x...",
"status": "success"
}Multi-step process to become an orchestrator
curl --request POST \
--url http://localhost:5935/activateOrchestrator \
--header 'Content-Type: application/json' \
--data '
{
"blockRewardCut": "10",
"feeShare": "5",
"pricePerUnit": "1000",
"serviceURI": "https://orchestrator.example.com:8935"
}
'{
"txHash": "0x...",
"status": "success"
}Percentage of block rewards to keep (0-100)
"10"
Percentage of fees to share with delegators (0-100)
"5"
Price per pixel in wei
"1000"
Service URI for the orchestrator
"https://orchestrator.example.com:8935"
Was this page helpful?