Type Alias TransferInstruction

TransferInstruction: {
    amount: Amount;
    data: {
        token_address: Address;
    };
    from: Address;
    index?: number;
    to: Address;
    type: "transfer";
}

Transfer instruction with explicit typed data.