Struct OffchainMessage
pub struct OffchainMessage {
pub ciphertext: BoundedVec<Field, 15>,
pub recipient: AztecAddress,
pub tx_hash: Option<Field>,
pub anchor_block_timestamp: u64,
}
Fields
ciphertext: BoundedVec<Field, 15>The encrypted message payload.
recipient: AztecAddressThe intended recipient of the message.
The hash of the transaction that produced this message. Option::none indicates a tx-less message.
anchor_block_timestamp: u64Anchor block timestamp at message emission.
A message delivered via the
offchain_receiveutility function.