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

    Interface PendingOperations

    interface PendingOperations {
        adminModifyBalance?: {
            amount: bigint;
            isSet: boolean;
            token: TokenOrPending;
        }[];
        createIdentifiers?: IdentifierCreateRequest[];
        info?: AccountInfo;
        permissionsChanges?: PerAccount<
            PerAccount<{ method: AdjustMethod; permissions: Permissions }[]>,
        >;
        receive?: {
            amount: bigint;
            exactReceive: boolean;
            forward?: AccountOrPending<AccountKeyAlgorithm>;
            otherParty: AccountOrPending;
            token: TokenOrPending;
        }[];
        send?: {
            amount: bigint;
            external?: string;
            otherParty: AccountOrPending;
            token: TokenOrPending;
        }[];
        setRep?: Account<ECDSA_SECP256K1 | ED25519 | ECDSA_SECP256R1>;
        tokenSupply?: bigint;
    }
    Index

    Properties

    adminModifyBalance?: { amount: bigint; isSet: boolean; token: TokenOrPending }[]
    createIdentifiers?: IdentifierCreateRequest[]
    permissionsChanges?: PerAccount<
        PerAccount<{ method: AdjustMethod; permissions: Permissions }[]>,
    >
    receive?: {
        amount: bigint;
        exactReceive: boolean;
        forward?: AccountOrPending<AccountKeyAlgorithm>;
        otherParty: AccountOrPending;
        token: TokenOrPending;
    }[]
    send?: {
        amount: bigint;
        external?: string;
        otherParty: AccountOrPending;
        token: TokenOrPending;
    }[]
    tokenSupply?: bigint