export interface ParsedObjectTransfer { type: 'object_transfer'; from: string; to: string; objects: { objectId: string; version: string; type: string; }[]; } export interface ParsedCoinTransfer { type: 'coin_transfer'; from: string; to: string; amount: string; coinType: string; } export type ParsedTransaction = ParsedCoinTransfer | ParsedObjectTransfer;