@allo-team/allo-v2-sdk
Version:
18 lines (15 loc) • 327 B
text/typescript
// NOTE: The following types are shared by all strategies, so they are defined
// here. Each strategy will also have its own types.ts file.
export type PayoutSummary = {
address: `0x${string}`;
amount: string;
};
export enum Status {
None,
Pending,
Accepted,
Rejected,
Appealed,
InReview,
Canceled,
}