proof-of-take-sdk 5.0.12 → 5.0.13
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/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export type { CreateMiztakeOptions, CreateMiztakeResult, CreateMiztakePdas, Crea
|
|
|
11
11
|
export { initializeStatistics, isInitialized, } from "./instructions/initializeStatistics";
|
|
12
12
|
export { initializeSeasonSettings } from "./instructions/initializeSeasonSettings";
|
|
13
13
|
export { initializeSeasonVault } from "./instructions/initializeSeasonVault";
|
|
14
|
-
export { createMoonpool, joinMoonpoolSeason, joinSunpool, joinSeasonClassic, joinSeasonLaunchpad,
|
|
14
|
+
export { createMoonpool, joinMoonpoolSeason, joinSunpool, joinSeasonClassic, joinSeasonLaunchpad, } from "./instructions/joinSeason";
|
|
15
15
|
export type { CreateMoonpoolOptions, JoinMoonpoolSeasonOptions, JoinSunpoolOptions, JoinSeasonClassicOptions, JoinSeasonLaunchpadOptions, } from "./instructions/joinSeason";
|
|
16
16
|
export { confirmedPostOnX } from "./instructions/confirmedPostOnX";
|
|
17
17
|
export type { ConfirmedPostOnXOptions } from "./instructions/confirmedPostOnX";
|
package/dist/index.js
CHANGED
|
@@ -21,7 +21,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
21
21
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
22
22
|
};
|
|
23
23
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
|
-
exports.VERSION = exports.closeReferralPenaltyClaim = exports.closeUserWindowParticipation = exports.closeRewardWindow = exports.closeSeasonMembership = exports.closeUserStats = exports.closeMiztake = exports.getUserStatsByPda = exports.getProgramReadOnly = exports.createProgramWithId = exports.createProgram = exports.ANCHOR_IDL = exports.IDL = exports.WindowState = exports.SeasonState = exports.PDAManager = exports.getProgram = exports.viewCurrentSeason = exports.viewWindowStatus = exports.viewSeasonMembershipStatus = exports.updateSeasonAdmin = exports.toggleSeasonPause = exports.initializeRewardWindow = exports.sellMizd = exports.buyMizd = exports.initializeBondingCurve = exports.withdrawSeasonDeposit = exports.claimSignupRewardsLaunchpad = exports.claimSignupRewardsClassic = exports.claimSignupRewards = exports.claimReferralPenaltyForWindowLaunchpad = exports.claimReferralPenaltyForWindowClassic = exports.claimReferralPenaltyForWindow = exports.claimWindowRewardsLaunchpad = exports.claimWindowRewardsClassic = exports.claimWindowRewards = exports.confirmedPostOnX = exports.
|
|
24
|
+
exports.VERSION = exports.closeReferralPenaltyClaim = exports.closeUserWindowParticipation = exports.closeRewardWindow = exports.closeSeasonMembership = exports.closeUserStats = exports.closeMiztake = exports.getUserStatsByPda = exports.getProgramReadOnly = exports.createProgramWithId = exports.createProgram = exports.ANCHOR_IDL = exports.IDL = exports.WindowState = exports.SeasonState = exports.PDAManager = exports.getProgram = exports.viewCurrentSeason = exports.viewWindowStatus = exports.viewSeasonMembershipStatus = exports.updateSeasonAdmin = exports.toggleSeasonPause = exports.initializeRewardWindow = exports.sellMizd = exports.buyMizd = exports.initializeBondingCurve = exports.withdrawSeasonDeposit = exports.claimSignupRewardsLaunchpad = exports.claimSignupRewardsClassic = exports.claimSignupRewards = exports.claimReferralPenaltyForWindowLaunchpad = exports.claimReferralPenaltyForWindowClassic = exports.claimReferralPenaltyForWindow = exports.claimWindowRewardsLaunchpad = exports.claimWindowRewardsClassic = exports.claimWindowRewards = exports.confirmedPostOnX = exports.joinSeasonLaunchpad = exports.joinSeasonClassic = exports.joinSunpool = exports.joinMoonpoolSeason = exports.createMoonpool = exports.initializeSeasonVault = exports.initializeSeasonSettings = exports.isInitialized = exports.initializeStatistics = exports.getMiztakePdaForParams = exports.createMiztake = void 0;
|
|
25
25
|
// NOTE:
|
|
26
26
|
// We intentionally export `getProgram` via a local const assignment (instead of `export * from ...`)
|
|
27
27
|
// so that the compiled CommonJS output uses a writable property. This makes it possible to mock
|
|
@@ -47,8 +47,6 @@ Object.defineProperty(exports, "joinMoonpoolSeason", { enumerable: true, get: fu
|
|
|
47
47
|
Object.defineProperty(exports, "joinSunpool", { enumerable: true, get: function () { return joinSeason_1.joinSunpool; } });
|
|
48
48
|
Object.defineProperty(exports, "joinSeasonClassic", { enumerable: true, get: function () { return joinSeason_1.joinSeasonClassic; } });
|
|
49
49
|
Object.defineProperty(exports, "joinSeasonLaunchpad", { enumerable: true, get: function () { return joinSeason_1.joinSeasonLaunchpad; } });
|
|
50
|
-
Object.defineProperty(exports, "joinSeasonAndInitialize", { enumerable: true, get: function () { return joinSeason_1.joinSeasonAndInitialize; } });
|
|
51
|
-
Object.defineProperty(exports, "joinSeasonLaunchpadAndInitialize", { enumerable: true, get: function () { return joinSeason_1.joinSeasonLaunchpadAndInitialize; } });
|
|
52
50
|
var confirmedPostOnX_1 = require("./instructions/confirmedPostOnX");
|
|
53
51
|
Object.defineProperty(exports, "confirmedPostOnX", { enumerable: true, get: function () { return confirmedPostOnX_1.confirmedPostOnX; } });
|
|
54
52
|
var claimWindowRewards_1 = require("./instructions/claimWindowRewards");
|
|
@@ -249,4 +249,4 @@ export type JoinSeasonClassicOptions = {
|
|
|
249
249
|
* @returns Instructions, signers, and PDAs
|
|
250
250
|
*/
|
|
251
251
|
export declare function joinSeasonClassic(options: JoinSeasonClassicOptions): Promise<StandardInstructionResultWithPdas<JoinSunpoolPdas, JoinSunpoolUpdatedAccounts>>;
|
|
252
|
-
export {
|
|
252
|
+
export {};
|
|
@@ -4,9 +4,7 @@ exports.createMoonpool = createMoonpool;
|
|
|
4
4
|
exports.joinMoonpoolSeason = joinMoonpoolSeason;
|
|
5
5
|
exports.joinSunpool = joinSunpool;
|
|
6
6
|
exports.joinSeasonLaunchpad = joinSeasonLaunchpad;
|
|
7
|
-
exports.joinSeasonLaunchpadAndInitialize = joinSeasonLaunchpad;
|
|
8
7
|
exports.joinSeasonClassic = joinSeasonClassic;
|
|
9
|
-
exports.joinSeasonAndInitialize = joinSeasonClassic;
|
|
10
8
|
const anchor_1 = require("@coral-xyz/anchor");
|
|
11
9
|
const web3_js_1 = require("@solana/web3.js");
|
|
12
10
|
const spl_token_1 = require("@solana/spl-token");
|