Comment on page
Clauses (Multi-Task Transaction)
A native approach to scale transaction throughput on the VechainThor blockchain.
Most blockchain transactions models are limited to one payload and one recipient per transaction. The VechainThor blockchain transaction model contains a native scaling solution called clauses which allows for the transfer of multiple payloads to different recipients.
Clauses are not transactions but they do perform a similar function which is to deliver a payload on the VechainThor blockchain. Clauses can be considered as an on-chain scaling mechanism which allows a user to send multiple payloads to different recipients in a single transaction. The
Clause
structure is defined in Golang as follows:type Clause struct {
body clauseBody
}
type clauseBody struct {
To *thor.Address `rlp:"nil"`
Value *big.Int
Data []byte
}
The three fields of a clause are:
To
– recipient’s address;Value
– amount to be transferred to the recipient;Data
– input data.
We then define
Clauses
as a Clause
array in the transaction model to make it possible for a transaction to contain multiple tasks.Clauses have two interesting characteristics:
- Since clauses are included in a single transaction, their executions can be considered as atomic, meaning that, either they all succeed, or all fail.
- Clauses are processed one by one in the exact order defined in
Clauses
.
Clauses are a unique feature to the VechainThor blockchain and allows for a transaction to deliver multiple payloads to different receipients. Clauses are a form of on-chain scaling which allows for transaction throughput on the VechainThor blockchain. When measuring the overall activity of the VechainThor blockchain we must include clauses in the measurement.
This article provides additional information and a demonstration of clauses on the VechainThor blockchain.
Last modified 2mo ago