pub type Call = Call;

Aliased Type§

enum Call {
    create_oneshot_account {
        dest: MultiAddress<AccountId32, ()>,
        value: u64,
    },
    consume_oneshot_account {
        block_height: u32,
        dest: Account<MultiAddress<AccountId32, ()>>,
    },
    consume_oneshot_account_with_remaining {
        block_height: u32,
        dest: Account<MultiAddress<AccountId32, ()>>,
        remaining_to: Account<MultiAddress<AccountId32, ()>>,
        balance: u64,
    },
}

Variants§

§

create_oneshot_account

Fields

§dest: MultiAddress<AccountId32, ()>
§value: u64
§

consume_oneshot_account

Fields

§block_height: u32
§dest: Account<MultiAddress<AccountId32, ()>>
§

consume_oneshot_account_with_remaining

Fields

§block_height: u32
§dest: Account<MultiAddress<AccountId32, ()>>
§remaining_to: Account<MultiAddress<AccountId32, ()>>
§balance: u64