wormhole-explorer/event-watcher/src/types/aptos.ts

14 lines
260 B
TypeScript

import { Types } from 'aptos';
export type AptosEvent = Omit<Types.Event, 'data'> & {
version: string;
data: {
consistency_level: number;
nonce: string;
payload: string;
sender: string;
sequence: string;
timestamp: string;
};
};