import { TypeDefinitions } from '@circles-sdk/abi-v2/dist/hub/Hub'; import FlowEdgeStruct = TypeDefinitions.FlowEdgeStruct; import StreamStruct = TypeDefinitions.StreamStruct; export type PathfindingResult = { maxFlow: string; transfers: TransferStep[]; }; export type TransferStep = { from: string; to: string; tokenOwner: string; value: string; }; export interface FlowMatrix { flowVertices: string[]; flowEdges: FlowEdgeStruct[]; streams: StreamStruct[]; packedCoordinates: string; sourceCoordinate: number; } //# sourceMappingURL=types.d.ts.map