move types and created actions

This commit is contained in:
UjjwalGupta49
2025-01-06 17:50:39 +05:30
parent 224d7ff5b3
commit de4e724365
38 changed files with 241 additions and 79 deletions

View File

@@ -224,3 +224,15 @@ export interface BatchOrderPattern {
numberOfOrders?: number;
individualQuantity?: number;
}
export interface FlashTradeParams {
token: string;
side: "long" | "short";
collateralUsd: number;
leverage: number;
}
export interface FlashCloseTradeParams {
token: string;
side: "long" | "short";
}