@circle-fin/usdckit - v0.18.0
    Preparing search index...
    CreateWalletsInput: {
        accountType?: AccountType;
        blockchains: Blockchain[];
        count: number;
        metadata?: WalletMetadata[];
        walletSetId: string;
    } & WithIdempotencyKey

    Represents the input for creating multiple wallets.

    Type declaration

    • OptionalaccountType?: AccountType

      An account can be categorized as a Smart Contract Account (SCA) or an Externally Owned Account (EOA). For detailed information about these account types and their distinctions, please refer to the account types guide.

      By default, if an account type is not specified when creating a wallet, it will be classified as an Externally Owned Account (EOA).

    • blockchains: Blockchain[]

      The blockchains for which to create wallets.

    • count: number

      The number of wallets to create for each selected blockchain. This count will be multiplied by the number of selected blockchains. For example, with count=2 and blockchains.length=2, it will create a total of 4 new wallets.

    • Optionalmetadata?: WalletMetadata[]

      Optional list of metadata fields to associate with the corresponding wallet. If count is specified, the amount of items in the array should match the count field.

    • walletSetId: string

      The ID of the wallet set for which to create the wallets.