wormhole-explorer/blockchain-watcher/src/domain/entities/events.ts

18 lines
311 B
TypeScript
Raw Normal View History

export type LogFoundEvent<T> = {
name: string;
address: string;
chainId: number;
txHash: string;
blockHeight: bigint;
blockTime: number;
attributes: T;
};
export type LogMessagePublished = {
sequence: number;
sender: string;
nonce: number;
payload: string;
consistencyLevel: number;
};