@indigo-labs/indigo-sdk 0.3.3 → 0.3.5
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.mts +55 -50
- package/dist/index.d.ts +55 -50
- package/dist/index.js +14 -0
- package/dist/index.mjs +11 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -1761,6 +1761,58 @@ allE2s2sSnapshotOrefs: OutRef[], sysParams: SystemParams, lucid: LucidEvolution,
|
|
|
1761
1761
|
declare function createE2s2sSnapshots(stabilityPoolOref: OutRef, sysParams: SystemParams, lucid: LucidEvolution): Promise<TxBuilder>;
|
|
1762
1762
|
declare function annulRequest(accountUtxo: UTxO, params: SystemParams, lucid: LucidEvolution): Promise<TxBuilder>;
|
|
1763
1763
|
|
|
1764
|
+
/** SP Parameters */
|
|
1765
|
+
declare const StabilityPoolParamsSchema: _lucid_evolution_lucid.TObject<{
|
|
1766
|
+
assetSymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1767
|
+
stabilityPoolToken: _lucid_evolution_lucid.TObject<{
|
|
1768
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1769
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1770
|
+
}>;
|
|
1771
|
+
snapshotEpochToScaleToSumToken: _lucid_evolution_lucid.TObject<{
|
|
1772
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1773
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1774
|
+
}>;
|
|
1775
|
+
accountToken: _lucid_evolution_lucid.TObject<{
|
|
1776
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1777
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1778
|
+
}>;
|
|
1779
|
+
cdpToken: _lucid_evolution_lucid.TObject<{
|
|
1780
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1781
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1782
|
+
}>;
|
|
1783
|
+
iAssetAuthToken: _lucid_evolution_lucid.TObject<{
|
|
1784
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1785
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1786
|
+
}>;
|
|
1787
|
+
versionRecordToken: _lucid_evolution_lucid.TObject<{
|
|
1788
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1789
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1790
|
+
}>;
|
|
1791
|
+
iassetValHash: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1792
|
+
accountCreateFeeLovelaces: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
1793
|
+
accountProcessingCooldownMs: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
1794
|
+
accountProcessingBiasMs: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
1795
|
+
stakeCredential: _lucid_evolution_lucid.TUnsafe<{
|
|
1796
|
+
Inline: [{
|
|
1797
|
+
PublicKeyCredential: [string];
|
|
1798
|
+
} | {
|
|
1799
|
+
ScriptCredential: [string];
|
|
1800
|
+
}];
|
|
1801
|
+
} | {
|
|
1802
|
+
Pointer: [{
|
|
1803
|
+
slotNumber: bigint;
|
|
1804
|
+
transactionIndex: bigint;
|
|
1805
|
+
certificateIndex: bigint;
|
|
1806
|
+
}];
|
|
1807
|
+
} | null>;
|
|
1808
|
+
}>;
|
|
1809
|
+
type StabilityPoolParams = Data.Static<typeof StabilityPoolParamsSchema>;
|
|
1810
|
+
declare const StabilityPoolParams: StabilityPoolParams;
|
|
1811
|
+
declare function castStabilityPoolParams(params: StabilityPoolParams): Data;
|
|
1812
|
+
|
|
1813
|
+
declare const mkStabilityPoolValidator: (params: StabilityPoolParams) => SpendingValidator;
|
|
1814
|
+
declare const mkStabilityPoolValidatorFromSP: (params: StabilityPoolParamsSP) => SpendingValidator;
|
|
1815
|
+
|
|
1764
1816
|
declare function openStakingPosition(amount: bigint, params: SystemParams, lucid: LucidEvolution, stakingManagerRef?: OutRef): Promise<TxBuilder>;
|
|
1765
1817
|
declare function adjustStakingPosition(stakingPositionRef: OutRef, amount: bigint, params: SystemParams, lucid: LucidEvolution, currentSlot: number, stakingManagerRef?: OutRef): Promise<TxBuilder>;
|
|
1766
1818
|
declare function closeStakingPosition(stakingPositionRef: OutRef, params: SystemParams, lucid: LucidEvolution, currentSlot: number, stakingManagerRef?: OutRef): Promise<TxBuilder>;
|
|
@@ -1867,6 +1919,8 @@ type StakingParams = Data.Static<typeof StakingParamsSchema>;
|
|
|
1867
1919
|
declare const StakingParams: StakingParams;
|
|
1868
1920
|
declare function castStakingParams(params: StakingParams): Data;
|
|
1869
1921
|
|
|
1922
|
+
declare const mkStakingValidatorFromSP: (params: StakingParamsSP) => SpendingValidator;
|
|
1923
|
+
|
|
1870
1924
|
declare const InterestOracleParamsSchema: _lucid_evolution_lucid.TObject<{
|
|
1871
1925
|
/** Milliseconds */
|
|
1872
1926
|
biasTime: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
@@ -2872,55 +2926,6 @@ declare const PriceOracleParamsSchema: _lucid_evolution_lucid.TObject<{
|
|
|
2872
2926
|
type PriceOracleParams = Data.Static<typeof PriceOracleParamsSchema>;
|
|
2873
2927
|
declare function castPriceOracleParams(params: PriceOracleParams): Data;
|
|
2874
2928
|
|
|
2875
|
-
/** SP Parameters */
|
|
2876
|
-
declare const StabilityPoolParamsSchema: _lucid_evolution_lucid.TObject<{
|
|
2877
|
-
assetSymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2878
|
-
stabilityPoolToken: _lucid_evolution_lucid.TObject<{
|
|
2879
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2880
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2881
|
-
}>;
|
|
2882
|
-
snapshotEpochToScaleToSumToken: _lucid_evolution_lucid.TObject<{
|
|
2883
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2884
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2885
|
-
}>;
|
|
2886
|
-
accountToken: _lucid_evolution_lucid.TObject<{
|
|
2887
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2888
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2889
|
-
}>;
|
|
2890
|
-
cdpToken: _lucid_evolution_lucid.TObject<{
|
|
2891
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2892
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2893
|
-
}>;
|
|
2894
|
-
iAssetAuthToken: _lucid_evolution_lucid.TObject<{
|
|
2895
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2896
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2897
|
-
}>;
|
|
2898
|
-
versionRecordToken: _lucid_evolution_lucid.TObject<{
|
|
2899
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2900
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2901
|
-
}>;
|
|
2902
|
-
iassetValHash: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2903
|
-
accountCreateFeeLovelaces: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
2904
|
-
accountProcessingCooldownMs: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
2905
|
-
accountProcessingBiasMs: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
2906
|
-
stakeCredential: _lucid_evolution_lucid.TUnsafe<{
|
|
2907
|
-
Inline: [{
|
|
2908
|
-
PublicKeyCredential: [string];
|
|
2909
|
-
} | {
|
|
2910
|
-
ScriptCredential: [string];
|
|
2911
|
-
}];
|
|
2912
|
-
} | {
|
|
2913
|
-
Pointer: [{
|
|
2914
|
-
slotNumber: bigint;
|
|
2915
|
-
transactionIndex: bigint;
|
|
2916
|
-
certificateIndex: bigint;
|
|
2917
|
-
}];
|
|
2918
|
-
} | null>;
|
|
2919
|
-
}>;
|
|
2920
|
-
type StabilityPoolParams = Data.Static<typeof StabilityPoolParamsSchema>;
|
|
2921
|
-
declare const StabilityPoolParams: StabilityPoolParams;
|
|
2922
|
-
declare function castStabilityPoolParams(params: StabilityPoolParams): Data;
|
|
2923
|
-
|
|
2924
2929
|
declare const RobOrderTypeSchema: TSchema.Union<[TSchema.Struct<{
|
|
2925
2930
|
BuyIAssetOrder: TSchema.Struct<{
|
|
2926
2931
|
collateralAsset: TSchema.Struct<{
|
|
@@ -3653,4 +3658,4 @@ declare function mkAuthTokenPolicy(ac: AssetClass, tn: string): MintingPolicy;
|
|
|
3653
3658
|
|
|
3654
3659
|
declare const alwaysFailValidator: SpendingValidator;
|
|
3655
3660
|
|
|
3656
|
-
export { type AccountAction, type AccountContent, AccountContentSchema, type ActionReturnDatum, type AddCollateralAsssetContent, type AddressCredential, type AddressCredentialOrDatum, type AddressSP, AikenIntervalIntervalBound, AikenIntervalIntervalBoundType, type Amount, type AssetClassD, type AssetClassSP, AssetClassSchema, type AssetInfo, type AssetSnapshot, type AssetState, type AuthTokenPolicies, BASE_MAX_EXECUTION_FEE, BASE_MAX_TX_FEE, BigIntOrd, type CDPContent, CDPCreatorParams, type CDPCreatorParamsSP, type CDPDatum, CardanoTransactionValidityRange, type CdpParams, type CdpParamsSP, type CdpRedeemParams, type CdpRedeemParamsSP, type CdpRedeemer, type CollateralAssetContent, type CollateralAssetInfo, type CollateralAssetOutput, type CollectorParamsSP, type CollectorRedeemer, CollectorRedeemerSchema, CredentialD, CredentialSchema, type CurrencySymbolSP, DEFAULT_INIT_OPTIONS, type DerivedPythPrice, type DerivedPythPriceSP, DerivedPythPriceSchema, type E2S2SIndex, type E2S2SIndicesPerAsset, type EpochToScaleKey, type EpochToScaleToSumEntry, type ExecuteDatum, ExecuteParams, type ExecuteParamsSP, type Feed, type FindE2S2SIdxResult, type GovDatum, GovParams, type GovParamsSP, type GovRedeemer, type IAssetContent, type IAssetDatum, type IAssetOutput, type IAssetParamsSP, type IAssetPriceInfo, IAssetPriceInfoSchema, type IAssetRedeemer, INIT_TOKEN_NAMES, type IndigoOracleNftParam, type InitialAssetParam, type InitialCollateralAssetParam, type InitialStablepoolParam, type InitializeOptions, type Input, type InterestCollectionDatum, type InterestCollectionParams, type InterestCollectionParamsSP, InterestCollectionParamsSchema, type InterestCollectionRedeemer, type InterestOracleDatum, InterestOracleDatumSchema, type InterestOracleParams, InterestOracleParamsSchema, type InterestOracleRedeemer, MAX_E2S2S_ENTRIES_COUNT, MIN_ROB_COLLATERAL_AMT, type MarketSession, type ModifyStableswapPoolContent, ONE_DAY, ONE_HOUR, ONE_SECOND, ONE_YEAR, type OracleIdx, OracleIdxSchema, type Output, PRICE_UPDATE_MAGIC, type ParsedOutput, PollManagerParams, type PollManagerParamsSP, PollShardParams, type PollShardParamsSP, type PriceOracleDatum, type PriceOracleParam, type PriceOracleParams, PriceOracleParamsSchema, type PriceOracleRedeemer, type PriceUpdate, type ProcessRequestAccountContent, type ProposalContent, ProposalContentSchema, type ProposeAssetContent, type ProposeStableswapPoolContent, type ProtocolParams, ProtocolParamsSchema, type PubKeyHash, type PythConfig, type PythConfiguration, type PythFeedConfig, type PythFeedParams, type PythFeedParamsSP, type PythFeedRedeemer, type PythMessageParts, type PythOracleParam, type PythPriceConfigurationSP, type PythStateDatum, type PythUpdatesRedeemer, type Rational, RationalSchema, type RedeemCdpWithdrawalRedeemer, type RobDatum, type RobOrderType, type RobOutput, type RobParams, type RobParamsSP, RobParamsSchema, type RobRedeemer, SOLANA_FORMAT_MAGIC, type SPInteger, SPIntegerSchema, type ScriptCredential, type ScriptOutput, type ScriptRef, type ScriptReference, type ScriptReferences, type SnapshotEpochToScaleToSumContent, SnapshotEpochToScaleToSumContentSchema, type StabilityPoolContent, StabilityPoolContentSchema, StabilityPoolDatumSchema, StabilityPoolParams, type StabilityPoolParamsSP, type StabilityPoolRedeemer, StabilityPoolRedeemerSchema, type StableswapOrderDatum, StableswapOrderDatumSchema, type StableswapOrderRedeemer, type StableswapOutputDatum, type StableswapParamsSP, type StableswapPoolContent, StakeCredential, StakeCredentialSchema, type StakingManager, type StakingManagerOutput, type StakingParamsSP, type StakingPosLockedAmt, type StakingPosition, type StakingPositionOutput, type StakingRedeemer, type StartTime, type StateSnapshot, type SumSnapshot, type SystemParams, type TokenNameSP, type TreasuryParamsSP, type TreasuryWithdrawal, type TreasuryWithdrawalItem, TreasuryWithdrawalSchema, type UpgradePaths, type ValidatorHashes, VerificationKeyHashSchema, type VersionRecordParams, VersionRecordTokenParams, addrDetails, adjustCdp, adjustPriceToDecimals, adjustRob, adjustStakingPosition, alwaysFailValidator, annulRequest, balance, batchCollectInterest, batchProcessStableswapOrders, bigintMax, bigintMin, buildRedemptionsTx, burnCdp, calculateAccruedInterest, calculateAdaReward, calculateIAssetRedemptionAmt, calculateMinCollateralCappedIAssetRedemptionAmt, calculateUnitaryInterest, calculateUnitaryInterestSinceOracleLastUpdated, cancelRob, cancelStableswapOrder, castCDPCreatorParams, castCdpParams, castCdpRedeemParams, castExecuteParams, castGovParams, castInterestCollectionParams, castInterestOracleParams, castPollManagerParams, castPollShardParams, castPriceOracleParams, castRobParams, castStabilityPoolParams, castStakingParams, castVersionRecordTokenParams, cdpCollateralRatioPercentage, claimRob, closeCdp, closeStakingPosition, collectInterestTx, collectorFeeTx, createDestinationDatum, createE2s2sSnapshots, createProcessRequestAccountRedeemer, createProposal, createScriptAddress, createShardsChunks, createStableswapOrder, decodePriceUpdate, decodePythMessage, depositCdp, deriveAuthToken, distributeAda, distributeInterest, distributeReward, divideOnChainCompatible, encodePriceUpdate, encodePythMessage, encodeSignedPythMessage, endProposal, estimateUtxoMinLovelace, executeProposal, feedInterestOracle, feedPriceOracleTx, findRelevantE2s2sIdxs, findStakingManager, findStakingManagerByOutRef, findStakingPositionByOutRef, freezeCdp, fromDataDerivedPythPrice, fromDecimal, fromSPInteger, fromSysParamsCredential, fromSysParamsDerivedPythPrice, fromSysParamsPythFeedParams, fromSysParamsStakeCredential, fromSystemParamsAsset, fromSystemParamsAssetLucid, fromSystemParamsScriptRef, getAssetClassComparisonStr, getInlineDatumOrThrow, getPythFeedConfig, getRandomElement, getUpdatedAccountDeposit, handleOracleForCollateralAsset, init, initCDPCreator, initCollector, initGovernance, initInterestCollector, initPythConfig, initScriptRef, initSpState, initStakingManager, initSumVal, initTreasury, initializeAsset, insertSorted, isFullyRedeemed, isSameEpochToScaleKey, liquidateCdp, liquidationHelper, loadSystemParamsFromFile, loadSystemParamsFromUrl, matchSingle, mergeCdps, mergeShards, mintAuthTokenDirect, mintCdp, mintOneTimeAsset, mintOneTimeToken, mkAuthTokenPolicy, mkCDPCreatorValidator, mkCDPCreatorValidatorFromSP, mkCdpRedeemValidatorFromSP, mkCdpValidatorFromSP, mkCollectorValidatorFromSP, mkExecuteValidator, mkExecuteValidatorFromSP, mkIAssetTokenPolicy, mkInterestCollectionValidator, mkInterestCollectionValidatorFromSP, mkInterestOracleValidator, mkPollManagerValidator, mkPollManagerValidatorFromSP, mkPollShardValidator, mkPollShardValidatorFromSP, mkPriceOracleValidator, mkPythFeedValidator, mkRobValidator, mkRobValidatorFromSP, mkSPInteger, mkStabilityPoolAddr, mkTreasuryAddr, mkTreasuryValidatorFromSP, mkVersionRecordTokenPolicy, mkVersionRegistryValidator, oneShotMintTx, openCdp, openRob, openStakingPosition, parseAccountDatum, parseAccountDatumOrThrow, parseCdpDatum, parseCdpDatumOrThrow, parseCollateralAssetDatum, parseCollateralAssetDatumOrThrow, parseExecuteDatum, parseExecuteDatumOrThrow, parseGovDatum, parseGovDatumOrThrow, parseIAssetDatum, parseIAssetDatumOrThrow, parseInterestCollectionDatum, parseInterestOracleDatum, parsePriceOracleDatum, parsePythStateDatum, parseRobDatum, parseRobDatumOrThrow, parseRobRedeemer, parseRobRedeemerOrThrow, parseSnapshotEpochToScaleToSumDatum, parseSnapshotEpochToScaleToSumDatumOrThrow, parseStabilityPoolDatum, parseStabilityPoolDatumOrThrow, parseStableswapOrderDatum, parseStableswapOrderDatumOrThrow, parseStableswapOrderRedeemer, parseStableswapOrderRedeemerOrThrow, parseStableswapPoolDatum, parseStableswapPoolDatumOrThrow, parseStakingManagerDatum, parseStakingPosition, parseStakingPositionOrThrow, partitionEpochToScaleToSums, processSpRequest, rationalAdd, rationalCeil, rationalDiv, rationalFloor, rationalFromInt, rationalMul, rationalNegate, rationalSub, rationalToFloat, rationalZero, redeemCdp, redeemRob, repsertReadonlyArr, repsertWithReadonlyArr, requestSpAccountAdjustment, requestSpAccountClosure, requestSpAccountCreation, rewardSnapshotPrecision, robAmountToSpend, runCreateScriptRefTx, runOneShotMintTx, scriptRef, serialiseActionReturnDatum, serialiseCdpDatum, serialiseCdpRedeemer, serialiseCollectorRedeemer, serialiseExecuteDatum, serialiseFeedInterestOracleRedeemer, serialiseGovDatum, serialiseGovRedeemer, serialiseIAssetDatum, serialiseIAssetRedeemer, serialiseInterestCollectionDatum, serialiseInterestCollectionRedeemer, serialiseInterestOracleDatum, serialisePriceOracleDatum, serialisePriceOracleRedeemer, serialisePythFeedParams, serialisePythFeedRedeemer, serialisePythStateDatum, serialisePythUpdatesRedeemer, serialiseRedeemCdpWithdrawalRedeemer, serialiseRobDatum, serialiseRobRedeemer, serialiseStabilityPoolDatum, serialiseStabilityPoolRedeemer, serialiseStableswapOrderDatum, serialiseStableswapOrderRedeemer, serialiseStableswapOutputDatum, serialiseStableswapPoolDatum, serialiseStakingDatum, serialiseStakingRedeemer, shuffle, signersAllOf, spAdd, spDiv, spMul, spSub, spZeroNegatives, startInterestOracle, startPriceOracleTx, submitTx, sum, toAssetClassFromLucid, toDataDerivedPythPrice, toSystemParamsAsset, treasuryCollect, treasuryFeeTx, treasuryMerge, treasuryPrepareWithdrawal, treasurySplit, updateAccount, updatePermissions, updatePoolStateWhenWithdrawalFee, updateStableswapPoolFees, updateStakingLockedAmount, vote, withdrawCdp, zeroNegatives };
|
|
3661
|
+
export { type AccountAction, type AccountContent, AccountContentSchema, type ActionReturnDatum, type AddCollateralAsssetContent, type AddressCredential, type AddressCredentialOrDatum, type AddressSP, AikenIntervalIntervalBound, AikenIntervalIntervalBoundType, type Amount, type AssetClassD, type AssetClassSP, AssetClassSchema, type AssetInfo, type AssetSnapshot, type AssetState, type AuthTokenPolicies, BASE_MAX_EXECUTION_FEE, BASE_MAX_TX_FEE, BigIntOrd, type CDPContent, CDPCreatorParams, type CDPCreatorParamsSP, type CDPDatum, CardanoTransactionValidityRange, type CdpParams, type CdpParamsSP, type CdpRedeemParams, type CdpRedeemParamsSP, type CdpRedeemer, type CollateralAssetContent, type CollateralAssetInfo, type CollateralAssetOutput, type CollectorParamsSP, type CollectorRedeemer, CollectorRedeemerSchema, CredentialD, CredentialSchema, type CurrencySymbolSP, DEFAULT_INIT_OPTIONS, type DerivedPythPrice, type DerivedPythPriceSP, DerivedPythPriceSchema, type E2S2SIndex, type E2S2SIndicesPerAsset, type EpochToScaleKey, type EpochToScaleToSumEntry, type ExecuteDatum, ExecuteParams, type ExecuteParamsSP, type Feed, type FindE2S2SIdxResult, type GovDatum, GovParams, type GovParamsSP, type GovRedeemer, type IAssetContent, type IAssetDatum, type IAssetOutput, type IAssetParamsSP, type IAssetPriceInfo, IAssetPriceInfoSchema, type IAssetRedeemer, INIT_TOKEN_NAMES, type IndigoOracleNftParam, type InitialAssetParam, type InitialCollateralAssetParam, type InitialStablepoolParam, type InitializeOptions, type Input, type InterestCollectionDatum, type InterestCollectionParams, type InterestCollectionParamsSP, InterestCollectionParamsSchema, type InterestCollectionRedeemer, type InterestOracleDatum, InterestOracleDatumSchema, type InterestOracleParams, InterestOracleParamsSchema, type InterestOracleRedeemer, MAX_E2S2S_ENTRIES_COUNT, MIN_ROB_COLLATERAL_AMT, type MarketSession, type ModifyStableswapPoolContent, ONE_DAY, ONE_HOUR, ONE_SECOND, ONE_YEAR, type OracleIdx, OracleIdxSchema, type Output, PRICE_UPDATE_MAGIC, type ParsedOutput, PollManagerParams, type PollManagerParamsSP, PollShardParams, type PollShardParamsSP, type PriceOracleDatum, type PriceOracleParam, type PriceOracleParams, PriceOracleParamsSchema, type PriceOracleRedeemer, type PriceUpdate, type ProcessRequestAccountContent, type ProposalContent, ProposalContentSchema, type ProposeAssetContent, type ProposeStableswapPoolContent, type ProtocolParams, ProtocolParamsSchema, type PubKeyHash, type PythConfig, type PythConfiguration, type PythFeedConfig, type PythFeedParams, type PythFeedParamsSP, type PythFeedRedeemer, type PythMessageParts, type PythOracleParam, type PythPriceConfigurationSP, type PythStateDatum, type PythUpdatesRedeemer, type Rational, RationalSchema, type RedeemCdpWithdrawalRedeemer, type RobDatum, type RobOrderType, type RobOutput, type RobParams, type RobParamsSP, RobParamsSchema, type RobRedeemer, SOLANA_FORMAT_MAGIC, type SPInteger, SPIntegerSchema, type ScriptCredential, type ScriptOutput, type ScriptRef, type ScriptReference, type ScriptReferences, type SnapshotEpochToScaleToSumContent, SnapshotEpochToScaleToSumContentSchema, type StabilityPoolContent, StabilityPoolContentSchema, StabilityPoolDatumSchema, StabilityPoolParams, type StabilityPoolParamsSP, type StabilityPoolRedeemer, StabilityPoolRedeemerSchema, type StableswapOrderDatum, StableswapOrderDatumSchema, type StableswapOrderRedeemer, type StableswapOutputDatum, type StableswapParamsSP, type StableswapPoolContent, StakeCredential, StakeCredentialSchema, type StakingManager, type StakingManagerOutput, type StakingParamsSP, type StakingPosLockedAmt, type StakingPosition, type StakingPositionOutput, type StakingRedeemer, type StartTime, type StateSnapshot, type SumSnapshot, type SystemParams, type TokenNameSP, type TreasuryParamsSP, type TreasuryWithdrawal, type TreasuryWithdrawalItem, TreasuryWithdrawalSchema, type UpgradePaths, type ValidatorHashes, VerificationKeyHashSchema, type VersionRecordParams, VersionRecordTokenParams, addrDetails, adjustCdp, adjustPriceToDecimals, adjustRob, adjustStakingPosition, alwaysFailValidator, annulRequest, balance, batchCollectInterest, batchProcessStableswapOrders, bigintMax, bigintMin, buildRedemptionsTx, burnCdp, calculateAccruedInterest, calculateAdaReward, calculateIAssetRedemptionAmt, calculateMinCollateralCappedIAssetRedemptionAmt, calculateUnitaryInterest, calculateUnitaryInterestSinceOracleLastUpdated, cancelRob, cancelStableswapOrder, castCDPCreatorParams, castCdpParams, castCdpRedeemParams, castExecuteParams, castGovParams, castInterestCollectionParams, castInterestOracleParams, castPollManagerParams, castPollShardParams, castPriceOracleParams, castRobParams, castStabilityPoolParams, castStakingParams, castVersionRecordTokenParams, cdpCollateralRatioPercentage, claimRob, closeCdp, closeStakingPosition, collectInterestTx, collectorFeeTx, createDestinationDatum, createE2s2sSnapshots, createProcessRequestAccountRedeemer, createProposal, createScriptAddress, createShardsChunks, createStableswapOrder, decodePriceUpdate, decodePythMessage, depositCdp, deriveAuthToken, distributeAda, distributeInterest, distributeReward, divideOnChainCompatible, encodePriceUpdate, encodePythMessage, encodeSignedPythMessage, endProposal, estimateUtxoMinLovelace, executeProposal, feedInterestOracle, feedPriceOracleTx, findRelevantE2s2sIdxs, findStakingManager, findStakingManagerByOutRef, findStakingPositionByOutRef, freezeCdp, fromDataDerivedPythPrice, fromDecimal, fromSPInteger, fromSysParamsCredential, fromSysParamsDerivedPythPrice, fromSysParamsPythFeedParams, fromSysParamsStakeCredential, fromSystemParamsAsset, fromSystemParamsAssetLucid, fromSystemParamsScriptRef, getAssetClassComparisonStr, getInlineDatumOrThrow, getPythFeedConfig, getRandomElement, getUpdatedAccountDeposit, handleOracleForCollateralAsset, init, initCDPCreator, initCollector, initGovernance, initInterestCollector, initPythConfig, initScriptRef, initSpState, initStakingManager, initSumVal, initTreasury, initializeAsset, insertSorted, isFullyRedeemed, isSameEpochToScaleKey, liquidateCdp, liquidationHelper, loadSystemParamsFromFile, loadSystemParamsFromUrl, matchSingle, mergeCdps, mergeShards, mintAuthTokenDirect, mintCdp, mintOneTimeAsset, mintOneTimeToken, mkAuthTokenPolicy, mkCDPCreatorValidator, mkCDPCreatorValidatorFromSP, mkCdpRedeemValidatorFromSP, mkCdpValidatorFromSP, mkCollectorValidatorFromSP, mkExecuteValidator, mkExecuteValidatorFromSP, mkIAssetTokenPolicy, mkInterestCollectionValidator, mkInterestCollectionValidatorFromSP, mkInterestOracleValidator, mkPollManagerValidator, mkPollManagerValidatorFromSP, mkPollShardValidator, mkPollShardValidatorFromSP, mkPriceOracleValidator, mkPythFeedValidator, mkRobValidator, mkRobValidatorFromSP, mkSPInteger, mkStabilityPoolAddr, mkStabilityPoolValidator, mkStabilityPoolValidatorFromSP, mkStakingValidatorFromSP, mkTreasuryAddr, mkTreasuryValidatorFromSP, mkVersionRecordTokenPolicy, mkVersionRegistryValidator, oneShotMintTx, openCdp, openRob, openStakingPosition, parseAccountDatum, parseAccountDatumOrThrow, parseCdpDatum, parseCdpDatumOrThrow, parseCollateralAssetDatum, parseCollateralAssetDatumOrThrow, parseExecuteDatum, parseExecuteDatumOrThrow, parseGovDatum, parseGovDatumOrThrow, parseIAssetDatum, parseIAssetDatumOrThrow, parseInterestCollectionDatum, parseInterestOracleDatum, parsePriceOracleDatum, parsePythStateDatum, parseRobDatum, parseRobDatumOrThrow, parseRobRedeemer, parseRobRedeemerOrThrow, parseSnapshotEpochToScaleToSumDatum, parseSnapshotEpochToScaleToSumDatumOrThrow, parseStabilityPoolDatum, parseStabilityPoolDatumOrThrow, parseStableswapOrderDatum, parseStableswapOrderDatumOrThrow, parseStableswapOrderRedeemer, parseStableswapOrderRedeemerOrThrow, parseStableswapPoolDatum, parseStableswapPoolDatumOrThrow, parseStakingManagerDatum, parseStakingPosition, parseStakingPositionOrThrow, partitionEpochToScaleToSums, processSpRequest, rationalAdd, rationalCeil, rationalDiv, rationalFloor, rationalFromInt, rationalMul, rationalNegate, rationalSub, rationalToFloat, rationalZero, redeemCdp, redeemRob, repsertReadonlyArr, repsertWithReadonlyArr, requestSpAccountAdjustment, requestSpAccountClosure, requestSpAccountCreation, rewardSnapshotPrecision, robAmountToSpend, runCreateScriptRefTx, runOneShotMintTx, scriptRef, serialiseActionReturnDatum, serialiseCdpDatum, serialiseCdpRedeemer, serialiseCollectorRedeemer, serialiseExecuteDatum, serialiseFeedInterestOracleRedeemer, serialiseGovDatum, serialiseGovRedeemer, serialiseIAssetDatum, serialiseIAssetRedeemer, serialiseInterestCollectionDatum, serialiseInterestCollectionRedeemer, serialiseInterestOracleDatum, serialisePriceOracleDatum, serialisePriceOracleRedeemer, serialisePythFeedParams, serialisePythFeedRedeemer, serialisePythStateDatum, serialisePythUpdatesRedeemer, serialiseRedeemCdpWithdrawalRedeemer, serialiseRobDatum, serialiseRobRedeemer, serialiseStabilityPoolDatum, serialiseStabilityPoolRedeemer, serialiseStableswapOrderDatum, serialiseStableswapOrderRedeemer, serialiseStableswapOutputDatum, serialiseStableswapPoolDatum, serialiseStakingDatum, serialiseStakingRedeemer, shuffle, signersAllOf, spAdd, spDiv, spMul, spSub, spZeroNegatives, startInterestOracle, startPriceOracleTx, submitTx, sum, toAssetClassFromLucid, toDataDerivedPythPrice, toSystemParamsAsset, treasuryCollect, treasuryFeeTx, treasuryMerge, treasuryPrepareWithdrawal, treasurySplit, updateAccount, updatePermissions, updatePoolStateWhenWithdrawalFee, updateStableswapPoolFees, updateStakingLockedAmount, vote, withdrawCdp, zeroNegatives };
|
package/dist/index.d.ts
CHANGED
|
@@ -1761,6 +1761,58 @@ allE2s2sSnapshotOrefs: OutRef[], sysParams: SystemParams, lucid: LucidEvolution,
|
|
|
1761
1761
|
declare function createE2s2sSnapshots(stabilityPoolOref: OutRef, sysParams: SystemParams, lucid: LucidEvolution): Promise<TxBuilder>;
|
|
1762
1762
|
declare function annulRequest(accountUtxo: UTxO, params: SystemParams, lucid: LucidEvolution): Promise<TxBuilder>;
|
|
1763
1763
|
|
|
1764
|
+
/** SP Parameters */
|
|
1765
|
+
declare const StabilityPoolParamsSchema: _lucid_evolution_lucid.TObject<{
|
|
1766
|
+
assetSymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1767
|
+
stabilityPoolToken: _lucid_evolution_lucid.TObject<{
|
|
1768
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1769
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1770
|
+
}>;
|
|
1771
|
+
snapshotEpochToScaleToSumToken: _lucid_evolution_lucid.TObject<{
|
|
1772
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1773
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1774
|
+
}>;
|
|
1775
|
+
accountToken: _lucid_evolution_lucid.TObject<{
|
|
1776
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1777
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1778
|
+
}>;
|
|
1779
|
+
cdpToken: _lucid_evolution_lucid.TObject<{
|
|
1780
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1781
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1782
|
+
}>;
|
|
1783
|
+
iAssetAuthToken: _lucid_evolution_lucid.TObject<{
|
|
1784
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1785
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1786
|
+
}>;
|
|
1787
|
+
versionRecordToken: _lucid_evolution_lucid.TObject<{
|
|
1788
|
+
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1789
|
+
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1790
|
+
}>;
|
|
1791
|
+
iassetValHash: _lucid_evolution_lucid.TUnsafe<string>;
|
|
1792
|
+
accountCreateFeeLovelaces: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
1793
|
+
accountProcessingCooldownMs: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
1794
|
+
accountProcessingBiasMs: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
1795
|
+
stakeCredential: _lucid_evolution_lucid.TUnsafe<{
|
|
1796
|
+
Inline: [{
|
|
1797
|
+
PublicKeyCredential: [string];
|
|
1798
|
+
} | {
|
|
1799
|
+
ScriptCredential: [string];
|
|
1800
|
+
}];
|
|
1801
|
+
} | {
|
|
1802
|
+
Pointer: [{
|
|
1803
|
+
slotNumber: bigint;
|
|
1804
|
+
transactionIndex: bigint;
|
|
1805
|
+
certificateIndex: bigint;
|
|
1806
|
+
}];
|
|
1807
|
+
} | null>;
|
|
1808
|
+
}>;
|
|
1809
|
+
type StabilityPoolParams = Data.Static<typeof StabilityPoolParamsSchema>;
|
|
1810
|
+
declare const StabilityPoolParams: StabilityPoolParams;
|
|
1811
|
+
declare function castStabilityPoolParams(params: StabilityPoolParams): Data;
|
|
1812
|
+
|
|
1813
|
+
declare const mkStabilityPoolValidator: (params: StabilityPoolParams) => SpendingValidator;
|
|
1814
|
+
declare const mkStabilityPoolValidatorFromSP: (params: StabilityPoolParamsSP) => SpendingValidator;
|
|
1815
|
+
|
|
1764
1816
|
declare function openStakingPosition(amount: bigint, params: SystemParams, lucid: LucidEvolution, stakingManagerRef?: OutRef): Promise<TxBuilder>;
|
|
1765
1817
|
declare function adjustStakingPosition(stakingPositionRef: OutRef, amount: bigint, params: SystemParams, lucid: LucidEvolution, currentSlot: number, stakingManagerRef?: OutRef): Promise<TxBuilder>;
|
|
1766
1818
|
declare function closeStakingPosition(stakingPositionRef: OutRef, params: SystemParams, lucid: LucidEvolution, currentSlot: number, stakingManagerRef?: OutRef): Promise<TxBuilder>;
|
|
@@ -1867,6 +1919,8 @@ type StakingParams = Data.Static<typeof StakingParamsSchema>;
|
|
|
1867
1919
|
declare const StakingParams: StakingParams;
|
|
1868
1920
|
declare function castStakingParams(params: StakingParams): Data;
|
|
1869
1921
|
|
|
1922
|
+
declare const mkStakingValidatorFromSP: (params: StakingParamsSP) => SpendingValidator;
|
|
1923
|
+
|
|
1870
1924
|
declare const InterestOracleParamsSchema: _lucid_evolution_lucid.TObject<{
|
|
1871
1925
|
/** Milliseconds */
|
|
1872
1926
|
biasTime: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
@@ -2872,55 +2926,6 @@ declare const PriceOracleParamsSchema: _lucid_evolution_lucid.TObject<{
|
|
|
2872
2926
|
type PriceOracleParams = Data.Static<typeof PriceOracleParamsSchema>;
|
|
2873
2927
|
declare function castPriceOracleParams(params: PriceOracleParams): Data;
|
|
2874
2928
|
|
|
2875
|
-
/** SP Parameters */
|
|
2876
|
-
declare const StabilityPoolParamsSchema: _lucid_evolution_lucid.TObject<{
|
|
2877
|
-
assetSymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2878
|
-
stabilityPoolToken: _lucid_evolution_lucid.TObject<{
|
|
2879
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2880
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2881
|
-
}>;
|
|
2882
|
-
snapshotEpochToScaleToSumToken: _lucid_evolution_lucid.TObject<{
|
|
2883
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2884
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2885
|
-
}>;
|
|
2886
|
-
accountToken: _lucid_evolution_lucid.TObject<{
|
|
2887
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2888
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2889
|
-
}>;
|
|
2890
|
-
cdpToken: _lucid_evolution_lucid.TObject<{
|
|
2891
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2892
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2893
|
-
}>;
|
|
2894
|
-
iAssetAuthToken: _lucid_evolution_lucid.TObject<{
|
|
2895
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2896
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2897
|
-
}>;
|
|
2898
|
-
versionRecordToken: _lucid_evolution_lucid.TObject<{
|
|
2899
|
-
currencySymbol: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2900
|
-
tokenName: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2901
|
-
}>;
|
|
2902
|
-
iassetValHash: _lucid_evolution_lucid.TUnsafe<string>;
|
|
2903
|
-
accountCreateFeeLovelaces: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
2904
|
-
accountProcessingCooldownMs: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
2905
|
-
accountProcessingBiasMs: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
2906
|
-
stakeCredential: _lucid_evolution_lucid.TUnsafe<{
|
|
2907
|
-
Inline: [{
|
|
2908
|
-
PublicKeyCredential: [string];
|
|
2909
|
-
} | {
|
|
2910
|
-
ScriptCredential: [string];
|
|
2911
|
-
}];
|
|
2912
|
-
} | {
|
|
2913
|
-
Pointer: [{
|
|
2914
|
-
slotNumber: bigint;
|
|
2915
|
-
transactionIndex: bigint;
|
|
2916
|
-
certificateIndex: bigint;
|
|
2917
|
-
}];
|
|
2918
|
-
} | null>;
|
|
2919
|
-
}>;
|
|
2920
|
-
type StabilityPoolParams = Data.Static<typeof StabilityPoolParamsSchema>;
|
|
2921
|
-
declare const StabilityPoolParams: StabilityPoolParams;
|
|
2922
|
-
declare function castStabilityPoolParams(params: StabilityPoolParams): Data;
|
|
2923
|
-
|
|
2924
2929
|
declare const RobOrderTypeSchema: TSchema.Union<[TSchema.Struct<{
|
|
2925
2930
|
BuyIAssetOrder: TSchema.Struct<{
|
|
2926
2931
|
collateralAsset: TSchema.Struct<{
|
|
@@ -3653,4 +3658,4 @@ declare function mkAuthTokenPolicy(ac: AssetClass, tn: string): MintingPolicy;
|
|
|
3653
3658
|
|
|
3654
3659
|
declare const alwaysFailValidator: SpendingValidator;
|
|
3655
3660
|
|
|
3656
|
-
export { type AccountAction, type AccountContent, AccountContentSchema, type ActionReturnDatum, type AddCollateralAsssetContent, type AddressCredential, type AddressCredentialOrDatum, type AddressSP, AikenIntervalIntervalBound, AikenIntervalIntervalBoundType, type Amount, type AssetClassD, type AssetClassSP, AssetClassSchema, type AssetInfo, type AssetSnapshot, type AssetState, type AuthTokenPolicies, BASE_MAX_EXECUTION_FEE, BASE_MAX_TX_FEE, BigIntOrd, type CDPContent, CDPCreatorParams, type CDPCreatorParamsSP, type CDPDatum, CardanoTransactionValidityRange, type CdpParams, type CdpParamsSP, type CdpRedeemParams, type CdpRedeemParamsSP, type CdpRedeemer, type CollateralAssetContent, type CollateralAssetInfo, type CollateralAssetOutput, type CollectorParamsSP, type CollectorRedeemer, CollectorRedeemerSchema, CredentialD, CredentialSchema, type CurrencySymbolSP, DEFAULT_INIT_OPTIONS, type DerivedPythPrice, type DerivedPythPriceSP, DerivedPythPriceSchema, type E2S2SIndex, type E2S2SIndicesPerAsset, type EpochToScaleKey, type EpochToScaleToSumEntry, type ExecuteDatum, ExecuteParams, type ExecuteParamsSP, type Feed, type FindE2S2SIdxResult, type GovDatum, GovParams, type GovParamsSP, type GovRedeemer, type IAssetContent, type IAssetDatum, type IAssetOutput, type IAssetParamsSP, type IAssetPriceInfo, IAssetPriceInfoSchema, type IAssetRedeemer, INIT_TOKEN_NAMES, type IndigoOracleNftParam, type InitialAssetParam, type InitialCollateralAssetParam, type InitialStablepoolParam, type InitializeOptions, type Input, type InterestCollectionDatum, type InterestCollectionParams, type InterestCollectionParamsSP, InterestCollectionParamsSchema, type InterestCollectionRedeemer, type InterestOracleDatum, InterestOracleDatumSchema, type InterestOracleParams, InterestOracleParamsSchema, type InterestOracleRedeemer, MAX_E2S2S_ENTRIES_COUNT, MIN_ROB_COLLATERAL_AMT, type MarketSession, type ModifyStableswapPoolContent, ONE_DAY, ONE_HOUR, ONE_SECOND, ONE_YEAR, type OracleIdx, OracleIdxSchema, type Output, PRICE_UPDATE_MAGIC, type ParsedOutput, PollManagerParams, type PollManagerParamsSP, PollShardParams, type PollShardParamsSP, type PriceOracleDatum, type PriceOracleParam, type PriceOracleParams, PriceOracleParamsSchema, type PriceOracleRedeemer, type PriceUpdate, type ProcessRequestAccountContent, type ProposalContent, ProposalContentSchema, type ProposeAssetContent, type ProposeStableswapPoolContent, type ProtocolParams, ProtocolParamsSchema, type PubKeyHash, type PythConfig, type PythConfiguration, type PythFeedConfig, type PythFeedParams, type PythFeedParamsSP, type PythFeedRedeemer, type PythMessageParts, type PythOracleParam, type PythPriceConfigurationSP, type PythStateDatum, type PythUpdatesRedeemer, type Rational, RationalSchema, type RedeemCdpWithdrawalRedeemer, type RobDatum, type RobOrderType, type RobOutput, type RobParams, type RobParamsSP, RobParamsSchema, type RobRedeemer, SOLANA_FORMAT_MAGIC, type SPInteger, SPIntegerSchema, type ScriptCredential, type ScriptOutput, type ScriptRef, type ScriptReference, type ScriptReferences, type SnapshotEpochToScaleToSumContent, SnapshotEpochToScaleToSumContentSchema, type StabilityPoolContent, StabilityPoolContentSchema, StabilityPoolDatumSchema, StabilityPoolParams, type StabilityPoolParamsSP, type StabilityPoolRedeemer, StabilityPoolRedeemerSchema, type StableswapOrderDatum, StableswapOrderDatumSchema, type StableswapOrderRedeemer, type StableswapOutputDatum, type StableswapParamsSP, type StableswapPoolContent, StakeCredential, StakeCredentialSchema, type StakingManager, type StakingManagerOutput, type StakingParamsSP, type StakingPosLockedAmt, type StakingPosition, type StakingPositionOutput, type StakingRedeemer, type StartTime, type StateSnapshot, type SumSnapshot, type SystemParams, type TokenNameSP, type TreasuryParamsSP, type TreasuryWithdrawal, type TreasuryWithdrawalItem, TreasuryWithdrawalSchema, type UpgradePaths, type ValidatorHashes, VerificationKeyHashSchema, type VersionRecordParams, VersionRecordTokenParams, addrDetails, adjustCdp, adjustPriceToDecimals, adjustRob, adjustStakingPosition, alwaysFailValidator, annulRequest, balance, batchCollectInterest, batchProcessStableswapOrders, bigintMax, bigintMin, buildRedemptionsTx, burnCdp, calculateAccruedInterest, calculateAdaReward, calculateIAssetRedemptionAmt, calculateMinCollateralCappedIAssetRedemptionAmt, calculateUnitaryInterest, calculateUnitaryInterestSinceOracleLastUpdated, cancelRob, cancelStableswapOrder, castCDPCreatorParams, castCdpParams, castCdpRedeemParams, castExecuteParams, castGovParams, castInterestCollectionParams, castInterestOracleParams, castPollManagerParams, castPollShardParams, castPriceOracleParams, castRobParams, castStabilityPoolParams, castStakingParams, castVersionRecordTokenParams, cdpCollateralRatioPercentage, claimRob, closeCdp, closeStakingPosition, collectInterestTx, collectorFeeTx, createDestinationDatum, createE2s2sSnapshots, createProcessRequestAccountRedeemer, createProposal, createScriptAddress, createShardsChunks, createStableswapOrder, decodePriceUpdate, decodePythMessage, depositCdp, deriveAuthToken, distributeAda, distributeInterest, distributeReward, divideOnChainCompatible, encodePriceUpdate, encodePythMessage, encodeSignedPythMessage, endProposal, estimateUtxoMinLovelace, executeProposal, feedInterestOracle, feedPriceOracleTx, findRelevantE2s2sIdxs, findStakingManager, findStakingManagerByOutRef, findStakingPositionByOutRef, freezeCdp, fromDataDerivedPythPrice, fromDecimal, fromSPInteger, fromSysParamsCredential, fromSysParamsDerivedPythPrice, fromSysParamsPythFeedParams, fromSysParamsStakeCredential, fromSystemParamsAsset, fromSystemParamsAssetLucid, fromSystemParamsScriptRef, getAssetClassComparisonStr, getInlineDatumOrThrow, getPythFeedConfig, getRandomElement, getUpdatedAccountDeposit, handleOracleForCollateralAsset, init, initCDPCreator, initCollector, initGovernance, initInterestCollector, initPythConfig, initScriptRef, initSpState, initStakingManager, initSumVal, initTreasury, initializeAsset, insertSorted, isFullyRedeemed, isSameEpochToScaleKey, liquidateCdp, liquidationHelper, loadSystemParamsFromFile, loadSystemParamsFromUrl, matchSingle, mergeCdps, mergeShards, mintAuthTokenDirect, mintCdp, mintOneTimeAsset, mintOneTimeToken, mkAuthTokenPolicy, mkCDPCreatorValidator, mkCDPCreatorValidatorFromSP, mkCdpRedeemValidatorFromSP, mkCdpValidatorFromSP, mkCollectorValidatorFromSP, mkExecuteValidator, mkExecuteValidatorFromSP, mkIAssetTokenPolicy, mkInterestCollectionValidator, mkInterestCollectionValidatorFromSP, mkInterestOracleValidator, mkPollManagerValidator, mkPollManagerValidatorFromSP, mkPollShardValidator, mkPollShardValidatorFromSP, mkPriceOracleValidator, mkPythFeedValidator, mkRobValidator, mkRobValidatorFromSP, mkSPInteger, mkStabilityPoolAddr, mkTreasuryAddr, mkTreasuryValidatorFromSP, mkVersionRecordTokenPolicy, mkVersionRegistryValidator, oneShotMintTx, openCdp, openRob, openStakingPosition, parseAccountDatum, parseAccountDatumOrThrow, parseCdpDatum, parseCdpDatumOrThrow, parseCollateralAssetDatum, parseCollateralAssetDatumOrThrow, parseExecuteDatum, parseExecuteDatumOrThrow, parseGovDatum, parseGovDatumOrThrow, parseIAssetDatum, parseIAssetDatumOrThrow, parseInterestCollectionDatum, parseInterestOracleDatum, parsePriceOracleDatum, parsePythStateDatum, parseRobDatum, parseRobDatumOrThrow, parseRobRedeemer, parseRobRedeemerOrThrow, parseSnapshotEpochToScaleToSumDatum, parseSnapshotEpochToScaleToSumDatumOrThrow, parseStabilityPoolDatum, parseStabilityPoolDatumOrThrow, parseStableswapOrderDatum, parseStableswapOrderDatumOrThrow, parseStableswapOrderRedeemer, parseStableswapOrderRedeemerOrThrow, parseStableswapPoolDatum, parseStableswapPoolDatumOrThrow, parseStakingManagerDatum, parseStakingPosition, parseStakingPositionOrThrow, partitionEpochToScaleToSums, processSpRequest, rationalAdd, rationalCeil, rationalDiv, rationalFloor, rationalFromInt, rationalMul, rationalNegate, rationalSub, rationalToFloat, rationalZero, redeemCdp, redeemRob, repsertReadonlyArr, repsertWithReadonlyArr, requestSpAccountAdjustment, requestSpAccountClosure, requestSpAccountCreation, rewardSnapshotPrecision, robAmountToSpend, runCreateScriptRefTx, runOneShotMintTx, scriptRef, serialiseActionReturnDatum, serialiseCdpDatum, serialiseCdpRedeemer, serialiseCollectorRedeemer, serialiseExecuteDatum, serialiseFeedInterestOracleRedeemer, serialiseGovDatum, serialiseGovRedeemer, serialiseIAssetDatum, serialiseIAssetRedeemer, serialiseInterestCollectionDatum, serialiseInterestCollectionRedeemer, serialiseInterestOracleDatum, serialisePriceOracleDatum, serialisePriceOracleRedeemer, serialisePythFeedParams, serialisePythFeedRedeemer, serialisePythStateDatum, serialisePythUpdatesRedeemer, serialiseRedeemCdpWithdrawalRedeemer, serialiseRobDatum, serialiseRobRedeemer, serialiseStabilityPoolDatum, serialiseStabilityPoolRedeemer, serialiseStableswapOrderDatum, serialiseStableswapOrderRedeemer, serialiseStableswapOutputDatum, serialiseStableswapPoolDatum, serialiseStakingDatum, serialiseStakingRedeemer, shuffle, signersAllOf, spAdd, spDiv, spMul, spSub, spZeroNegatives, startInterestOracle, startPriceOracleTx, submitTx, sum, toAssetClassFromLucid, toDataDerivedPythPrice, toSystemParamsAsset, treasuryCollect, treasuryFeeTx, treasuryMerge, treasuryPrepareWithdrawal, treasurySplit, updateAccount, updatePermissions, updatePoolStateWhenWithdrawalFee, updateStableswapPoolFees, updateStakingLockedAmount, vote, withdrawCdp, zeroNegatives };
|
|
3661
|
+
export { type AccountAction, type AccountContent, AccountContentSchema, type ActionReturnDatum, type AddCollateralAsssetContent, type AddressCredential, type AddressCredentialOrDatum, type AddressSP, AikenIntervalIntervalBound, AikenIntervalIntervalBoundType, type Amount, type AssetClassD, type AssetClassSP, AssetClassSchema, type AssetInfo, type AssetSnapshot, type AssetState, type AuthTokenPolicies, BASE_MAX_EXECUTION_FEE, BASE_MAX_TX_FEE, BigIntOrd, type CDPContent, CDPCreatorParams, type CDPCreatorParamsSP, type CDPDatum, CardanoTransactionValidityRange, type CdpParams, type CdpParamsSP, type CdpRedeemParams, type CdpRedeemParamsSP, type CdpRedeemer, type CollateralAssetContent, type CollateralAssetInfo, type CollateralAssetOutput, type CollectorParamsSP, type CollectorRedeemer, CollectorRedeemerSchema, CredentialD, CredentialSchema, type CurrencySymbolSP, DEFAULT_INIT_OPTIONS, type DerivedPythPrice, type DerivedPythPriceSP, DerivedPythPriceSchema, type E2S2SIndex, type E2S2SIndicesPerAsset, type EpochToScaleKey, type EpochToScaleToSumEntry, type ExecuteDatum, ExecuteParams, type ExecuteParamsSP, type Feed, type FindE2S2SIdxResult, type GovDatum, GovParams, type GovParamsSP, type GovRedeemer, type IAssetContent, type IAssetDatum, type IAssetOutput, type IAssetParamsSP, type IAssetPriceInfo, IAssetPriceInfoSchema, type IAssetRedeemer, INIT_TOKEN_NAMES, type IndigoOracleNftParam, type InitialAssetParam, type InitialCollateralAssetParam, type InitialStablepoolParam, type InitializeOptions, type Input, type InterestCollectionDatum, type InterestCollectionParams, type InterestCollectionParamsSP, InterestCollectionParamsSchema, type InterestCollectionRedeemer, type InterestOracleDatum, InterestOracleDatumSchema, type InterestOracleParams, InterestOracleParamsSchema, type InterestOracleRedeemer, MAX_E2S2S_ENTRIES_COUNT, MIN_ROB_COLLATERAL_AMT, type MarketSession, type ModifyStableswapPoolContent, ONE_DAY, ONE_HOUR, ONE_SECOND, ONE_YEAR, type OracleIdx, OracleIdxSchema, type Output, PRICE_UPDATE_MAGIC, type ParsedOutput, PollManagerParams, type PollManagerParamsSP, PollShardParams, type PollShardParamsSP, type PriceOracleDatum, type PriceOracleParam, type PriceOracleParams, PriceOracleParamsSchema, type PriceOracleRedeemer, type PriceUpdate, type ProcessRequestAccountContent, type ProposalContent, ProposalContentSchema, type ProposeAssetContent, type ProposeStableswapPoolContent, type ProtocolParams, ProtocolParamsSchema, type PubKeyHash, type PythConfig, type PythConfiguration, type PythFeedConfig, type PythFeedParams, type PythFeedParamsSP, type PythFeedRedeemer, type PythMessageParts, type PythOracleParam, type PythPriceConfigurationSP, type PythStateDatum, type PythUpdatesRedeemer, type Rational, RationalSchema, type RedeemCdpWithdrawalRedeemer, type RobDatum, type RobOrderType, type RobOutput, type RobParams, type RobParamsSP, RobParamsSchema, type RobRedeemer, SOLANA_FORMAT_MAGIC, type SPInteger, SPIntegerSchema, type ScriptCredential, type ScriptOutput, type ScriptRef, type ScriptReference, type ScriptReferences, type SnapshotEpochToScaleToSumContent, SnapshotEpochToScaleToSumContentSchema, type StabilityPoolContent, StabilityPoolContentSchema, StabilityPoolDatumSchema, StabilityPoolParams, type StabilityPoolParamsSP, type StabilityPoolRedeemer, StabilityPoolRedeemerSchema, type StableswapOrderDatum, StableswapOrderDatumSchema, type StableswapOrderRedeemer, type StableswapOutputDatum, type StableswapParamsSP, type StableswapPoolContent, StakeCredential, StakeCredentialSchema, type StakingManager, type StakingManagerOutput, type StakingParamsSP, type StakingPosLockedAmt, type StakingPosition, type StakingPositionOutput, type StakingRedeemer, type StartTime, type StateSnapshot, type SumSnapshot, type SystemParams, type TokenNameSP, type TreasuryParamsSP, type TreasuryWithdrawal, type TreasuryWithdrawalItem, TreasuryWithdrawalSchema, type UpgradePaths, type ValidatorHashes, VerificationKeyHashSchema, type VersionRecordParams, VersionRecordTokenParams, addrDetails, adjustCdp, adjustPriceToDecimals, adjustRob, adjustStakingPosition, alwaysFailValidator, annulRequest, balance, batchCollectInterest, batchProcessStableswapOrders, bigintMax, bigintMin, buildRedemptionsTx, burnCdp, calculateAccruedInterest, calculateAdaReward, calculateIAssetRedemptionAmt, calculateMinCollateralCappedIAssetRedemptionAmt, calculateUnitaryInterest, calculateUnitaryInterestSinceOracleLastUpdated, cancelRob, cancelStableswapOrder, castCDPCreatorParams, castCdpParams, castCdpRedeemParams, castExecuteParams, castGovParams, castInterestCollectionParams, castInterestOracleParams, castPollManagerParams, castPollShardParams, castPriceOracleParams, castRobParams, castStabilityPoolParams, castStakingParams, castVersionRecordTokenParams, cdpCollateralRatioPercentage, claimRob, closeCdp, closeStakingPosition, collectInterestTx, collectorFeeTx, createDestinationDatum, createE2s2sSnapshots, createProcessRequestAccountRedeemer, createProposal, createScriptAddress, createShardsChunks, createStableswapOrder, decodePriceUpdate, decodePythMessage, depositCdp, deriveAuthToken, distributeAda, distributeInterest, distributeReward, divideOnChainCompatible, encodePriceUpdate, encodePythMessage, encodeSignedPythMessage, endProposal, estimateUtxoMinLovelace, executeProposal, feedInterestOracle, feedPriceOracleTx, findRelevantE2s2sIdxs, findStakingManager, findStakingManagerByOutRef, findStakingPositionByOutRef, freezeCdp, fromDataDerivedPythPrice, fromDecimal, fromSPInteger, fromSysParamsCredential, fromSysParamsDerivedPythPrice, fromSysParamsPythFeedParams, fromSysParamsStakeCredential, fromSystemParamsAsset, fromSystemParamsAssetLucid, fromSystemParamsScriptRef, getAssetClassComparisonStr, getInlineDatumOrThrow, getPythFeedConfig, getRandomElement, getUpdatedAccountDeposit, handleOracleForCollateralAsset, init, initCDPCreator, initCollector, initGovernance, initInterestCollector, initPythConfig, initScriptRef, initSpState, initStakingManager, initSumVal, initTreasury, initializeAsset, insertSorted, isFullyRedeemed, isSameEpochToScaleKey, liquidateCdp, liquidationHelper, loadSystemParamsFromFile, loadSystemParamsFromUrl, matchSingle, mergeCdps, mergeShards, mintAuthTokenDirect, mintCdp, mintOneTimeAsset, mintOneTimeToken, mkAuthTokenPolicy, mkCDPCreatorValidator, mkCDPCreatorValidatorFromSP, mkCdpRedeemValidatorFromSP, mkCdpValidatorFromSP, mkCollectorValidatorFromSP, mkExecuteValidator, mkExecuteValidatorFromSP, mkIAssetTokenPolicy, mkInterestCollectionValidator, mkInterestCollectionValidatorFromSP, mkInterestOracleValidator, mkPollManagerValidator, mkPollManagerValidatorFromSP, mkPollShardValidator, mkPollShardValidatorFromSP, mkPriceOracleValidator, mkPythFeedValidator, mkRobValidator, mkRobValidatorFromSP, mkSPInteger, mkStabilityPoolAddr, mkStabilityPoolValidator, mkStabilityPoolValidatorFromSP, mkStakingValidatorFromSP, mkTreasuryAddr, mkTreasuryValidatorFromSP, mkVersionRecordTokenPolicy, mkVersionRegistryValidator, oneShotMintTx, openCdp, openRob, openStakingPosition, parseAccountDatum, parseAccountDatumOrThrow, parseCdpDatum, parseCdpDatumOrThrow, parseCollateralAssetDatum, parseCollateralAssetDatumOrThrow, parseExecuteDatum, parseExecuteDatumOrThrow, parseGovDatum, parseGovDatumOrThrow, parseIAssetDatum, parseIAssetDatumOrThrow, parseInterestCollectionDatum, parseInterestOracleDatum, parsePriceOracleDatum, parsePythStateDatum, parseRobDatum, parseRobDatumOrThrow, parseRobRedeemer, parseRobRedeemerOrThrow, parseSnapshotEpochToScaleToSumDatum, parseSnapshotEpochToScaleToSumDatumOrThrow, parseStabilityPoolDatum, parseStabilityPoolDatumOrThrow, parseStableswapOrderDatum, parseStableswapOrderDatumOrThrow, parseStableswapOrderRedeemer, parseStableswapOrderRedeemerOrThrow, parseStableswapPoolDatum, parseStableswapPoolDatumOrThrow, parseStakingManagerDatum, parseStakingPosition, parseStakingPositionOrThrow, partitionEpochToScaleToSums, processSpRequest, rationalAdd, rationalCeil, rationalDiv, rationalFloor, rationalFromInt, rationalMul, rationalNegate, rationalSub, rationalToFloat, rationalZero, redeemCdp, redeemRob, repsertReadonlyArr, repsertWithReadonlyArr, requestSpAccountAdjustment, requestSpAccountClosure, requestSpAccountCreation, rewardSnapshotPrecision, robAmountToSpend, runCreateScriptRefTx, runOneShotMintTx, scriptRef, serialiseActionReturnDatum, serialiseCdpDatum, serialiseCdpRedeemer, serialiseCollectorRedeemer, serialiseExecuteDatum, serialiseFeedInterestOracleRedeemer, serialiseGovDatum, serialiseGovRedeemer, serialiseIAssetDatum, serialiseIAssetRedeemer, serialiseInterestCollectionDatum, serialiseInterestCollectionRedeemer, serialiseInterestOracleDatum, serialisePriceOracleDatum, serialisePriceOracleRedeemer, serialisePythFeedParams, serialisePythFeedRedeemer, serialisePythStateDatum, serialisePythUpdatesRedeemer, serialiseRedeemCdpWithdrawalRedeemer, serialiseRobDatum, serialiseRobRedeemer, serialiseStabilityPoolDatum, serialiseStabilityPoolRedeemer, serialiseStableswapOrderDatum, serialiseStableswapOrderRedeemer, serialiseStableswapOutputDatum, serialiseStableswapPoolDatum, serialiseStakingDatum, serialiseStakingRedeemer, shuffle, signersAllOf, spAdd, spDiv, spMul, spSub, spZeroNegatives, startInterestOracle, startPriceOracleTx, submitTx, sum, toAssetClassFromLucid, toDataDerivedPythPrice, toSystemParamsAsset, treasuryCollect, treasuryFeeTx, treasuryMerge, treasuryPrepareWithdrawal, treasurySplit, updateAccount, updatePermissions, updatePoolStateWhenWithdrawalFee, updateStableswapPoolFees, updateStakingLockedAmount, vote, withdrawCdp, zeroNegatives };
|
package/dist/index.js
CHANGED
|
@@ -213,6 +213,9 @@ __export(index_exports, {
|
|
|
213
213
|
mkRobValidatorFromSP: () => mkRobValidatorFromSP,
|
|
214
214
|
mkSPInteger: () => mkSPInteger,
|
|
215
215
|
mkStabilityPoolAddr: () => mkStabilityPoolAddr,
|
|
216
|
+
mkStabilityPoolValidator: () => mkStabilityPoolValidator,
|
|
217
|
+
mkStabilityPoolValidatorFromSP: () => mkStabilityPoolValidatorFromSP,
|
|
218
|
+
mkStakingValidatorFromSP: () => mkStakingValidatorFromSP,
|
|
216
219
|
mkTreasuryAddr: () => mkTreasuryAddr,
|
|
217
220
|
mkTreasuryValidatorFromSP: () => mkTreasuryValidatorFromSP,
|
|
218
221
|
mkVersionRecordTokenPolicy: () => mkVersionRecordTokenPolicy,
|
|
@@ -1279,6 +1282,14 @@ var _stabilityPoolValidator = {
|
|
|
1279
1282
|
};
|
|
1280
1283
|
|
|
1281
1284
|
// src/contracts/stability-pool/scripts.ts
|
|
1285
|
+
var mkStabilityPoolValidator = (params) => {
|
|
1286
|
+
return {
|
|
1287
|
+
type: "PlutusV3",
|
|
1288
|
+
script: (0, import_lucid7.applyParamsToScript)(_stabilityPoolValidator.cborHex, [
|
|
1289
|
+
castStabilityPoolParams(params)
|
|
1290
|
+
])
|
|
1291
|
+
};
|
|
1292
|
+
};
|
|
1282
1293
|
var mkStabilityPoolValidatorFromSP = (params) => {
|
|
1283
1294
|
return {
|
|
1284
1295
|
type: "PlutusV3",
|
|
@@ -10862,6 +10873,9 @@ async function updateStableswapPoolFees(stableswapPoolOutRef, stableswapFeeOutRe
|
|
|
10862
10873
|
mkRobValidatorFromSP,
|
|
10863
10874
|
mkSPInteger,
|
|
10864
10875
|
mkStabilityPoolAddr,
|
|
10876
|
+
mkStabilityPoolValidator,
|
|
10877
|
+
mkStabilityPoolValidatorFromSP,
|
|
10878
|
+
mkStakingValidatorFromSP,
|
|
10865
10879
|
mkTreasuryAddr,
|
|
10866
10880
|
mkTreasuryValidatorFromSP,
|
|
10867
10881
|
mkVersionRecordTokenPolicy,
|
package/dist/index.mjs
CHANGED
|
@@ -989,6 +989,14 @@ var _stabilityPoolValidator = {
|
|
|
989
989
|
};
|
|
990
990
|
|
|
991
991
|
// src/contracts/stability-pool/scripts.ts
|
|
992
|
+
var mkStabilityPoolValidator = (params) => {
|
|
993
|
+
return {
|
|
994
|
+
type: "PlutusV3",
|
|
995
|
+
script: applyParamsToScript(_stabilityPoolValidator.cborHex, [
|
|
996
|
+
castStabilityPoolParams(params)
|
|
997
|
+
])
|
|
998
|
+
};
|
|
999
|
+
};
|
|
992
1000
|
var mkStabilityPoolValidatorFromSP = (params) => {
|
|
993
1001
|
return {
|
|
994
1002
|
type: "PlutusV3",
|
|
@@ -10826,6 +10834,9 @@ export {
|
|
|
10826
10834
|
mkRobValidatorFromSP,
|
|
10827
10835
|
mkSPInteger,
|
|
10828
10836
|
mkStabilityPoolAddr,
|
|
10837
|
+
mkStabilityPoolValidator,
|
|
10838
|
+
mkStabilityPoolValidatorFromSP,
|
|
10839
|
+
mkStakingValidatorFromSP,
|
|
10829
10840
|
mkTreasuryAddr,
|
|
10830
10841
|
mkTreasuryValidatorFromSP,
|
|
10831
10842
|
mkVersionRecordTokenPolicy,
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -12,10 +12,12 @@ export * from './contracts/gov/transactions';
|
|
|
12
12
|
export * from './contracts/gov/types';
|
|
13
13
|
export * from './contracts/gov/types-new';
|
|
14
14
|
export * from './contracts/stability-pool/transactions';
|
|
15
|
+
export * from './contracts/stability-pool/scripts';
|
|
15
16
|
export * from './contracts/staking/transactions';
|
|
16
17
|
export * from './contracts/staking/helpers';
|
|
17
18
|
export * from './contracts/staking/types-new';
|
|
18
19
|
export * from './contracts/staking/types';
|
|
20
|
+
export * from './contracts/staking/scripts';
|
|
19
21
|
export * from './contracts/interest-oracle/transactions';
|
|
20
22
|
export * from './contracts/interest-oracle/types';
|
|
21
23
|
export * from './contracts/interest-oracle/types-new';
|