Skip to main content

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

NameTypeDescriptionRequired
transactionFullHashstringTransaction full hash (repeatable, 1-3)Yes
deadlineshortTransaction deadline in minutesNo

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"