UNPKG

@coinmeca/wallet-sdk

Version:
21 lines 678 B
import { CoinmecaWalletBase } from "./core"; import type { Chain } from "./types"; export interface CoinmecaWalletAdapterConfig { chain?: Chain; url?: string; } export declare class CoinmecaWalletAdapter extends CoinmecaWalletBase { #private; constructor(config?: CoinmecaWalletAdapterConfig); get isCoinmecaWallet(): boolean; get address(): string | undefined; get chain(): Chain | undefined; get chainId(): string | undefined; getAddress(): Promise<string | undefined>; balance(): Promise<any>; request({ method, params }: { method: string; params?: any; }): Promise<any>; } //# sourceMappingURL=adapter.d.ts.map