@xpla/xpla
Version:
<p align="center"> <img src="https://user-images.githubusercontent.com/545047/188804067-28e67e5e-0214-4449-ab04-2e0c564a6885.svg" width="80"> </p>
12 lines (11 loc) • 488 B
TypeScript
import { AddrDerivation } from "@interchainjs/types";
import { ICosmosWalletConfig } from "@interchainjs/cosmos";
//#region src/auth/config.d.ts
/**
* Creates a wallet configuration for Ethereum-style address derivation
* @param passphrase - Optional passphrase for key derivation
* @returns Wallet configuration object
*/
declare function createCosmosEvmConfig(derivations?: AddrDerivation[], passphrase?: string): ICosmosWalletConfig;
//#endregion
export { createCosmosEvmConfig };