diff --git a/src/strategies/DirectGrantsLiteStrategy/types.ts b/src/strategies/DirectGrantsLiteStrategy/types.ts index f652259..a3a5170 100644 --- a/src/strategies/DirectGrantsLiteStrategy/types.ts +++ b/src/strategies/DirectGrantsLiteStrategy/types.ts @@ -1,10 +1,5 @@ import { Metadata } from "../../Common/types"; -export type ApplicationStatus = { - index: number; - statusRow: number; // todo: Big number? -}; - export type Recipient = { useRegistryAnchor: boolean; recipientAddress: `0x${string}`; @@ -29,10 +24,3 @@ export type Allocation = { recipientId: `0x${string}`; amount: bigint; }; - -export type Claim = { recipientId: `0x${string}`; token: `0x${string}` }; - -export const StrategyType = { - Vault: "Vault", - Direct: "Direct", -};