Transaction Model
An introduction and overview of the VeChainThor blockchain transaction model.
// transaction.go
type Transaction struct {
body body
}
type body struct {
ChainTag byte
BlockRef uint64
Expiration uint32
Clauses []*Clause
GasPriceCoef uint8
Gas uint64
MaxFeePerGas *big.Int
MaxPriorityFeePerGas *big.Int
DependsOn *thor.Bytes32 `rlp:"nil"`
Nonce uint64
Reserved reserved
Signature []byte
}Last updated
Was this helpful?