Interface VaultActionExecuteMessage

ActionExecuteMessage is the action to execute a message on behalf of the vault. The message is dispatched as if the vault originated a transaction.

interface VaultActionExecuteMessage {
    body?: unknown;
    method: string;
}

Properties

Properties

body?: unknown

Body is the method call body.

method: string

Method is the method that should be called.