UNPKG

@lidofinance/lido-ethereum-sdk

Version:

<div style="display: flex;" align="center"> <h1 align="center">Lido Ethereum SDK</h1> </div>

20 lines 607 B
import LidoSDKCore from '../../core/core.js'; import { version } from '../../version.js'; import { LidoSDKCacheable } from './cacheable.js'; export class LidoSDKModule extends LidoSDKCacheable { constructor(props) { super(); Object.defineProperty(this, "core", { enumerable: true, configurable: true, writable: true, value: void 0 }); const { core } = props; if (core) this.core = core; else this.core = new LidoSDKCore(props, version); } } //# sourceMappingURL=sdk-module.js.map