UNPKG

@keplr-ewallet/ewallet-sdk-cosmos

Version:
12 lines 413 B
import { EventEmitter3, } from "@keplr-ewallet/ewallet-sdk-core"; import { lazyInit } from "./private/lazy_init"; export const CosmosEWallet = function (eWallet) { this.eWallet = eWallet; this.eventEmitter = new EventEmitter3(); this.state = { publicKey: null, publicKeyRaw: null, }; this.waitUntilInitialized = lazyInit(this).then(); }; //# sourceMappingURL=constructor.js.map