Interface ResolvedAction

interface ResolvedAction {
    account: Name;
    authorization: PermissionLevel[];
    data: Record<string, ABISerializable>;
    name: Name;
}

Properties

account: Name

The account (a.k.a. contract) to run action on.

authorization: PermissionLevel[]

The permissions authorizing the action.

data: Record<string, ABISerializable>

The decoded action data.

name: Name

The name of the action.