UNPKG

@oko-wallet/oko-sdk-cosmos

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