CDP SDK TypeScript - v1.25.0
    Preparing search index...

    Options for importing a Solana account.

    interface ImportAccountOptions {
        encryptionPublicKey?: string;
        name?: string;
        idempotencyKey?: string;
        privateKey: string | Uint8Array<ArrayBufferLike>;
    }
    Index

    Properties

    encryptionPublicKey?: string

    The public RSA key used to encrypt the private key when importing a Solana account.

    name?: string

    The name of the account.

    idempotencyKey?: string

    The idempotency key.

    privateKey: string | Uint8Array<ArrayBufferLike>

    The private key of the account - can be a base58 encoded string or raw bytes.