@keplr-ewallet/ewallet-sdk-cosmos
Version:
6 lines (5 loc) • 345 B
TypeScript
import { type KeplrEwalletInitArgs } from "@keplr-ewallet/ewallet-sdk-core";
import type { Result } from "@keplr-ewallet/stdlib-js";
import { CosmosEWallet } from "./cosmos_ewallet";
export type CosmosEWalletArgs = KeplrEwalletInitArgs;
export declare function initCosmosEWallet(args: CosmosEWalletArgs): Promise<Result<CosmosEWallet, string>>;