@particle-network/wallet
Version:
A wallet component that can be easily injected into the developer's website to provide rich custom styles.
5 lines (4 loc) • 365 B
TypeScript
import { type CustomEventHandler, type WalletCore } from './types';
export declare const handleRpc: (event: MessageEvent, walletCore: WalletCore) => Promise<void>;
export declare const handleCustomEvent: (event: MessageEvent, customEventHandler?: CustomEventHandler) => Promise<void>;
export declare const sendEthereumEvent: (event: string, args: unknown) => void;