Transaction
This section describes the structure of a transaction
Overview
A transaction is used to effect a change in the state of the blockchain state. We use transactions to authorize and initiate the movement of value from one account to another. They are also use to cause the execution of arbitrary behaviours in smart contracts.
Structure
Field
Type
Description
fee
String
The amount of fee to be paid.
from
String
The address of the creator.
to
String
The address of the recipient or beneficiary.
value
String
The amount of ELL to be sent to the recipient.
senderPubKey
String
The public key of the sender. Used to verify the transaction signature.
hash
String
The hash of the transaction
Example:
Last updated