UNPKG

@martiandao/aptos-web3-bip44.js

Version:
17 lines 424 B
import type { EventGuid } from './EventGuid'; import type { MoveType } from './MoveType'; import type { U64 } from './U64'; /** * An event from a transaction with a version */ export declare type VersionedEvent = { version: U64; guid: EventGuid; sequence_number: U64; type: MoveType; /** * The JSON representation of the event */ data: any; }; //# sourceMappingURL=VersionedEvent.d.ts.map