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

    Interface ImportServerAccountOptions

    Options for importing an EVM server account.

    interface ImportServerAccountOptions {
        encryptionPublicKey?: string;
        name?: string;
        idempotencyKey?: string;
        privateKey: `0x${string}`;
    }
    Index

    Properties

    encryptionPublicKey?: string

    The public RSA key used to encrypt the private key when importing an EVM account.

    name?: string

    The name of the account.

    idempotencyKey?: string

    The idempotency key.

    privateKey: `0x${string}`

    The private key of the account.