1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
//! Positions sub-client — portfolio & position queries, and on-chain position operations.
use crate::client::LightconeClient;
use crate::domain::position::builders::{
DepositBuilder, DepositToGlobalBuilder, ExtendPositionTokensBuilder,
GlobalToMarketDepositBuilder, InitPositionTokensBuilder, MergeBuilder, RedeemWinningsBuilder,
WithdrawBuilder, WithdrawFromGlobalBuilder, WithdrawFromPositionBuilder,
};
use crate::domain::position::wire::{MarketPositionsResponse, PositionsResponse};
use crate::domain::position::DepositTokenBalance;
use crate::error::SdkError;
use crate::http::RetryPolicy;
use crate::program::instructions;
use crate::program::types::{
DepositToGlobalParams, ExtendPositionTokensParams, GlobalToMarketDepositParams,
InitPositionTokensParams, RedeemWinningsParams, WithdrawFromGlobalParams,
WithdrawFromPositionParams,
};
use crate::shared::PubkeyStr;
use solana_instruction::Instruction;
use solana_pubkey::Pubkey;
use solana_transaction::Transaction;
use std::collections::HashMap;
pub struct Positions<'a> {
pub(crate) client: &'a LightconeClient,
}
impl<'a> Positions<'a> {
// ── PDA helpers ──────────────────────────────────────────────────────
/// Get the Position PDA.
pub fn pda(&self, owner: &Pubkey, market: &Pubkey) -> Pubkey {
crate::program::pda::get_position_pda(owner, market, &self.client.program_id).0
}
// ── HTTP methods ─────────────────────────────────────────────────────
/// Get all positions for a user across all markets.
pub async fn get(&self, user_pubkey: &str) -> Result<PositionsResponse, SdkError> {
let url = format!(
"{}/api/users/{}/positions",
self.client.http.base_url(),
user_pubkey
);
self.client.http.get(&url, RetryPolicy::Idempotent).await
}
/// Get positions for a user in a specific market.
pub async fn get_for_market(
&self,
user_pubkey: &str,
market_pubkey: &str,
) -> Result<MarketPositionsResponse, SdkError> {
let url = format!(
"{}/api/users/{}/markets/{}/positions",
self.client.http.base_url(),
user_pubkey,
market_pubkey
);
self.client.http.get(&url, RetryPolicy::Idempotent).await
}
/// Get all conditional-token positions for the authenticated user across
/// every market. The wallet is resolved server-side from the `auth_token`
/// cookie, so no parameter is required. Same response shape as
/// [`Positions::get`]; empty `positions` array when the user has none.
pub async fn positions(&self) -> Result<PositionsResponse, SdkError> {
let url = format!("{}/api/users/positions", self.client.http.base_url());
self.client.http.get(&url, RetryPolicy::Idempotent).await
}
/// Same as [`Self::positions`], but uses the supplied `auth_token` for
/// this call instead of the SDK's process-wide token store.
///
/// Intended for server-side cookie forwarding (SSR / server functions)
/// where the per-request browser cookie can't propagate to the shared
/// client. On WASM this is equivalent to [`Self::positions`] because the
/// browser is already attaching the cookie via credentials mode.
pub async fn positions_with_auth(
&self,
auth_token: &str,
) -> Result<PositionsResponse, SdkError> {
let url = format!("{}/api/users/positions", self.client.http.base_url());
self.client
.http
.get_with_auth(&url, RetryPolicy::Idempotent, auth_token)
.await
}
/// Get the authenticated user's positions in a specific market. The
/// wallet is resolved server-side from the `auth_token` cookie.
pub async fn positions_for_market(
&self,
market_pubkey: &str,
) -> Result<MarketPositionsResponse, SdkError> {
let url = format!(
"{}/api/users/markets/{}/positions",
self.client.http.base_url(),
market_pubkey
);
self.client.http.get(&url, RetryPolicy::Idempotent).await
}
/// Same as [`Self::positions_for_market`], but uses the supplied
/// `auth_token` for this call instead of the SDK's process-wide token
/// store. For server-side cookie forwarding (SSR / server functions).
pub async fn positions_for_market_with_auth(
&self,
market_pubkey: &str,
auth_token: &str,
) -> Result<MarketPositionsResponse, SdkError> {
let url = format!(
"{}/api/users/markets/{}/positions",
self.client.http.base_url(),
market_pubkey
);
self.client
.http
.get_with_auth(&url, RetryPolicy::Idempotent, auth_token)
.await
}
/// Get SPL deposit-token balances for the authenticated user.
///
/// The wallet is resolved server-side from the `auth_token` cookie, so no
/// parameter is required. Returns balances keyed by mint pubkey for every
/// deposit token registered in the backend's `deposit_token_metadata`.
/// An empty map means the user has none of the tracked balances — this is
/// not an error.
pub async fn deposit_token_balances(
&self,
) -> Result<HashMap<PubkeyStr, DepositTokenBalance>, SdkError> {
let url = format!(
"{}/api/users/deposit-token-balances",
self.client.http.base_url()
);
self.client.http.get(&url, RetryPolicy::Idempotent).await
}
/// Same as [`Self::deposit_token_balances`], but uses the supplied
/// `auth_token` for this call instead of the SDK's process-wide token
/// store.
///
/// Intended for server-side cookie forwarding (SSR / server functions)
/// where the per-request browser cookie can't propagate to the shared
/// client. On WASM this is equivalent to
/// [`Self::deposit_token_balances`] because the browser is already
/// attaching the cookie via credentials mode.
pub async fn deposit_token_balances_with_auth(
&self,
auth_token: &str,
) -> Result<HashMap<PubkeyStr, DepositTokenBalance>, SdkError> {
let url = format!(
"{}/api/users/deposit-token-balances",
self.client.http.base_url()
);
self.client
.http
.get_with_auth(&url, RetryPolicy::Idempotent, auth_token)
.await
}
// ── On-chain instruction builders ───────────────────────────────────
/// Build RedeemWinnings instruction.
pub fn redeem_winnings_ix(
&self,
params: &RedeemWinningsParams,
winning_outcome: u8,
) -> Instruction {
let pid = &self.client.program_id;
instructions::build_redeem_winnings_ix(params, winning_outcome, pid)
}
/// Build RedeemWinnings transaction.
pub fn redeem_winnings_tx(
&self,
params: RedeemWinningsParams,
winning_outcome: u8,
) -> Result<Transaction, SdkError> {
let ix = self.redeem_winnings_ix(¶ms, winning_outcome);
Ok(Transaction::new_with_payer(&[ix], Some(¶ms.user)))
}
/// Build WithdrawFromPosition instruction.
pub fn withdraw_from_position_ix(
&self,
params: &WithdrawFromPositionParams,
is_token_2022: bool,
) -> Instruction {
let pid = &self.client.program_id;
instructions::build_withdraw_from_position_ix(params, is_token_2022, pid)
}
/// Build WithdrawFromPosition transaction.
pub fn withdraw_from_position_tx(
&self,
params: WithdrawFromPositionParams,
is_token_2022: bool,
) -> Result<Transaction, SdkError> {
let ix = self.withdraw_from_position_ix(¶ms, is_token_2022);
Ok(Transaction::new_with_payer(&[ix], Some(¶ms.user)))
}
/// Build InitPositionTokens instruction.
pub fn init_position_tokens_ix(
&self,
params: &InitPositionTokensParams,
num_outcomes: u8,
) -> Instruction {
let pid = &self.client.program_id;
instructions::build_init_position_tokens_ix(params, num_outcomes, pid)
}
/// Build InitPositionTokens transaction.
pub fn init_position_tokens_tx(
&self,
params: InitPositionTokensParams,
num_outcomes: u8,
) -> Result<Transaction, SdkError> {
let ix = self.init_position_tokens_ix(¶ms, num_outcomes);
Ok(Transaction::new_with_payer(&[ix], Some(¶ms.payer)))
}
/// Build ExtendPositionTokens instruction.
pub fn extend_position_tokens_ix(
&self,
params: &ExtendPositionTokensParams,
num_outcomes: u8,
) -> Result<Instruction, SdkError> {
let pid = &self.client.program_id;
Ok(instructions::build_extend_position_tokens_ix(
params,
num_outcomes,
pid,
)?)
}
/// Build ExtendPositionTokens transaction.
pub fn extend_position_tokens_tx(
&self,
params: ExtendPositionTokensParams,
num_outcomes: u8,
) -> Result<Transaction, SdkError> {
let ix = self.extend_position_tokens_ix(¶ms, num_outcomes)?;
Ok(Transaction::new_with_payer(&[ix], Some(¶ms.payer)))
}
/// Build DepositToGlobal instruction.
pub fn deposit_to_global_ix(&self, params: &DepositToGlobalParams) -> Instruction {
let pid = &self.client.program_id;
instructions::build_deposit_to_global_ix(params, pid)
}
/// Build DepositToGlobal transaction.
pub fn deposit_to_global_tx(
&self,
params: DepositToGlobalParams,
) -> Result<Transaction, SdkError> {
let ix = self.deposit_to_global_ix(¶ms);
Ok(Transaction::new_with_payer(&[ix], Some(¶ms.user)))
}
/// Build GlobalToMarketDeposit instruction.
pub fn global_to_market_deposit_ix(
&self,
params: &GlobalToMarketDepositParams,
num_outcomes: u8,
) -> Instruction {
let pid = &self.client.program_id;
instructions::build_global_to_market_deposit_ix(params, num_outcomes, pid)
}
/// Build GlobalToMarketDeposit transaction.
pub fn global_to_market_deposit_tx(
&self,
params: GlobalToMarketDepositParams,
num_outcomes: u8,
) -> Result<Transaction, SdkError> {
let ix = self.global_to_market_deposit_ix(¶ms, num_outcomes);
Ok(Transaction::new_with_payer(&[ix], Some(¶ms.user)))
}
/// Build WithdrawFromGlobal instruction.
pub fn withdraw_from_global_ix(&self, params: &WithdrawFromGlobalParams) -> Instruction {
let pid = &self.client.program_id;
instructions::build_withdraw_from_global_ix(params, pid)
}
/// Build WithdrawFromGlobal transaction.
pub fn withdraw_from_global_tx(
&self,
params: WithdrawFromGlobalParams,
) -> Result<Transaction, SdkError> {
let ix = self.withdraw_from_global_ix(¶ms);
Ok(Transaction::new_with_payer(&[ix], Some(¶ms.user)))
}
// ── Builder factories ──────────────────────────────────────────────
/// Create a deposit builder pre-seeded with the client's deposit source.
///
/// Use `.build_ix()` or `.build_tx()` to produce the final instruction/transaction.
pub async fn deposit(&self) -> DepositBuilder<'a> {
let deposit_source = self.client.deposit_source().await;
DepositBuilder::new(self.client, deposit_source)
}
/// Create a merge builder.
///
/// Burns a complete set of conditional tokens and releases collateral.
/// Use `.build_ix()`, `.build_tx()`, or `.sign_and_submit()` to produce the final result.
pub fn merge(&self) -> MergeBuilder<'a> {
MergeBuilder::new(self.client)
}
/// Create a withdraw builder pre-seeded with the client's deposit source.
///
/// Dispatches based on deposit source:
/// - **Global**: withdraws from global deposit pool
/// - **Market**: withdraws from position ATA
///
/// Use `.build_ix()` or `.build_tx()` to produce the final instruction/transaction.
pub async fn withdraw(&self) -> WithdrawBuilder<'a> {
let deposit_source = self.client.deposit_source().await;
WithdrawBuilder::new(self.client, deposit_source)
}
/// Create a redeem winnings builder.
///
/// Use `.build_ix()`, `.build_tx()`, or `.sign_and_submit()` to produce the final result.
pub fn redeem_winnings(&self) -> RedeemWinningsBuilder<'a> {
RedeemWinningsBuilder::new(self.client)
}
/// Create a withdraw-from-position builder.
///
/// Use `.build_ix()`, `.build_tx()`, or `.sign_and_submit()` to produce the final result.
pub fn withdraw_from_position(&self) -> WithdrawFromPositionBuilder<'a> {
WithdrawFromPositionBuilder::new(self.client)
}
/// Create an init-position-tokens builder.
///
/// Use `.build_ix()`, `.build_tx()`, or `.sign_and_submit()` to produce the final result.
pub fn init_position_tokens(&self) -> InitPositionTokensBuilder<'a> {
InitPositionTokensBuilder::new(self.client)
}
/// Create an extend-position-tokens builder.
///
/// Use `.build_ix()`, `.build_tx()`, or `.sign_and_submit()` to produce the final result.
pub fn extend_position_tokens(&self) -> ExtendPositionTokensBuilder<'a> {
ExtendPositionTokensBuilder::new(self.client)
}
/// Create a deposit-to-global builder.
///
/// Use `.build_ix()`, `.build_tx()`, or `.sign_and_submit()` to produce the final result.
pub fn deposit_to_global(&self) -> DepositToGlobalBuilder<'a> {
DepositToGlobalBuilder::new(self.client)
}
/// Create a withdraw-from-global builder.
///
/// Use `.build_ix()`, `.build_tx()`, or `.sign_and_submit()` to produce the final result.
pub fn withdraw_from_global(&self) -> WithdrawFromGlobalBuilder<'a> {
WithdrawFromGlobalBuilder::new(self.client)
}
/// Create a global-to-market deposit builder.
///
/// Use `.build_ix()`, `.build_tx()`, or `.sign_and_submit()` to produce the final result.
pub fn global_to_market_deposit(&self) -> GlobalToMarketDepositBuilder<'a> {
GlobalToMarketDepositBuilder::new(self.client)
}
}
// ═════════════════════════════════════════════════════════════════════════════
// On-chain account fetchers (require RPC)
// ═════════════════════════════════════════════════════════════════════════════
#[cfg(feature = "solana-rpc")]
impl<'a> Positions<'a> {
/// Fetch a Position account (returns None if not found).
pub async fn get_onchain(
&self,
owner: &Pubkey,
market: &Pubkey,
) -> Result<Option<crate::program::accounts::Position>, SdkError> {
let rpc = crate::rpc::require_solana_rpc(self.client)?;
let pda = self.pda(owner, market);
match rpc.get_account(&pda).await {
Ok(account) => Ok(Some(crate::program::accounts::Position::deserialize(
&account.data,
)?)),
Err(_) => Ok(None),
}
}
}