TransferOut
use fuel_types::{ContractId, AssetId, Address};
pub struct TransferOut {
pub contract_id: ContractId,
pub to: Address,
pub amount: u64,
pub asset_id: AssetId,
pub pc: u64,
pub is: u64,
}
- A
TransferOutreceipt is generated when coins are transferred to an address rather than a contract. - Every other field of the receipt works the same way as it does in the
Transferreceipt. - Read more about
TransferOutin the Fuel protocol ABI spec