Technical description of the platform

Transactions of the blockchain platform

Transaction is a separate operation in the blockchain changing the network state and performed .

Signing and sending of transactions

Prior to signing and sending of transactions, a participant generates a digital signature for it. To do this, he uses a private key of his account. Transaction signing can be done in three ways:

The transaction signature is inserted into the proofs while sending transactions into the blockchain. As a rule, this field contains one signature of a participant which has been sent a transaction. But this field supports up to 8 signatures: in case of transaction signing by a smart account, filling of an atomic transaction or smart contract broadcasting.

After signing, the transaction is sent into the blockchain. This can be done in three aforementioned ways, as well as with the use of the gRPC interface (see gRPC: sending of transactions into the blockchain)

Processing of transactions in the blockchain

After obtaining of a transaction, the node validates it in the following way:

  1. Timestamp correspondence check: a transaction timestamp should derive from a current block timestamp for not more than 2 hours before or 1,5 hours after it.

  2. Transaction type and version check: if support of such transactions type and versions has been activated in the blockchain (see Activation of blockchain features).

  3. Correspondence of transaction fields with a defined data type;

  4. Sender balance check: if balance is sufficient for fee payment;

  5. Transaction signature check.

If a transaction is not validated, the node declines it. In case of successful validation, a transaction is added to the unconfirmed transaction (UTX) pool, where it is awaiting the next mining round for broadcasting in the blockchain. Together with transfer of this transaction into the UTX pool, the node sends it to other nodes of the network.

Each microblock has a limit of incoming transactions, each separate transaction can be transferred from the UTX pool not at once. During existence of a transaction in the UTX pool, a transaction can become invalid. For instance, its timestamp is not more corresponding with the current block timestamp, or a transaction transferred into the blockchain has decreased a sender balance and made it insufficient for payment of a transaction fee. In this case, a transactions will be declined and removed from the UTX pool.

After adding of a transaction into a block, the transaction changes the blockchain state. After this, transaction is considered executed.

Detailed information about transactionsof the Waves Enterprise blockchain platform: