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

    Type Alias ProgramSpawnConfiguration

    type ProgramSpawnConfiguration = {
        account: Account;
        channel: string;
        encoding?: Encoding;
        entrypoint: string;
        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[];
    }
    Index

    Properties

    account: Account
    channel: string
    encoding?: Encoding
    entrypoint: string
    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[]