Type Alias fuel_tx::input::message::MessageCoinPredicate

source ·
pub type MessageCoinPredicate = Message<MessageCoin<Predicate>>;

Aliased Type§

struct MessageCoinPredicate {
    pub sender: Address,
    pub recipient: Address,
    pub amount: u64,
    pub nonce: Nonce,
    pub witness_index: Empty<u16>,
    pub predicate_gas_used: u64,
    pub data: Empty<Vec<u8>>,
    pub predicate: Vec<u8>,
    pub predicate_data: Vec<u8>,
}

Fields§

§sender: Address

The sender from the L1 chain.

§recipient: Address

The receiver on the Fuel chain.

§amount: u64§nonce: Nonce§witness_index: Empty<u16>§predicate_gas_used: u64§data: Empty<Vec<u8>>§predicate: Vec<u8>§predicate_data: Vec<u8>

Implementations§