Skip to main content
POST
/
activateOrchestrator
Activate 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"
}
This page is still cooking...
Expect big things soon!

Body

application/json
blockRewardCut
string
required

Percentage of block rewards to keep (0-100)

Example:

"10"

feeShare
string
required

Percentage of fees to share with delegators (0-100)

Example:

"5"

pricePerUnit
string
required

Price per pixel in wei

Example:

"1000"

serviceURI
string
required

Service URI for the orchestrator

Example:

"https://orchestrator.example.com:8935"

Response

200 - application/json

Orchestrator activated successfully

txHash
string

Transaction hash

Example:

"0x..."

status
string

Transaction status

Example:

"success"

Last modified on January 13, 2026