Skip to main content
function exportEvmAccount(options: ExportEvmAccountOptions): Promise<ExportEvmAccountResult>;
Exports an EVM account’s private key.

Parameters

ParameterTypeDescription
optionsExportEvmAccountOptionsThe options for the exporting.

Returns

Promise<ExportEvmAccountResult> The result of the export.

Example

const result = await exportEvmAccount({
  evmAccount: "0x1234..."
});