Dfns TypeScript SDK - v0.8.29
    Preparing search index...

    Type Alias BulkCreateWalletsBody

    type BulkCreateWalletsBody = {
        count: number;
        keystoreId?: string;
        name: string;
        network:
            | "Ethereum"
            | "EthereumSepolia"
            | "EthereumHolesky"
            | "EthereumHoodi"
            | "Bsc"
            | "BscTestnet"
            | "Base"
            | "BaseSepolia"
            | "ArbitrumOne"
            | "ArbitrumSepolia"
            | "Optimism"
            | "OptimismSepolia"
            | "Tron"
            | "TronNile"
            | "Solana"
            | "SolanaDevnet";
        tags?: string[];
    }
    Index

    Properties

    count: number

    Number of wallets to create in the batch (1 to 1000000).

    keystoreId?: string

    Key store to mint the batch master key in. Defaults to your organization primary store.

    name: string

    Required name prefix shared by every wallet in the batch; wallet at index N is named ${name}${N}.

    network:
        | "Ethereum"
        | "EthereumSepolia"
        | "EthereumHolesky"
        | "EthereumHoodi"
        | "Bsc"
        | "BscTestnet"
        | "Base"
        | "BaseSepolia"
        | "ArbitrumOne"
        | "ArbitrumSepolia"
        | "Optimism"
        | "OptimismSepolia"
        | "Tron"
        | "TronNile"
        | "Solana"
        | "SolanaDevnet"

    Network the wallets will be created on.

    tags?: string[]

    List of tags applied to every wallet in the batch. If specified, requires the Wallets:Tags:Add permission.