| 8 | import type { Exposure } from './exposure'; |
| 9 | |
| 10 | export interface AddressAnalysis { |
| 11 | address: string; |
| 12 | blockchain: string; |
| 13 | incomingDirectExposure: Exposure; |
| 14 | incomingIndirectExposure: Exposure; |
| 15 | labels: string[]; |
| 16 | outgoingDirectExposure: Exposure; |
| 17 | outgoingIndirectExposure: Exposure; |
| 18 | risk: number; |
| 19 | timestampScanned: string; |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected