@symmetry-hq/temp-v3-sdk 0.0.15 → 0.0.16
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/src/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/index.ts +2 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BN } from '@coral-xyz/anchor';
|
|
2
2
|
import { Connection, PublicKey, TransactionSignature } from '@solana/web3.js';
|
|
3
|
-
import { Basket } from './layouts/basket';
|
|
3
|
+
import { Basket, FormattedBasket } from './layouts/basket';
|
|
4
4
|
import { GlobalConfig } from './layouts/config';
|
|
5
5
|
import { FormattedCreatorSettings, FormattedManagersSettings, FormattedFeeSettings, FormattedScheduleSettings, FormattedAutomationSettings, FormattedLpSettings, FormattedMetadataSettings, FormattedDepositsSettings, FormattedForceRebalanceSettings, FormattedCustomRebalanceSettings, FormattedAddTokenSettings, FormattedUpdateWeightsSettings, FormattedMakeDirectSwapSettings, TaskContext, Settings, AddTokenInput, UpdateWeightsInput, MakeDirectSwapInput, TaskType, Intent } from './layouts/intents/intent';
|
|
6
6
|
import { RebalanceIntent } from './layouts/intents/rebalanceIntent';
|
|
@@ -127,5 +127,5 @@ export declare class SymmetryCore {
|
|
|
127
127
|
wallet: Wallet;
|
|
128
128
|
}): Promise<TransactionSignature[][]>;
|
|
129
129
|
}
|
|
130
|
-
export { Basket, BasketFilter, Intent, IntentFilter, RebalanceIntent, RebalanceIntentFilter };
|
|
130
|
+
export { Basket, FormattedBasket, BasketFilter, Intent, IntentFilter, RebalanceIntent, RebalanceIntentFilter };
|
|
131
131
|
export { FormattedCreatorSettings, FormattedManagersSettings, FormattedFeeSettings, FormattedScheduleSettings, FormattedAutomationSettings, FormattedLpSettings, FormattedMetadataSettings, FormattedDepositsSettings, FormattedForceRebalanceSettings, FormattedCustomRebalanceSettings, FormattedAddTokenSettings, FormattedUpdateWeightsSettings, FormattedMakeDirectSwapSettings, AddTokenInput, UpdateWeightsInput, MakeDirectSwapInput, Settings, TaskContext, TaskType, };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
} from './instructions/pda';
|
|
27
27
|
import { depositTokensIx, lockDepositsIx, mintBasketIx } from './instructions/user/deposit';
|
|
28
28
|
import { redeemTokensIx } from './instructions/user/withdraw';
|
|
29
|
-
import { Basket, BasketLayout } from './layouts/basket';
|
|
29
|
+
import { Basket, BasketLayout, FormattedBasket } from './layouts/basket';
|
|
30
30
|
import {
|
|
31
31
|
AutomationSettings, FeeSettings, GlobalConfig, GlobalConfigLayout, LpSettings, ManagerSettings,
|
|
32
32
|
MetadataSettings, ScheduleSettings
|
|
@@ -810,6 +810,7 @@ export class SymmetryCore {
|
|
|
810
810
|
|
|
811
811
|
export {
|
|
812
812
|
Basket,
|
|
813
|
+
FormattedBasket,
|
|
813
814
|
BasketFilter,
|
|
814
815
|
Intent,
|
|
815
816
|
IntentFilter,
|