Options for importing an EVM server account.

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

Properties

encryptionPublicKey?: string

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

idempotencyKey?: string

The idempotency key.

name?: string

The name of the account.

privateKey: `0x${string}`

The private key of the account.