@aleph-sdk/monorepo
    Preparing search index...

    Type Alias ProgramPublishConfiguration

    ProgramPublishConfiguration: RequireOnlyOne<
        {
            account: Account;
            channel: string;
            encoding?: Encoding;
            entrypoint: string;
            file?: Buffer
            | Blob;
            isPersistent?: boolean;
            memory?: number;
            metadata?: Record<string, unknown>;
            payment?: Payment;
            programRef?: string;
            runtime?: string;
            storageEngine?: ipfs | storage;
            subscriptions?: Record<string, unknown>[];
            sync?: boolean;
            variables?: Record<string, string>;
            vcpus?: number;
            volumes?: MachineVolume[];
        },
        "programRef"
        | "file",
    >