Get Signing Request

Every Notardec API method for writing to blockchain actually generates an unsigned transaction, which needs to be retrieved, signed by the holder of the private key of “author” and submitted. This is the endpoint to retrieve blockchain transactions for signing.

GET /transactions/{transactionId}/getSigningParameters

  • transactionId: The ID of the transaction we want to receive.

Response:

{
  "value": {
    "TargetAddress": "string",
    "Nonce": "string",
    "GasPrice": "string",
    "GasLimit": "string",
    "DataToSign": "string"
  }
}

You need this input to sign the transaction