Messages and Transactions
Last updated
Last updated
The term "transaction" is used in Arcturus to refer to the signed data package that stores a message to be sent from an externally owned account. Transactions contain:
The recipient of the message.
A signature identifying the sender.
The amount of ARC to transfer from the sender to the recipient.
An optional data field.
A STARTGAS value, representing the maximum number of computational steps the transaction execution is allowed to take.
A GASPRICE value, representing the fee the sender pays per computational step.
The first three are standard fields expected in any cryptocurrency. The data field has no function by default, but the virtual machine has an opcode using which a contract can access the data; as an example use case, if a contract is functioning as an on-blockchain domain registration service, it may wish to interpret the data being passed to it as containing two "fields," the first field being a domain to register and the second field being the IP address to register it to. The contract would read these values from the message data and appropriately place them in storage.
The STARTGAS and GASPRICE fields are crucial for Arcturus's anti-denial of service model. To prevent accidental or hostile infinite loops or other computational wastage in code, each transaction is required to set a limit on how many computational steps of code execution it can use. The fundamental unit of computation is "gas"; usually, a computational step costs 1 gas, but some operations cost higher amounts of gas because they are more computationally expensive or increase the amount of data that must be stored as part of the state. There is also a fee of 5 gas for every byte in the transaction data.
The intent of the fee system is to require an attacker to pay proportionately for every resource they consume, including computation, bandwidth, and storage; hence, any transaction that leads to the network consuming a greater amount of any of these resources must have a gas fee roughly proportional to the increment.