Broadcast a pre-signed transaction directly to the blockchain network. This endpoint bypasses the standard workflow orchestration and policy evaluation, executing the transaction as-is.
| Field | Type | Required | Description |
|---|---|---|---|
signedTransactionHex | string | Yes | RLP-encoded signed transaction (0x prefix) |
chainId | number | Yes | Blockchain network ID (must match transaction) |
Important: This endpoint does NOT perform policy evaluation or trigger approval workflows. The transaction is broadcast exactly as signed.
| Field | Type | Description |
|---|---|---|
transactionHash | string | Blockchain transaction hash (0x...) |
from | string | Sender address extracted from signature |
to | string | Recipient address (null for deployments) |
nonce | number | Transaction nonce |
chainId | number | Network where transaction was broadcast |
gasLimit | string | Gas limit from transaction |
gasPrice | string | Gas price in wei (legacy pre-EIP-1559 transactions) |
maxFeePerGas | string | EIP-1559 max fee per gas in wei |
maxPriorityFeePerGas | string | EIP-1559 priority fee per gas in wei |
value | string | Transaction value in wei |
data | string | Transaction data payload (0x for simple transfers) |
status | enum | Broadcast status (BROADCASTED) |
transactions:create
Broadcast a pre-signed transaction directly to the blockchain network. This endpoint bypasses the standard workflow orchestration and policy evaluation, executing the transaction as-is.
| Field | Type | Required | Description |
|---|---|---|---|
signedTransactionHex | string | Yes | RLP-encoded signed transaction (0x prefix) |
chainId | number | Yes | Blockchain network ID (must match transaction) |
Important: This endpoint does NOT perform policy evaluation or trigger approval workflows. The transaction is broadcast exactly as signed.
| Field | Type | Description |
|---|---|---|
transactionHash | string | Blockchain transaction hash (0x...) |
from | string | Sender address extracted from signature |
to | string | Recipient address (null for deployments) |
nonce | number | Transaction nonce |
chainId | number | Network where transaction was broadcast |
gasLimit | string | Gas limit from transaction |
gasPrice | string | Gas price in wei (legacy pre-EIP-1559 transactions) |
maxFeePerGas | string | EIP-1559 max fee per gas in wei |
maxPriorityFeePerGas | string | EIP-1559 priority fee per gas in wei |
value | string | Transaction value in wei |
data | string | Transaction data payload (0x for simple transfers) |
status | enum | Broadcast status (BROADCASTED) |
transactions:create