import BigNumber from "bignumber.js"; import EventLog from "./EventLog"; export default class BlockNotification { readonly hash: string; readonly height: BigNumber; readonly indexes: BigNumber[][]; readonly events: BigNumber[][][]; readonly logs: EventLog[][][]; constructor(data: any); }