Links

sui_executeTransactionSerializedSig

APIs to execute transactions

Parameters

  • tx_bytes : <Base64> - BCS serialized transaction data bytes without its type tag, as base-64 encoded string.
  • signature : <Base64> - `flag || signature || pubkey` bytes, as base-64 encoded string, signature is committed to the intent message of the transaction data, as base-64 encoded string.
  • request_type : <ExecuteTransactionRequestType> - The request type

Returns

  • SuiExecuteTransactionResponse : <SuiExecuteTransactionResponse>

Example Request and Result for sui_executeTransactionSerializedSig

Request
curl
--location --request POST 'https://sui-devnet.blastapi.io/<project_id>' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"id": 1,
"method": "sui_executeTransactionSerializedSig",
"params": [
"AAPDdSGd1K6HApnQ1UMmEIOXvtBFDAEFAAAAAAAAADDat41YRxp4SW63HCxud7omjwOQOg6huYDqcvdFeE95OGaVEnTPlWWtjAYAAAAAACBCRYDRhl1WPPDl5P0n7fK6uWgf/Leb4oRS1KAESZ/KmwEAAAAAAAAAAQAAAAAAAAA=",
"ACuOPpKOCL41szt/F8vfASRbaIrnrAnRkTzRNUXbZOcBrgisq3D5ktKjGOFEa0I8BFYP4sZiFxGrDY/zgb09DQyjgtxBXdxVDAJ6HQsWQ7ibJKNeVhX/WSGpWEykmghn9g==",
"WaitForEffectsCert"
]
}'