import { Call } from "starknet"; export const OperationType = { Audit: "audit", Fund: "fund", Ragequit: "ragequit", Withdraw: "withdraw", Rollover: "rollover", Transfer: "transfer", } as const; export type OperationType = typeof OperationType[keyof typeof OperationType]; export interface IOperation { type: OperationType; toCalldata(): Call; }