perp-cli 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +293 -0
- package/dist/__tests__/alert-logic.test.d.ts +1 -0
- package/dist/__tests__/alert-logic.test.js +107 -0
- package/dist/__tests__/arb-auto-3dex.test.d.ts +1 -0
- package/dist/__tests__/arb-auto-3dex.test.js +397 -0
- package/dist/__tests__/arb-history-stats.test.d.ts +1 -0
- package/dist/__tests__/arb-history-stats.test.js +176 -0
- package/dist/__tests__/arb-logic.test.d.ts +1 -0
- package/dist/__tests__/arb-logic.test.js +84 -0
- package/dist/__tests__/arb-manage.test.d.ts +1 -0
- package/dist/__tests__/arb-manage.test.js +253 -0
- package/dist/__tests__/arb-new-features.test.d.ts +1 -0
- package/dist/__tests__/arb-new-features.test.js +457 -0
- package/dist/__tests__/arb-sizing.test.d.ts +1 -0
- package/dist/__tests__/arb-sizing.test.js +48 -0
- package/dist/__tests__/arb-state.test.d.ts +1 -0
- package/dist/__tests__/arb-state.test.js +284 -0
- package/dist/__tests__/arb-userflow.test.d.ts +1 -0
- package/dist/__tests__/arb-userflow.test.js +945 -0
- package/dist/__tests__/arb-utils.test.d.ts +1 -0
- package/dist/__tests__/arb-utils.test.js +264 -0
- package/dist/__tests__/bot-conditions.test.d.ts +1 -0
- package/dist/__tests__/bot-conditions.test.js +341 -0
- package/dist/__tests__/client-id-tracker.test.d.ts +1 -0
- package/dist/__tests__/client-id-tracker.test.js +137 -0
- package/dist/__tests__/commands/new-atomic-commands.test.d.ts +1 -0
- package/dist/__tests__/commands/new-atomic-commands.test.js +502 -0
- package/dist/__tests__/commands/order-intent.test.d.ts +1 -0
- package/dist/__tests__/commands/order-intent.test.js +600 -0
- package/dist/__tests__/commands/trade-commands.test.d.ts +1 -0
- package/dist/__tests__/commands/trade-commands.test.js +821 -0
- package/dist/__tests__/config.test.d.ts +1 -0
- package/dist/__tests__/config.test.js +86 -0
- package/dist/__tests__/cross-chain-margin.test.d.ts +1 -0
- package/dist/__tests__/cross-chain-margin.test.js +287 -0
- package/dist/__tests__/dex-asset-map.test.d.ts +1 -0
- package/dist/__tests__/dex-asset-map.test.js +191 -0
- package/dist/__tests__/errors.test.d.ts +1 -0
- package/dist/__tests__/errors.test.js +110 -0
- package/dist/__tests__/event-stream.test.d.ts +1 -0
- package/dist/__tests__/event-stream.test.js +276 -0
- package/dist/__tests__/exchanges/interface.test.d.ts +1 -0
- package/dist/__tests__/exchanges/interface.test.js +132 -0
- package/dist/__tests__/exchanges/mock-adapter.d.ts +69 -0
- package/dist/__tests__/exchanges/mock-adapter.js +137 -0
- package/dist/__tests__/execution-log.test.d.ts +1 -0
- package/dist/__tests__/execution-log.test.js +106 -0
- package/dist/__tests__/funding-calc.test.d.ts +1 -0
- package/dist/__tests__/funding-calc.test.js +71 -0
- package/dist/__tests__/funding-history.test.d.ts +1 -0
- package/dist/__tests__/funding-history.test.js +343 -0
- package/dist/__tests__/funding-rates.test.d.ts +1 -0
- package/dist/__tests__/funding-rates.test.js +342 -0
- package/dist/__tests__/funding.test.d.ts +1 -0
- package/dist/__tests__/funding.test.js +173 -0
- package/dist/__tests__/gap-logic.test.d.ts +1 -0
- package/dist/__tests__/gap-logic.test.js +43 -0
- package/dist/__tests__/hip3-dex.test.d.ts +1 -0
- package/dist/__tests__/hip3-dex.test.js +234 -0
- package/dist/__tests__/integration/agent-features.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/agent-features.integration.test.js +553 -0
- package/dist/__tests__/integration/atomic-commands.integration.test.d.ts +13 -0
- package/dist/__tests__/integration/atomic-commands.integration.test.js +246 -0
- package/dist/__tests__/integration/bridge-simulation.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/bridge-simulation.integration.test.js +453 -0
- package/dist/__tests__/integration/bridge-strict.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/bridge-strict.integration.test.js +812 -0
- package/dist/__tests__/integration/bridge.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/bridge.integration.test.js +309 -0
- package/dist/__tests__/integration/cli-e2e.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/cli-e2e.integration.test.js +202 -0
- package/dist/__tests__/integration/dex-arb.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/dex-arb.integration.test.js +116 -0
- package/dist/__tests__/integration/envelope-consistency.integration.test.d.ts +13 -0
- package/dist/__tests__/integration/envelope-consistency.integration.test.js +205 -0
- package/dist/__tests__/integration/hip3-dex.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/hip3-dex.integration.test.js +147 -0
- package/dist/__tests__/integration/hyperliquid.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/hyperliquid.integration.test.js +79 -0
- package/dist/__tests__/integration/lighter.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/lighter.integration.test.js +53 -0
- package/dist/__tests__/integration/new-commands-e2e.integration.test.d.ts +9 -0
- package/dist/__tests__/integration/new-commands-e2e.integration.test.js +236 -0
- package/dist/__tests__/integration/order-verification.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/order-verification.integration.test.js +321 -0
- package/dist/__tests__/integration/pacifica.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/pacifica.integration.test.js +75 -0
- package/dist/__tests__/integration/response-shapes.integration.test.d.ts +1 -0
- package/dist/__tests__/integration/response-shapes.integration.test.js +278 -0
- package/dist/__tests__/liquidity.test.d.ts +1 -0
- package/dist/__tests__/liquidity.test.js +225 -0
- package/dist/__tests__/plan-executor.test.d.ts +1 -0
- package/dist/__tests__/plan-executor.test.js +314 -0
- package/dist/__tests__/position-history.test.d.ts +1 -0
- package/dist/__tests__/position-history.test.js +367 -0
- package/dist/__tests__/retry.test.d.ts +1 -0
- package/dist/__tests__/retry.test.js +310 -0
- package/dist/__tests__/risk-assessment.test.d.ts +1 -0
- package/dist/__tests__/risk-assessment.test.js +145 -0
- package/dist/__tests__/security-adversarial.test.d.ts +1 -0
- package/dist/__tests__/security-adversarial.test.js +574 -0
- package/dist/__tests__/strategies.test.d.ts +1 -0
- package/dist/__tests__/strategies.test.js +539 -0
- package/dist/__tests__/trade-execution.test.d.ts +1 -0
- package/dist/__tests__/trade-execution.test.js +129 -0
- package/dist/__tests__/trade-validator.test.d.ts +1 -0
- package/dist/__tests__/trade-validator.test.js +655 -0
- package/dist/__tests__/utils.test.d.ts +1 -0
- package/dist/__tests__/utils.test.js +76 -0
- package/dist/api/public/hyperliquid.d.ts +18 -0
- package/dist/api/public/hyperliquid.js +82 -0
- package/dist/api/public/index.d.ts +8 -0
- package/dist/api/public/index.js +8 -0
- package/dist/api/public/lighter.d.ts +24 -0
- package/dist/api/public/lighter.js +100 -0
- package/dist/api/public/pacifica.d.ts +17 -0
- package/dist/api/public/pacifica.js +54 -0
- package/dist/api/public/urls.d.ts +12 -0
- package/dist/api/public/urls.js +33 -0
- package/dist/arb/history-stats.d.ts +44 -0
- package/dist/arb/history-stats.js +135 -0
- package/dist/arb/index.d.ts +4 -0
- package/dist/arb/index.js +4 -0
- package/dist/arb/sizing.d.ts +23 -0
- package/dist/arb/sizing.js +96 -0
- package/dist/arb/state.d.ts +51 -0
- package/dist/arb/state.js +112 -0
- package/dist/arb/utils.d.ts +81 -0
- package/dist/arb/utils.js +267 -0
- package/dist/arb-history-stats.d.ts +5 -0
- package/dist/arb-history-stats.js +5 -0
- package/dist/arb-sizing.d.ts +5 -0
- package/dist/arb-sizing.js +5 -0
- package/dist/arb-state.d.ts +5 -0
- package/dist/arb-state.js +5 -0
- package/dist/arb-utils.d.ts +5 -0
- package/dist/arb-utils.js +5 -0
- package/dist/bot/conditions.d.ts +32 -0
- package/dist/bot/conditions.js +141 -0
- package/dist/bot/config.d.ts +76 -0
- package/dist/bot/config.js +160 -0
- package/dist/bot/engine.d.ts +8 -0
- package/dist/bot/engine.js +519 -0
- package/dist/bot/presets.d.ts +11 -0
- package/dist/bot/presets.js +296 -0
- package/dist/bridge-engine.d.ts +133 -0
- package/dist/bridge-engine.js +1487 -0
- package/dist/cache.d.ts +25 -0
- package/dist/cache.js +99 -0
- package/dist/cli-spec.d.ts +50 -0
- package/dist/cli-spec.js +75 -0
- package/dist/client-id-tracker.d.ts +25 -0
- package/dist/client-id-tracker.js +76 -0
- package/dist/commands/account.d.ts +3 -0
- package/dist/commands/account.js +425 -0
- package/dist/commands/agent.d.ts +3 -0
- package/dist/commands/agent.js +386 -0
- package/dist/commands/alert.d.ts +2 -0
- package/dist/commands/alert.js +421 -0
- package/dist/commands/analytics.d.ts +3 -0
- package/dist/commands/analytics.js +311 -0
- package/dist/commands/arb/index.d.ts +3 -0
- package/dist/commands/arb/index.js +921 -0
- package/dist/commands/arb-auto.d.ts +54 -0
- package/dist/commands/arb-auto.js +1328 -0
- package/dist/commands/arb-manage.d.ts +5 -0
- package/dist/commands/arb-manage.js +5 -0
- package/dist/commands/arb.d.ts +2 -0
- package/dist/commands/arb.js +347 -0
- package/dist/commands/backtest.d.ts +2 -0
- package/dist/commands/backtest.js +327 -0
- package/dist/commands/bot.d.ts +3 -0
- package/dist/commands/bot.js +412 -0
- package/dist/commands/bridge.d.ts +2 -0
- package/dist/commands/bridge.js +396 -0
- package/dist/commands/dashboard.d.ts +3 -0
- package/dist/commands/dashboard.js +176 -0
- package/dist/commands/deposit.d.ts +4 -0
- package/dist/commands/deposit.js +573 -0
- package/dist/commands/dex.d.ts +3 -0
- package/dist/commands/dex.js +114 -0
- package/dist/commands/env.d.ts +2 -0
- package/dist/commands/env.js +136 -0
- package/dist/commands/funding.d.ts +2 -0
- package/dist/commands/funding.js +347 -0
- package/dist/commands/gap.d.ts +2 -0
- package/dist/commands/gap.js +305 -0
- package/dist/commands/health.d.ts +2 -0
- package/dist/commands/health.js +67 -0
- package/dist/commands/history.d.ts +2 -0
- package/dist/commands/history.js +235 -0
- package/dist/commands/init.d.ts +15 -0
- package/dist/commands/init.js +266 -0
- package/dist/commands/jobs.d.ts +2 -0
- package/dist/commands/jobs.js +133 -0
- package/dist/commands/manage.d.ts +4 -0
- package/dist/commands/manage.js +309 -0
- package/dist/commands/market.d.ts +3 -0
- package/dist/commands/market.js +225 -0
- package/dist/commands/plan.d.ts +3 -0
- package/dist/commands/plan.js +95 -0
- package/dist/commands/portfolio.d.ts +3 -0
- package/dist/commands/portfolio.js +169 -0
- package/dist/commands/rebalance.d.ts +3 -0
- package/dist/commands/rebalance.js +293 -0
- package/dist/commands/risk.d.ts +3 -0
- package/dist/commands/risk.js +169 -0
- package/dist/commands/run.d.ts +3 -0
- package/dist/commands/run.js +202 -0
- package/dist/commands/settings.d.ts +2 -0
- package/dist/commands/settings.js +102 -0
- package/dist/commands/stream.d.ts +5 -0
- package/dist/commands/stream.js +123 -0
- package/dist/commands/trade.d.ts +3 -0
- package/dist/commands/trade.js +1273 -0
- package/dist/commands/wallet.d.ts +14 -0
- package/dist/commands/wallet.js +602 -0
- package/dist/commands/withdraw.d.ts +3 -0
- package/dist/commands/withdraw.js +187 -0
- package/dist/config.d.ts +5 -0
- package/dist/config.js +68 -0
- package/dist/cross-chain-margin.d.ts +46 -0
- package/dist/cross-chain-margin.js +107 -0
- package/dist/dashboard/server.d.ts +80 -0
- package/dist/dashboard/server.js +340 -0
- package/dist/dashboard/ui.d.ts +4 -0
- package/dist/dashboard/ui.js +538 -0
- package/dist/dashboard/ws-feeds.d.ts +29 -0
- package/dist/dashboard/ws-feeds.js +660 -0
- package/dist/dex-asset-map.d.ts +80 -0
- package/dist/dex-asset-map.js +201 -0
- package/dist/errors.d.ts +109 -0
- package/dist/errors.js +84 -0
- package/dist/event-stream.d.ts +25 -0
- package/dist/event-stream.js +168 -0
- package/dist/exchanges/hyperliquid.d.ts +212 -0
- package/dist/exchanges/hyperliquid.js +931 -0
- package/dist/exchanges/interface.d.ts +95 -0
- package/dist/exchanges/interface.js +5 -0
- package/dist/exchanges/lighter.d.ts +159 -0
- package/dist/exchanges/lighter.js +793 -0
- package/dist/exchanges/pacifica.d.ts +51 -0
- package/dist/exchanges/pacifica.js +248 -0
- package/dist/execution-log.d.ts +36 -0
- package/dist/execution-log.js +102 -0
- package/dist/funding/history.d.ts +63 -0
- package/dist/funding/history.js +266 -0
- package/dist/funding/index.d.ts +3 -0
- package/dist/funding/index.js +3 -0
- package/dist/funding/normalize.d.ts +39 -0
- package/dist/funding/normalize.js +66 -0
- package/dist/funding/rates.d.ts +45 -0
- package/dist/funding/rates.js +172 -0
- package/dist/funding-history.d.ts +5 -0
- package/dist/funding-history.js +5 -0
- package/dist/funding-rates.d.ts +5 -0
- package/dist/funding-rates.js +5 -0
- package/dist/funding.d.ts +5 -0
- package/dist/funding.js +5 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +458 -0
- package/dist/jobs.d.ts +37 -0
- package/dist/jobs.js +152 -0
- package/dist/liquidity.d.ts +34 -0
- package/dist/liquidity.js +100 -0
- package/dist/mcp-server.d.ts +9 -0
- package/dist/mcp-server.js +1206 -0
- package/dist/pacifica/client.d.ts +111 -0
- package/dist/pacifica/client.js +310 -0
- package/dist/pacifica/constants.d.ts +27 -0
- package/dist/pacifica/constants.js +47 -0
- package/dist/pacifica/deposit.d.ts +14 -0
- package/dist/pacifica/deposit.js +78 -0
- package/dist/pacifica/index.d.ts +6 -0
- package/dist/pacifica/index.js +11 -0
- package/dist/pacifica/signing.d.ts +49 -0
- package/dist/pacifica/signing.js +97 -0
- package/dist/pacifica/types/account.d.ts +42 -0
- package/dist/pacifica/types/account.js +1 -0
- package/dist/pacifica/types/index.d.ts +6 -0
- package/dist/pacifica/types/index.js +6 -0
- package/dist/pacifica/types/lake.d.ts +18 -0
- package/dist/pacifica/types/lake.js +1 -0
- package/dist/pacifica/types/market.d.ts +64 -0
- package/dist/pacifica/types/market.js +1 -0
- package/dist/pacifica/types/order.d.ts +92 -0
- package/dist/pacifica/types/order.js +1 -0
- package/dist/pacifica/types/position.d.ts +25 -0
- package/dist/pacifica/types/position.js +1 -0
- package/dist/pacifica/types/ws.d.ts +34 -0
- package/dist/pacifica/types/ws.js +41 -0
- package/dist/pacifica/ws-client.d.ts +42 -0
- package/dist/pacifica/ws-client.js +180 -0
- package/dist/plan-executor.d.ts +48 -0
- package/dist/plan-executor.js +280 -0
- package/dist/position-history.d.ts +68 -0
- package/dist/position-history.js +222 -0
- package/dist/rebalance.d.ts +64 -0
- package/dist/rebalance.js +142 -0
- package/dist/retry.d.ts +74 -0
- package/dist/retry.js +129 -0
- package/dist/risk.d.ts +48 -0
- package/dist/risk.js +156 -0
- package/dist/settings.d.ts +19 -0
- package/dist/settings.js +45 -0
- package/dist/shared-api.d.ts +5 -0
- package/dist/shared-api.js +5 -0
- package/dist/strategies/dca.d.ts +25 -0
- package/dist/strategies/dca.js +114 -0
- package/dist/strategies/funding-arb.d.ts +15 -0
- package/dist/strategies/funding-arb.js +281 -0
- package/dist/strategies/grid.d.ts +34 -0
- package/dist/strategies/grid.js +185 -0
- package/dist/strategies/trailing-stop.d.ts +17 -0
- package/dist/strategies/trailing-stop.js +121 -0
- package/dist/strategies/twap.d.ts +20 -0
- package/dist/strategies/twap.js +78 -0
- package/dist/trade-validator.d.ts +39 -0
- package/dist/trade-validator.js +154 -0
- package/dist/utils.d.ts +38 -0
- package/dist/utils.js +110 -0
- package/package.json +63 -0
- package/skills/perp-cli/SKILL.md +149 -0
- package/skills/perp-cli/references/commands.md +143 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Common exchange interface for multi-DEX CLI support.
|
|
3
|
+
* All exchange adapters (Pacifica, Hyperliquid, Lighter) implement this.
|
|
4
|
+
*/
|
|
5
|
+
export interface ExchangeMarketInfo {
|
|
6
|
+
symbol: string;
|
|
7
|
+
markPrice: string;
|
|
8
|
+
indexPrice: string;
|
|
9
|
+
fundingRate: string;
|
|
10
|
+
volume24h: string;
|
|
11
|
+
openInterest: string;
|
|
12
|
+
maxLeverage: number;
|
|
13
|
+
}
|
|
14
|
+
export interface ExchangePosition {
|
|
15
|
+
symbol: string;
|
|
16
|
+
side: "long" | "short";
|
|
17
|
+
size: string;
|
|
18
|
+
entryPrice: string;
|
|
19
|
+
markPrice: string;
|
|
20
|
+
liquidationPrice: string;
|
|
21
|
+
unrealizedPnl: string;
|
|
22
|
+
leverage: number;
|
|
23
|
+
}
|
|
24
|
+
export interface ExchangeOrder {
|
|
25
|
+
orderId: string;
|
|
26
|
+
symbol: string;
|
|
27
|
+
side: "buy" | "sell";
|
|
28
|
+
price: string;
|
|
29
|
+
size: string;
|
|
30
|
+
filled: string;
|
|
31
|
+
status: string;
|
|
32
|
+
type: string;
|
|
33
|
+
}
|
|
34
|
+
export interface ExchangeBalance {
|
|
35
|
+
equity: string;
|
|
36
|
+
available: string;
|
|
37
|
+
marginUsed: string;
|
|
38
|
+
unrealizedPnl: string;
|
|
39
|
+
}
|
|
40
|
+
export interface ExchangeTrade {
|
|
41
|
+
time: number;
|
|
42
|
+
symbol: string;
|
|
43
|
+
side: "buy" | "sell";
|
|
44
|
+
price: string;
|
|
45
|
+
size: string;
|
|
46
|
+
fee: string;
|
|
47
|
+
}
|
|
48
|
+
export interface ExchangeFundingPayment {
|
|
49
|
+
time: number;
|
|
50
|
+
symbol: string;
|
|
51
|
+
payment: string;
|
|
52
|
+
}
|
|
53
|
+
export interface ExchangeKline {
|
|
54
|
+
time: number;
|
|
55
|
+
open: string;
|
|
56
|
+
high: string;
|
|
57
|
+
low: string;
|
|
58
|
+
close: string;
|
|
59
|
+
volume: string;
|
|
60
|
+
trades: number;
|
|
61
|
+
}
|
|
62
|
+
export interface ExchangeAdapter {
|
|
63
|
+
readonly name: string;
|
|
64
|
+
getMarkets(): Promise<ExchangeMarketInfo[]>;
|
|
65
|
+
getOrderbook(symbol: string): Promise<{
|
|
66
|
+
bids: [string, string][];
|
|
67
|
+
asks: [string, string][];
|
|
68
|
+
}>;
|
|
69
|
+
getRecentTrades(symbol: string, limit?: number): Promise<ExchangeTrade[]>;
|
|
70
|
+
getFundingHistory(symbol: string, limit?: number): Promise<{
|
|
71
|
+
time: number;
|
|
72
|
+
rate: string;
|
|
73
|
+
price: string;
|
|
74
|
+
}[]>;
|
|
75
|
+
getKlines(symbol: string, interval: string, startTime: number, endTime: number): Promise<ExchangeKline[]>;
|
|
76
|
+
getBalance(): Promise<ExchangeBalance>;
|
|
77
|
+
getPositions(): Promise<ExchangePosition[]>;
|
|
78
|
+
getOpenOrders(): Promise<ExchangeOrder[]>;
|
|
79
|
+
getOrderHistory(limit?: number): Promise<ExchangeOrder[]>;
|
|
80
|
+
getTradeHistory(limit?: number): Promise<ExchangeTrade[]>;
|
|
81
|
+
getFundingPayments(limit?: number): Promise<ExchangeFundingPayment[]>;
|
|
82
|
+
marketOrder(symbol: string, side: "buy" | "sell", size: string): Promise<unknown>;
|
|
83
|
+
limitOrder(symbol: string, side: "buy" | "sell", price: string, size: string, opts?: {
|
|
84
|
+
reduceOnly?: boolean;
|
|
85
|
+
tif?: string;
|
|
86
|
+
}): Promise<unknown>;
|
|
87
|
+
editOrder(symbol: string, orderId: string, price: string, size: string): Promise<unknown>;
|
|
88
|
+
cancelOrder(symbol: string, orderId: string): Promise<unknown>;
|
|
89
|
+
cancelAllOrders(symbol?: string): Promise<unknown>;
|
|
90
|
+
setLeverage(symbol: string, leverage: number, marginMode?: "cross" | "isolated"): Promise<unknown>;
|
|
91
|
+
stopOrder(symbol: string, side: "buy" | "sell", size: string, triggerPrice: string, opts?: {
|
|
92
|
+
limitPrice?: string;
|
|
93
|
+
reduceOnly?: boolean;
|
|
94
|
+
}): Promise<unknown>;
|
|
95
|
+
}
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import type { ExchangeAdapter, ExchangeMarketInfo, ExchangePosition, ExchangeOrder, ExchangeBalance, ExchangeTrade, ExchangeFundingPayment, ExchangeKline } from "./interface.js";
|
|
2
|
+
type LighterSignerClientType = import("lighter-sdk").LighterSignerClient;
|
|
3
|
+
export declare class LighterAdapter implements ExchangeAdapter {
|
|
4
|
+
readonly name = "lighter";
|
|
5
|
+
private _signer;
|
|
6
|
+
private _accountIndex;
|
|
7
|
+
private _address;
|
|
8
|
+
private _marketMap;
|
|
9
|
+
private _marketDecimals;
|
|
10
|
+
private _evmKey;
|
|
11
|
+
private _apiKey;
|
|
12
|
+
private _accountIndexInit;
|
|
13
|
+
private _baseUrl;
|
|
14
|
+
private _chainId;
|
|
15
|
+
private _testnet;
|
|
16
|
+
private _readOnly;
|
|
17
|
+
/**
|
|
18
|
+
* @param evmKey EVM private key (0x-prefixed, 32 bytes) — for deposits & key registration
|
|
19
|
+
* @param testnet Use testnet (chain ID 300) instead of mainnet (chain ID 304)
|
|
20
|
+
* @param opts Optional: apiKey (40-byte Lighter signing key), accountIndex
|
|
21
|
+
*/
|
|
22
|
+
constructor(evmKey: string, testnet?: boolean, opts?: {
|
|
23
|
+
apiKey?: string;
|
|
24
|
+
accountIndex?: number;
|
|
25
|
+
});
|
|
26
|
+
get signer(): LighterSignerClientType;
|
|
27
|
+
get accountIndex(): number;
|
|
28
|
+
get address(): string;
|
|
29
|
+
get evmKey(): string;
|
|
30
|
+
get isReadOnly(): boolean;
|
|
31
|
+
init(): Promise<void>;
|
|
32
|
+
getMarketIndex(symbol: string): number;
|
|
33
|
+
private getMarkPrice;
|
|
34
|
+
private toTicks;
|
|
35
|
+
getMarkets(): Promise<ExchangeMarketInfo[]>;
|
|
36
|
+
private fetchAccount;
|
|
37
|
+
getOrderbook(symbol: string): Promise<{
|
|
38
|
+
bids: [string, string][];
|
|
39
|
+
asks: [string, string][];
|
|
40
|
+
}>;
|
|
41
|
+
getBalance(): Promise<ExchangeBalance>;
|
|
42
|
+
getPositions(): Promise<ExchangePosition[]>;
|
|
43
|
+
private getAuthToken;
|
|
44
|
+
private restGetAuth;
|
|
45
|
+
getOpenOrders(): Promise<ExchangeOrder[]>;
|
|
46
|
+
marketOrder(symbol: string, side: "buy" | "sell", size: string): Promise<unknown>;
|
|
47
|
+
limitOrder(symbol: string, side: "buy" | "sell", price: string, size: string, opts?: {
|
|
48
|
+
reduceOnly?: boolean;
|
|
49
|
+
tif?: string;
|
|
50
|
+
}): Promise<unknown>;
|
|
51
|
+
cancelOrder(symbol: string, orderId: string): Promise<unknown>;
|
|
52
|
+
cancelAllOrders(_symbol?: string): Promise<unknown>;
|
|
53
|
+
modifyOrder(symbol: string, orderId: string, price: string, size: string): Promise<unknown>;
|
|
54
|
+
stopOrder(symbol: string, side: "buy" | "sell", size: string, triggerPrice: string, opts?: {
|
|
55
|
+
limitPrice?: string;
|
|
56
|
+
reduceOnly?: boolean;
|
|
57
|
+
}): Promise<unknown>;
|
|
58
|
+
updateLeverage(symbol: string, leverage: number, marginMode?: "cross" | "isolated"): Promise<unknown>;
|
|
59
|
+
withdraw(amount: number, assetId?: number, routeType?: number): Promise<unknown>;
|
|
60
|
+
editOrder(symbol: string, orderId: string, price: string, size: string): Promise<unknown>;
|
|
61
|
+
setLeverage(symbol: string, leverage: number, marginMode?: "cross" | "isolated"): Promise<unknown>;
|
|
62
|
+
getRecentTrades(symbol: string, limit?: number): Promise<ExchangeTrade[]>;
|
|
63
|
+
getFundingHistory(symbol: string, limit?: number): Promise<{
|
|
64
|
+
time: number;
|
|
65
|
+
rate: string;
|
|
66
|
+
price: string;
|
|
67
|
+
}[]>;
|
|
68
|
+
getKlines(symbol: string, interval: string, startTime: number, endTime: number): Promise<ExchangeKline[]>;
|
|
69
|
+
getOrderHistory(limit?: number): Promise<ExchangeOrder[]>;
|
|
70
|
+
getTradeHistory(limit?: number): Promise<ExchangeTrade[]>;
|
|
71
|
+
getFundingPayments(limit?: number): Promise<ExchangeFundingPayment[]>;
|
|
72
|
+
/**
|
|
73
|
+
* Get funding rates for all markets.
|
|
74
|
+
* API: GET /api/v1/funding-rates
|
|
75
|
+
*/
|
|
76
|
+
getFundingRates(): Promise<Map<string, {
|
|
77
|
+
rate: string;
|
|
78
|
+
markPrice: string;
|
|
79
|
+
}>>;
|
|
80
|
+
/**
|
|
81
|
+
* Get candle data for a market.
|
|
82
|
+
*/
|
|
83
|
+
getCandles(symbol: string, resolution: string, startTime: number, endTime: number, countBack?: number): Promise<unknown>;
|
|
84
|
+
/**
|
|
85
|
+
* Get order history (inactive orders) — raw response.
|
|
86
|
+
*/
|
|
87
|
+
private _getOrderHistoryRaw;
|
|
88
|
+
/**
|
|
89
|
+
* Get trade history — raw response.
|
|
90
|
+
*/
|
|
91
|
+
private _getTradeHistoryRaw;
|
|
92
|
+
/**
|
|
93
|
+
* Get position funding history — raw response.
|
|
94
|
+
*/
|
|
95
|
+
private _getPositionFundingRaw;
|
|
96
|
+
/**
|
|
97
|
+
* Get PnL chart data.
|
|
98
|
+
*/
|
|
99
|
+
getPnl(period?: string): Promise<unknown>;
|
|
100
|
+
/**
|
|
101
|
+
* Get deposit history.
|
|
102
|
+
*/
|
|
103
|
+
getDepositHistory(): Promise<unknown>;
|
|
104
|
+
/**
|
|
105
|
+
* Get withdrawal history.
|
|
106
|
+
*/
|
|
107
|
+
getWithdrawHistory(): Promise<unknown>;
|
|
108
|
+
/**
|
|
109
|
+
* Get transfer history.
|
|
110
|
+
*/
|
|
111
|
+
getTransferHistory(): Promise<unknown>;
|
|
112
|
+
/**
|
|
113
|
+
* Get asset details.
|
|
114
|
+
*/
|
|
115
|
+
getAssetDetails(assetId?: number): Promise<unknown>;
|
|
116
|
+
/**
|
|
117
|
+
* Get exchange metrics.
|
|
118
|
+
*/
|
|
119
|
+
getExchangeMetrics(symbol?: string): Promise<unknown>;
|
|
120
|
+
/**
|
|
121
|
+
* Get account limits.
|
|
122
|
+
*/
|
|
123
|
+
getAccountLimits(): Promise<unknown>;
|
|
124
|
+
/**
|
|
125
|
+
* Create CCTP intent address for cross-chain deposit.
|
|
126
|
+
*/
|
|
127
|
+
createIntentAddress(chainId: number): Promise<unknown>;
|
|
128
|
+
/**
|
|
129
|
+
* Use a referral code.
|
|
130
|
+
*/
|
|
131
|
+
useReferralCode(code: string): Promise<unknown>;
|
|
132
|
+
/**
|
|
133
|
+
* Direct REST GET helper.
|
|
134
|
+
*/
|
|
135
|
+
private getNextNonce;
|
|
136
|
+
private signOrder;
|
|
137
|
+
private sendTx;
|
|
138
|
+
private restGet;
|
|
139
|
+
private ensureSigner;
|
|
140
|
+
private static getWasmOps;
|
|
141
|
+
/**
|
|
142
|
+
* Generate a new Lighter API key pair using the WASM signer.
|
|
143
|
+
* Returns { privateKey, publicKey } (both 0x-prefixed, 40 bytes).
|
|
144
|
+
*/
|
|
145
|
+
static generateApiKey(seed?: string): Promise<{
|
|
146
|
+
privateKey: string;
|
|
147
|
+
publicKey: string;
|
|
148
|
+
}>;
|
|
149
|
+
/**
|
|
150
|
+
* Generate an API key and register it on-chain via ChangePubKey.
|
|
151
|
+
* Uses WASM signer to sign + ETH key for L1 signature.
|
|
152
|
+
* Returns the generated key pair.
|
|
153
|
+
*/
|
|
154
|
+
setupApiKey(apiKeyIndex?: number): Promise<{
|
|
155
|
+
privateKey: string;
|
|
156
|
+
publicKey: string;
|
|
157
|
+
}>;
|
|
158
|
+
}
|
|
159
|
+
export {};
|