Merge pull request #151 from GMGNAI/feat/smart-trade-order-strategy

feat(swap): add smart_trade order type to order strategy create
This commit is contained in:
GMGN.AI
2026-06-04 17:04:37 +08:00
committed by GitHub
4 changed files with 51 additions and 20 deletions
+3 -1
View File
@@ -127,7 +127,7 @@ export interface StrategyCreateParams {
quote_token: string;
order_type: string;
sub_order_type: string;
check_price: string;
check_price?: string;
open_price?: string;
amount_in?: string;
amount_in_percent?: string;
@@ -148,6 +148,8 @@ export interface StrategyCreateParams {
priority_fee?: string;
tip_fee?: string;
custom_rpc?: string;
condition_orders?: StrategyConditionOrder[];
quote_investment?: string;
}
export interface StrategyCancelParams {