BindTransactions
Binds one or more transactions to a beta chain block by creating a binding transaction.
Request
POST /nxt?requestType=bindTransactions
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
transactionFullHash | string | Transaction full hash (repeatable, 1-3) | Yes |
deadline | short | Transaction deadline in minutes | No |
Response
Creates a standard transaction. Returns transaction bytes, full hash, and signature.
{
"transaction": "1234567890123456789",
"fullHash": "abc123def456...",
"signature": "sig123...",
"errorCode": 0,
"errorDescription": ""
}
Example
curl -X POST "http://localhost:22024/nxt?requestType=bindTransactions" \
-d "transactionFullHash=hash1" \
-d "transactionFullHash=hash2" \
-d "deadline=120"