sign_raw_transaction
Sign raw VeChain blockchain transactions using cryptographic keys to authorize and validate network operations before execution.
Instructions
Decode and sign a raw transaction.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rawTransaction | Yes |
Input Schema (JSON Schema)
{
"properties": {
"rawTransaction": {
"type": "string"
}
},
"required": [
"rawTransaction"
],
"type": "object"
}