@arbius/aa-wallet
Version:
A secure and flexible Account Abstraction wallet implementation for Arbitrum One chain applications.
17 lines (16 loc) • 511 B
TypeScript
import { AAWalletConfig } from '../types';
/**
* Initialize the AA wallet with configuration
* @param config The wallet configuration
*/
export declare function init(config: AAWalletConfig): void;
/**
* Get the current configuration
* @returns The current configuration or null if not initialized
*/
export declare function getConfig(): AAWalletConfig | null;
/**
* Check if the wallet is initialized
* @returns True if initialized, false otherwise
*/
export declare function isInitialized(): boolean;