@emblemvault/primitives-stake 0.5.1 → 0.7.0
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/dist/client.d.ts +165 -30
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +343 -56
- package/dist/client.js.map +1 -1
- package/dist/codec.d.ts +52 -44
- package/dist/codec.d.ts.map +1 -1
- package/dist/codec.js +193 -68
- package/dist/codec.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/pda.d.ts +39 -3
- package/dist/pda.d.ts.map +1 -1
- package/dist/pda.js +51 -4
- package/dist/pda.js.map +1 -1
- package/dist/types.d.ts +63 -11
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/client.d.ts
CHANGED
|
@@ -58,13 +58,32 @@ export declare class EmblemStakeClient {
|
|
|
58
58
|
vaultPda: SolanaAddress;
|
|
59
59
|
bump: number;
|
|
60
60
|
};
|
|
61
|
+
/** Bundle 9+232 (2026-05-06) — RewardDistribution PDA now per
|
|
62
|
+
* `(pool, rewardMint, periodId)`. */
|
|
61
63
|
deriveDistributionPda(args: {
|
|
62
64
|
poolPda: SolanaAddress;
|
|
65
|
+
rewardMint: SolanaAddress;
|
|
63
66
|
periodId: number;
|
|
64
67
|
}): {
|
|
65
68
|
distributionPda: SolanaAddress;
|
|
66
69
|
bump: number;
|
|
67
70
|
};
|
|
71
|
+
/** Bundle 9+232 (2026-05-06) — per-mint reward vault address. */
|
|
72
|
+
deriveRewardVaultPda(args: {
|
|
73
|
+
poolPda: SolanaAddress;
|
|
74
|
+
rewardMint: SolanaAddress;
|
|
75
|
+
}): {
|
|
76
|
+
rewardVaultPda: SolanaAddress;
|
|
77
|
+
bump: number;
|
|
78
|
+
};
|
|
79
|
+
/** Bundle 9+232 (2026-05-06) — per-stream platform accrual PDA. */
|
|
80
|
+
derivePlatformAccrualPda(args: {
|
|
81
|
+
poolPda: SolanaAddress;
|
|
82
|
+
rewardMint: SolanaAddress;
|
|
83
|
+
}): {
|
|
84
|
+
accrualPda: SolanaAddress;
|
|
85
|
+
bump: number;
|
|
86
|
+
};
|
|
68
87
|
/** ST-2 follow-on (2026-05-04). The stake program's PlatformConfig
|
|
69
88
|
* PDA is a singleton — same shape as launch + sell. */
|
|
70
89
|
derivePlatformConfigPda(): {
|
|
@@ -191,16 +210,44 @@ export declare class EmblemStakeClient {
|
|
|
191
210
|
authority: SolanaAddress;
|
|
192
211
|
}): TransactionInstruction;
|
|
193
212
|
/**
|
|
194
|
-
*
|
|
195
|
-
*
|
|
196
|
-
*
|
|
197
|
-
* `
|
|
198
|
-
*
|
|
213
|
+
* Bundle 9+232 (2026-05-06) — register a reward token stream on an
|
|
214
|
+
* existing pool. Inits the per-mint reward vault PDA + the stream's
|
|
215
|
+
* PlatformAccrual PDA, and appends `reward_mint` to
|
|
216
|
+
* `pool.reward_mints`. Authority-only on chain (`has_one = authority`).
|
|
217
|
+
*
|
|
218
|
+
* Used by the `createPool()` self-submitting wrapper to chain one of
|
|
219
|
+
* these per `initialRewardMints` entry — but exposed here so callers
|
|
220
|
+
* can register additional streams later.
|
|
199
221
|
*/
|
|
200
|
-
|
|
222
|
+
buildRegisterPoolRewardMintIx(args: {
|
|
223
|
+
payer: SolanaAddress;
|
|
201
224
|
authority: SolanaAddress;
|
|
202
|
-
|
|
203
|
-
|
|
225
|
+
poolPda: SolanaAddress;
|
|
226
|
+
rewardMint: SolanaAddress;
|
|
227
|
+
}): TransactionInstruction;
|
|
228
|
+
/**
|
|
229
|
+
* Bundle 9+232 (2026-05-06) — admin sets the protocol fee on reward
|
|
230
|
+
* distributions, in basis points. Capped at
|
|
231
|
+
* `STAKE_PLATFORM_FEE_BPS_MAX = 3_000` (30%) by the on-chain ix.
|
|
232
|
+
* Mainnet ships at 0.
|
|
233
|
+
*/
|
|
234
|
+
buildSetPlatformFeeBpsIx(args: {
|
|
235
|
+
admin: SolanaAddress;
|
|
236
|
+
feeBps: number;
|
|
237
|
+
}): TransactionInstruction;
|
|
238
|
+
/**
|
|
239
|
+
* Bundle 9+232 (2026-05-06) — drain accrued platform fees from one
|
|
240
|
+
* reward stream's `PlatformAccrual.pending` into the admin's treasury
|
|
241
|
+
* ATA. Admin-signed (`has_one = admin` on `PlatformConfig`); body
|
|
242
|
+
* also asserts `treasury.owner == admin` so the admin can't route
|
|
243
|
+
* Emblem fees to a third-party wallet. Idempotent-error at
|
|
244
|
+
* `pending == 0` with `StakePlatformAccrualNothingPending (519)`.
|
|
245
|
+
*/
|
|
246
|
+
buildEmblemClaimPlatformFeeIx(args: {
|
|
247
|
+
admin: SolanaAddress;
|
|
248
|
+
poolPda: SolanaAddress;
|
|
249
|
+
rewardMint: SolanaAddress;
|
|
250
|
+
treasuryTokenAccount: SolanaAddress;
|
|
204
251
|
}): TransactionInstruction;
|
|
205
252
|
/** Build the register_pending_action_vault instruction (Tier 3 settlement bucket). */
|
|
206
253
|
buildRegisterPendingActionVaultIx(args: {
|
|
@@ -209,14 +256,17 @@ export declare class EmblemStakeClient {
|
|
|
209
256
|
configId: string;
|
|
210
257
|
actionType: 'buyback-burn' | 'lp-reinforce';
|
|
211
258
|
}): TransactionInstruction;
|
|
212
|
-
/** Address of the staker-pool reward vault (Tier 2 destination for StakerPool recipients). */
|
|
213
|
-
deriveStakerPoolRewardVault(poolPda: SolanaAddress): SolanaAddress;
|
|
214
259
|
/**
|
|
215
|
-
*
|
|
216
|
-
*
|
|
217
|
-
*
|
|
260
|
+
* Bundle 9+232 (2026-05-06) — per-mint reward vault address. Pre-bundle
|
|
261
|
+
* `deriveStakerPoolRewardVault(pool)` (single-stream) and
|
|
262
|
+
* `deriveDistributionVaultAddress(vaultPubkey)` (Tier 2 tombstone)
|
|
263
|
+
* helpers are gone — see `deriveRewardVaultPda` above for the canonical
|
|
264
|
+
* `(pool, rewardMint)` derivation.
|
|
218
265
|
*/
|
|
219
|
-
|
|
266
|
+
deriveStakerPoolRewardVault(args: {
|
|
267
|
+
poolPda: SolanaAddress;
|
|
268
|
+
rewardMint: SolanaAddress;
|
|
269
|
+
}): SolanaAddress;
|
|
220
270
|
/** Address of a Tier 3 pending-action vault. */
|
|
221
271
|
derivePendingActionVaultAddress(args: {
|
|
222
272
|
configId: string;
|
|
@@ -232,12 +282,16 @@ export declare class EmblemStakeClient {
|
|
|
232
282
|
poolPda: SolanaAddress;
|
|
233
283
|
owner: SolanaAddress;
|
|
234
284
|
}): SolanaAddress;
|
|
235
|
-
/** RewardDistribution PDA for a
|
|
285
|
+
/** Bundle 9+232 (2026-05-06) — RewardDistribution PDA for a
|
|
286
|
+
* `(pool, rewardMint, periodId)` triple. */
|
|
236
287
|
deriveRewardDistributionAddress(args: {
|
|
237
288
|
poolPda: SolanaAddress;
|
|
289
|
+
rewardMint: SolanaAddress;
|
|
238
290
|
periodId: number;
|
|
239
291
|
}): SolanaAddress;
|
|
240
|
-
/** Build the register_pool_token_accounts ix. Permissionless;
|
|
292
|
+
/** Build the register_pool_token_accounts ix. Permissionless;
|
|
293
|
+
* one-time per pool. Bundle 9+232 (2026-05-06) — principal-vault only;
|
|
294
|
+
* per-mint reward vaults moved to `register_pool_reward_mint`. */
|
|
241
295
|
buildRegisterPoolTokenAccountsIx(args: {
|
|
242
296
|
payer: SolanaAddress;
|
|
243
297
|
poolPda: SolanaAddress;
|
|
@@ -276,25 +330,33 @@ export declare class EmblemStakeClient {
|
|
|
276
330
|
penaltyDestinationAta?: SolanaAddress;
|
|
277
331
|
}): TransactionInstruction;
|
|
278
332
|
/**
|
|
279
|
-
* Build the claim ix.
|
|
280
|
-
*
|
|
281
|
-
*
|
|
333
|
+
* Build the claim ix. Bundle 9+232 (2026-05-06) — caller specifies
|
|
334
|
+
* `rewardMint` (the stream to claim against). The caller must pass
|
|
335
|
+
* RewardDistribution PDAs for every period from
|
|
336
|
+
* `vault.last_claim_periods[mint_idx]` to `pool.current_periods[mint_idx] - 1`
|
|
337
|
+
* inclusive in `remaining_accounts`. Per-stream PDAs are seeded with
|
|
338
|
+
* `(pool, rewardMint, periodId)`.
|
|
282
339
|
*/
|
|
283
340
|
buildClaimIx(args: {
|
|
284
341
|
user: SolanaAddress;
|
|
285
342
|
poolPda: SolanaAddress;
|
|
343
|
+
rewardMint: SolanaAddress;
|
|
286
344
|
userTokenAccount: SolanaAddress;
|
|
287
|
-
/** Period IDs in (
|
|
345
|
+
/** Period IDs in `(last_claim_periods[mint_idx] .. current_periods[mint_idx])` order. */
|
|
288
346
|
periodIds: number[];
|
|
289
347
|
}): TransactionInstruction;
|
|
290
348
|
/**
|
|
291
349
|
* Build the distribute_rewards ix. Permissionless trigger — anyone
|
|
292
|
-
* pays tx fees to advance the period.
|
|
350
|
+
* pays tx fees to advance the period for one stream. Bundle 9+232
|
|
351
|
+
* (2026-05-06) — caller specifies `rewardMint`; ix data carries it
|
|
352
|
+
* + reads `PlatformConfig.fee_bps` to bookkeep the staker-pool /
|
|
353
|
+
* platform-accrual split.
|
|
293
354
|
*/
|
|
294
355
|
buildDistributeRewardsIx(args: {
|
|
295
356
|
payer: SolanaAddress;
|
|
296
357
|
poolPda: SolanaAddress;
|
|
297
|
-
|
|
358
|
+
rewardMint: SolanaAddress;
|
|
359
|
+
/** `pool.current_periods[mint_idx]` (the period being snapshotted). */
|
|
298
360
|
periodId: number;
|
|
299
361
|
}): TransactionInstruction;
|
|
300
362
|
/**
|
|
@@ -308,18 +370,58 @@ export declare class EmblemStakeClient {
|
|
|
308
370
|
* pool, so we always include it. If it ever becomes a no-op for an
|
|
309
371
|
* existing pool, this is still safe.
|
|
310
372
|
*/
|
|
373
|
+
/**
|
|
374
|
+
* Create a stake pool AND chain `register_pool_token_accounts` so the
|
|
375
|
+
* principal vault is initialized in the same call. Bundle 9+232
|
|
376
|
+
* (2026-05-06) — also chains one `register_pool_reward_mint` per
|
|
377
|
+
* entry in `args.initialRewardMints`, initializing each stream's
|
|
378
|
+
* reward vault + PlatformAccrual atomically with pool creation. If
|
|
379
|
+
* `initialRewardMints` is empty, no reward streams are registered;
|
|
380
|
+
* the pool authority can register them later via
|
|
381
|
+
* `registerPoolRewardMint()`.
|
|
382
|
+
*/
|
|
311
383
|
createPool(args: CreatePoolArgs): Promise<{
|
|
312
384
|
poolPda: SolanaAddress;
|
|
313
385
|
principalVaultPda: SolanaAddress;
|
|
386
|
+
rewardVaultPdas: {
|
|
387
|
+
rewardMint: SolanaAddress;
|
|
388
|
+
rewardVaultPda: SolanaAddress;
|
|
389
|
+
}[];
|
|
390
|
+
txSignature: string;
|
|
391
|
+
}>;
|
|
392
|
+
/**
|
|
393
|
+
* Bundle 9+232 (2026-05-06) — register a new reward token stream on
|
|
394
|
+
* an existing pool. Authority-only on chain. Inits the per-mint
|
|
395
|
+
* reward vault PDA + PlatformAccrual; appends to `pool.reward_mints`.
|
|
396
|
+
*/
|
|
397
|
+
registerPoolRewardMint(args: {
|
|
398
|
+
poolPda: SolanaAddress;
|
|
399
|
+
rewardMint: SolanaAddress;
|
|
400
|
+
}): Promise<{
|
|
314
401
|
rewardVaultPda: SolanaAddress;
|
|
402
|
+
accrualPda: SolanaAddress;
|
|
315
403
|
txSignature: string;
|
|
316
404
|
}>;
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
405
|
+
/**
|
|
406
|
+
* Bundle 9+232 (2026-05-06) — admin updates Emblem's protocol fee
|
|
407
|
+
* on reward distributions. Capped at 30% by the on-chain ix.
|
|
408
|
+
* Mainnet ships at 0.
|
|
409
|
+
*/
|
|
410
|
+
setPlatformFeeBps(feeBps: number): Promise<{
|
|
411
|
+
txSignature: string;
|
|
412
|
+
}>;
|
|
413
|
+
/**
|
|
414
|
+
* Bundle 9+232 (2026-05-06) — admin drains accrued platform fees from
|
|
415
|
+
* one reward stream into a treasury ATA. Auto-derives the canonical
|
|
416
|
+
* admin-owned ATA for `rewardMint` if `treasuryTokenAccount` is
|
|
417
|
+
* omitted, and prepends an idempotent ATA-create ix.
|
|
418
|
+
*/
|
|
419
|
+
emblemClaimPlatformFee(args: {
|
|
420
|
+
poolPda: SolanaAddress;
|
|
421
|
+
rewardMint: SolanaAddress;
|
|
422
|
+
treasuryTokenAccount?: SolanaAddress;
|
|
321
423
|
}): Promise<{
|
|
322
|
-
|
|
424
|
+
accrualPda: SolanaAddress;
|
|
323
425
|
txSignature: string;
|
|
324
426
|
}>;
|
|
325
427
|
registerPendingActionVault(args: {
|
|
@@ -364,9 +466,11 @@ export declare class EmblemStakeClient {
|
|
|
364
466
|
txSignature: string;
|
|
365
467
|
}>;
|
|
366
468
|
/**
|
|
367
|
-
* Claim accrued rewards for one or more periods.
|
|
368
|
-
*
|
|
369
|
-
*
|
|
469
|
+
* Claim accrued rewards for one stream over one or more periods.
|
|
470
|
+
* Bundle 9+232 (2026-05-06) — claim is per-reward-stream; caller
|
|
471
|
+
* specifies which `rewardMint` to pull. Auto-derives the user's ATA
|
|
472
|
+
* for `rewardMint` (NOT pool.asset — these may differ) and prepends
|
|
473
|
+
* an idempotent ATA-create ix.
|
|
370
474
|
*/
|
|
371
475
|
claimRewards(args: ClaimRewardsArgs & {
|
|
372
476
|
userTokenAccount?: SolanaAddress;
|
|
@@ -374,12 +478,43 @@ export declare class EmblemStakeClient {
|
|
|
374
478
|
}): Promise<{
|
|
375
479
|
txSignature: string;
|
|
376
480
|
}>;
|
|
481
|
+
/**
|
|
482
|
+
* Bundle 9+232 (2026-05-06) — advance one reward stream's period
|
|
483
|
+
* counter. Caller specifies `rewardMint`; the cadence floor + the
|
|
484
|
+
* platform-fee bookkeeping are per-stream.
|
|
485
|
+
*/
|
|
377
486
|
distributeRewards(args: DistributeRewardsArgs & {
|
|
378
487
|
periodId: number;
|
|
379
488
|
}): Promise<{
|
|
380
489
|
distributionPda: SolanaAddress;
|
|
381
490
|
txSignature: string;
|
|
382
491
|
}>;
|
|
492
|
+
/**
|
|
493
|
+
* Bundle 9+232 (2026-05-06) — discovery helper. Lists every
|
|
494
|
+
* RewardDistribution PDA for one pool, optionally filtered to a
|
|
495
|
+
* single reward mint. Mirrors launch SDK's `listLaunchesByCreator`
|
|
496
|
+
* pattern. Sorted by `(rewardMint, periodId ASC)` for deterministic
|
|
497
|
+
* pagination on the agent side.
|
|
498
|
+
*/
|
|
499
|
+
listDistributionsByPool(args: {
|
|
500
|
+
poolPda: SolanaAddress;
|
|
501
|
+
rewardMint?: SolanaAddress;
|
|
502
|
+
}): Promise<RewardDistributionView[]>;
|
|
503
|
+
/** Bundle 9+232 (2026-05-06) — read PlatformAccrual for a stream. */
|
|
504
|
+
getPlatformAccrual(args: {
|
|
505
|
+
poolPda: SolanaAddress;
|
|
506
|
+
rewardMint: SolanaAddress;
|
|
507
|
+
}): Promise<{
|
|
508
|
+
accrualPda: SolanaAddress;
|
|
509
|
+
pending: bigint;
|
|
510
|
+
} | null>;
|
|
511
|
+
/** Bundle 9+232 (2026-05-06) — read PlatformConfig (singleton). */
|
|
512
|
+
getPlatformConfig(): Promise<{
|
|
513
|
+
platformConfigPda: SolanaAddress;
|
|
514
|
+
admin: SolanaAddress;
|
|
515
|
+
pendingAdmin: SolanaAddress | null;
|
|
516
|
+
feeBps: number;
|
|
517
|
+
} | null>;
|
|
383
518
|
private signAndSubmit;
|
|
384
519
|
private requireSigner;
|
|
385
520
|
}
|
package/dist/client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EACL,UAAU,EAKV,sBAAsB,EAGtB,KAAK,UAAU,EAEhB,MAAM,iBAAiB,CAAC;AAQzB,OAAO,EACL,WAAW,EAGX,KAAK,aAAa,EAEnB,MAAM,gCAAgC,CAAC;
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|