Keeta LogoKeeta Logo@keetanetwork/keetanet-client
    Preparing search index...

    Interface PendingOperationsJSON

    interface PendingOperationsJSON {
        adminModifyBalance?: { amount: string; isSet: boolean; token: string }[];
        createIdentifiers?: { type: NETWORK | TOKEN | STORAGE }[];
        info?: Pick<AccountInfo, "name" | "description" | "metadata"> & {
            defaultPermission?: [string, string];
        };
        permissionsChanges?: PerAccount<
            PerAccount<{ method: AdjustMethod; permissions: [string, string] }[]>,
        >;
        receive?: {
            amount: string;
            exactReceive: boolean;
            forward?: string;
            otherParty: string;
            token: string;
        }[];
        send?: {
            amount: string;
            external?: string;
            otherParty: string;
            token: string;
        }[];
        setRep?: string;
        tokenSupply?: string;
    }
    Index

    Properties

    adminModifyBalance?: { amount: string; isSet: boolean; token: string }[]
    createIdentifiers?: { type: NETWORK | TOKEN | STORAGE }[]
    info?: Pick<AccountInfo, "name" | "description" | "metadata"> & {
        defaultPermission?: [string, string];
    }
    permissionsChanges?: PerAccount<
        PerAccount<{ method: AdjustMethod; permissions: [string, string] }[]>,
    >
    receive?: {
        amount: string;
        exactReceive: boolean;
        forward?: string;
        otherParty: string;
        token: string;
    }[]
    send?: { amount: string; external?: string; otherParty: string; token: string }[]
    setRep?: string
    tokenSupply?: string