@zemyth/raise-sdk 0.1.3 → 0.1.4
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.cjs +20 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -2
- package/src/client.ts +15 -0
- package/src/index.ts +16 -0
package/dist/index.cjs
CHANGED
|
@@ -2866,6 +2866,13 @@ var RaiseClient = class _RaiseClient {
|
|
|
2866
2866
|
this.walletPublicKey
|
|
2867
2867
|
);
|
|
2868
2868
|
}
|
|
2869
|
+
async claimExitWindowRefund(args) {
|
|
2870
|
+
return claimExitWindowRefund(
|
|
2871
|
+
this.program,
|
|
2872
|
+
args,
|
|
2873
|
+
this.walletPublicKey
|
|
2874
|
+
);
|
|
2875
|
+
}
|
|
2869
2876
|
// ===========================================================================
|
|
2870
2877
|
// Sub-Allocation Vesting Instructions
|
|
2871
2878
|
// ===========================================================================
|
|
@@ -3867,6 +3874,7 @@ exports.VALIDATION = VALIDATION;
|
|
|
3867
3874
|
exports.VoteChoice = VoteChoice;
|
|
3868
3875
|
exports.acceptAdmin = acceptAdmin;
|
|
3869
3876
|
exports.accountExists = accountExists;
|
|
3877
|
+
exports.addSubAllocation = addSubAllocation;
|
|
3870
3878
|
exports.approvePivot = approvePivot;
|
|
3871
3879
|
exports.approveProject = approveProject;
|
|
3872
3880
|
exports.bigIntToBN = bigIntToBN;
|
|
@@ -3883,15 +3891,23 @@ exports.canClaimRoundEarlyTokens = canClaimRoundEarlyTokens;
|
|
|
3883
3891
|
exports.cancelInvestment = cancelInvestment;
|
|
3884
3892
|
exports.cancelRoundInvestment = cancelRoundInvestment;
|
|
3885
3893
|
exports.checkAbandonment = checkAbandonment;
|
|
3894
|
+
exports.claimEarlyTokens = claimEarlyTokens;
|
|
3886
3895
|
exports.claimExitWindowRefund = claimExitWindowRefund;
|
|
3896
|
+
exports.claimFounderEarlyTokens = claimFounderEarlyTokens;
|
|
3897
|
+
exports.claimFounderMilestoneTokens = claimFounderMilestoneTokens;
|
|
3898
|
+
exports.claimFounderMsInstantTokens = claimFounderMsInstantTokens;
|
|
3899
|
+
exports.claimFounderMsVestedTokens = claimFounderMsVestedTokens;
|
|
3887
3900
|
exports.claimInvestorTokens = claimInvestorTokens;
|
|
3888
3901
|
exports.claimMilestoneFunds = claimMilestoneFunds;
|
|
3902
|
+
exports.claimMilestoneInstantTokens = claimMilestoneInstantTokens;
|
|
3903
|
+
exports.claimMilestoneVestedTokens = claimMilestoneVestedTokens;
|
|
3889
3904
|
exports.claimMissedUnlock = claimMissedUnlock;
|
|
3890
3905
|
exports.claimRefund = claimRefund;
|
|
3891
3906
|
exports.claimRoundEarlyTokens = claimRoundEarlyTokens;
|
|
3892
3907
|
exports.claimRoundInstantTokens = claimRoundInstantTokens;
|
|
3893
3908
|
exports.claimRoundMilestoneFunds = claimRoundMilestoneFunds;
|
|
3894
3909
|
exports.claimRoundVestedTokens = claimRoundVestedTokens;
|
|
3910
|
+
exports.claimSubAllocationTokens = claimSubAllocationTokens;
|
|
3895
3911
|
exports.claimTokens = claimTokens;
|
|
3896
3912
|
exports.claimVestedTokens = claimVestedTokens;
|
|
3897
3913
|
exports.completeDistribution = completeDistribution;
|
|
@@ -3899,6 +3915,7 @@ exports.confirmTransaction = confirmTransaction;
|
|
|
3899
3915
|
exports.createMilestone = createMilestone;
|
|
3900
3916
|
exports.depositTokens = depositTokens;
|
|
3901
3917
|
exports.distributeTokens = distributeTokens;
|
|
3918
|
+
exports.executeAllocationChange = executeAllocationChange;
|
|
3902
3919
|
exports.extendMilestoneDeadline = extendMilestoneDeadline;
|
|
3903
3920
|
exports.fetchAdminConfig = fetchAdminConfig;
|
|
3904
3921
|
exports.fetchAllFundingRounds = fetchAllFundingRounds;
|
|
@@ -3965,6 +3982,7 @@ exports.hasTimestampPassed = hasTimestampPassed;
|
|
|
3965
3982
|
exports.initializeAdmin = initializeAdmin;
|
|
3966
3983
|
exports.initializeFounderVesting = initializeFounderVesting;
|
|
3967
3984
|
exports.initializeProject = initializeProject;
|
|
3985
|
+
exports.initializeSubAllocationVesting = initializeSubAllocationVesting;
|
|
3968
3986
|
exports.invest = invest;
|
|
3969
3987
|
exports.investInRound = investInRound;
|
|
3970
3988
|
exports.isRaiseError = isRaiseError;
|
|
@@ -3974,6 +3992,7 @@ exports.openFundingRound = openFundingRound;
|
|
|
3974
3992
|
exports.parseError = parseError;
|
|
3975
3993
|
exports.percentToBps = percentToBps;
|
|
3976
3994
|
exports.percentageOf = percentageOf;
|
|
3995
|
+
exports.proposeAllocationChange = proposeAllocationChange;
|
|
3977
3996
|
exports.proposePivot = proposePivot;
|
|
3978
3997
|
exports.releaseHoldback = releaseHoldback;
|
|
3979
3998
|
exports.reportScam = reportScam;
|
|
@@ -3992,6 +4011,7 @@ exports.transferAdmin = transferAdmin;
|
|
|
3992
4011
|
exports.validateDeadline = validateDeadline;
|
|
3993
4012
|
exports.validateMetadataUri = validateMetadataUri;
|
|
3994
4013
|
exports.validateMilestonePercentages = validateMilestonePercentages;
|
|
4014
|
+
exports.voteAllocationChange = voteAllocationChange;
|
|
3995
4015
|
exports.voteOnMilestone = voteOnMilestone;
|
|
3996
4016
|
exports.voteOnRoundMilestone = voteOnRoundMilestone;
|
|
3997
4017
|
exports.withdrawFromPivot = withdrawFromPivot;
|