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