Token Access Control structure. Owner has all permissions by default.

interface TokenAccessControl {
    entries: TokenACLEntry[];
    owner: string;
    paused: boolean;
}

Properties

Properties

entries: TokenACLEntry[]
owner: string
paused: boolean