Struct fuel_core_interfaces::model::MessageProof
source · pub struct MessageProof {
pub proof_set: Vec<Bytes32>,
pub proof_index: u64,
pub signature: Signature,
pub header: FuelBlockHeader,
pub sender: Address,
pub recipient: Address,
pub nonce: Bytes32,
pub amount: Word,
pub data: Vec<u8>,
}
Fields§
§proof_set: Vec<Bytes32>
The proof set of the message proof.
proof_index: u64
The index used to generate this proof.
signature: Signature
The signature of the fuel block.
header: FuelBlockHeader
The fuel block header that contains the message.
sender: Address
The messages sender address.
recipient: Address
The messages recipient address.
nonce: Bytes32
The nonce from the message.
amount: Word
The amount from the message.
data: Vec<u8>
The data from the message.