UNPKG

@lidofinance/lido-ethereum-sdk

Version:

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

15 lines 533 B
import { LidoSDKModule } from '../common/class-primitives/sdk-module.js'; import { LidoSDKStethEvents } from './steth-events.js'; export class LidoSDKEvents extends LidoSDKModule { constructor(props) { super(props); Object.defineProperty(this, "stethEvents", { enumerable: true, configurable: true, writable: true, value: void 0 }); this.stethEvents = new LidoSDKStethEvents({ ...props, core: this.core }); } } //# sourceMappingURL=events.js.map