Stake Transaction

Supplies a transaction that, once signed and broadcasted, facilitates the creation of staked validators.

Models

StakeTransactionAPIRequest Body Object

{
  "num_validators": 1,
  "wallet_address": "0x43a930733e3d......bb3ce70848e476c171371f5b"
}

Stake Transaction API Response (Status 200)

{
  "transaction": {
    "data": "0x4f498c730...00027bb46475413b354c6444a",
    "gas": 87936,
    "gas_price": "27",
    "nonce": 35,
    "to": "0x0ab8792f74261e83b1a3fe41c89017c359dcd52b",
    "transaction_serialized": "0xf904b6....171fe7771",
    "value": "32000000000000000000"
  },
  "validator_keys": [
    {
      "public_key": "0x134dea3b9a72b811ef33e63977c7...0a5c0b06b411699008"
    }
  ]
}

Last updated