PendingAction is an action waiting for authorizations in order to be executed.

interface VaultPendingAction {
    action: VaultAction;
    authorized_by: Uint8Array[];
    nonce: longnum;
}

Properties

action: VaultAction

Action is the pending action itself.

authorized_by: Uint8Array[]

AuthorizedBy contains the addresses that have authorized the action.

nonce: longnum

Nonce is the action nonce.