Saltar al contenido principal
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"
}

Cuerpo

application/json
blockRewardCut
string
requerido

Percentage of block rewards to keep (0-100)

Ejemplo:

"10"

feeShare
string
requerido

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

Ejemplo:

"5"

pricePerUnit
string
requerido

Price per pixel in wei

Ejemplo:

"1000"

serviceURI
string
requerido

Service URI for the orchestrator

Ejemplo:

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

Respuesta

200 - application/json

Orchestrator activated successfully

txHash
string

Transaction hash

Ejemplo:

"0x..."

status
string

Transaction status

Ejemplo:

"success"

Last modified on March 1, 2026