Type alias AuthorityType

AuthorityType: Authority | {
    accounts?: {
        permission: PermissionLevelType;
        weight: UInt16Type;
    }[];
    keys?: {
        key: PublicKeyType;
        weight: UInt16Type;
    }[];
    threshold: UInt32Type;
    waits?: {
        wait_sec: UInt32Type;
        weight: UInt16Type;
    }[];
}