export interface TokenBalanceChange {
    [token: string]: {
        [address: string]: {
            amount: bigint;
            type: "Revenue" | "Cost" | "TokenTransfer";
        };
    };
}
export interface AddressParticipationData {
    toCount: number;
    fromCount: number;
    participation: number;
}
export interface ProfitResult {
    token: string;
    profit: bigint;
}
