@cetusprotocol/aggregator-sdk 0.0.0-experimental-20250722120312 → 0.0.0-experimental-20250724183511
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 +8 -197
- package/dist/index.d.ts +8 -197
- package/dist/index.js +258 -115
- package/dist/index.mjs +257 -86
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -65,9 +65,9 @@ type ExtendedDetails = {
|
|
|
65
65
|
steamm_bank_b?: string;
|
|
66
66
|
steamm_lending_market?: string;
|
|
67
67
|
steamm_lending_market_type?: string;
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
68
|
+
steamm_btoken_a_type?: string;
|
|
69
|
+
steamm_btoken_b_type?: string;
|
|
70
|
+
steamm_lp_token_type?: string;
|
|
71
71
|
steamm_oracle_registry_id?: string;
|
|
72
72
|
steamm_oracle_pyth_price_seed_a?: string;
|
|
73
73
|
steamm_oracle_pyth_price_seed_b?: string;
|
|
@@ -467,201 +467,11 @@ declare class AggregatorClientV3 extends AggregatorClient {
|
|
|
467
467
|
routerSwap(params: BuildRouterSwapParamsV2$1): Promise<TransactionObjectArgument>;
|
|
468
468
|
fastRouterSwap(params: BuildFastRouterSwapParamsV2$1): Promise<void>;
|
|
469
469
|
fixableRouterSwap(params: BuildRouterSwapParamsV2$1): Promise<TransactionObjectArgument>;
|
|
470
|
+
swapInPools(params: SwapInPoolsParams): Promise<SwapInPoolsResult | null>;
|
|
471
|
+
private swapInPoolsV3;
|
|
470
472
|
}
|
|
471
473
|
|
|
472
|
-
declare
|
|
473
|
-
private stakedSuiVault;
|
|
474
|
-
private safe;
|
|
475
|
-
private referVault;
|
|
476
|
-
private validator;
|
|
477
|
-
constructor(env: Env);
|
|
478
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
declare class Aftermath implements Dex {
|
|
482
|
-
private slippage;
|
|
483
|
-
private poolRegistry;
|
|
484
|
-
private protocolFeeVault;
|
|
485
|
-
private treasury;
|
|
486
|
-
private insuranceFund;
|
|
487
|
-
private referrealVault;
|
|
488
|
-
constructor(env: Env);
|
|
489
|
-
amountLimit(exportAmountOut: string): string;
|
|
490
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
declare class Alphafi implements Dex {
|
|
494
|
-
private sui_system_state;
|
|
495
|
-
constructor(env: Env);
|
|
496
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
declare class Bluefin implements Dex {
|
|
500
|
-
private globalConfig;
|
|
501
|
-
constructor(env: Env);
|
|
502
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
declare class Bluemove implements Dex {
|
|
506
|
-
private dexInfo;
|
|
507
|
-
constructor(env: Env);
|
|
508
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
type CetusFlashSwapResult = {
|
|
512
|
-
targetCoin: TransactionObjectArgument;
|
|
513
|
-
flashReceipt: TransactionObjectArgument;
|
|
514
|
-
payAmount: TransactionArgument;
|
|
515
|
-
};
|
|
516
|
-
declare class Cetus implements Dex {
|
|
517
|
-
private globalConfig;
|
|
518
|
-
private partner;
|
|
519
|
-
constructor(env: Env, partner?: string);
|
|
520
|
-
flash_swap(client: AggregatorClient, txb: Transaction, path: Path, amount_arg: TransactionArgument, by_amount_in: boolean, packages?: Map<string, string>): CetusFlashSwapResult;
|
|
521
|
-
repay_flash_swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, receipt: TransactionArgument, packages?: Map<string, string>): TransactionObjectArgument;
|
|
522
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
type GetOrCreateAccountCapResult$1 = {
|
|
526
|
-
accountCap: TransactionObjectArgument;
|
|
527
|
-
isCreate: boolean;
|
|
528
|
-
};
|
|
529
|
-
declare class DeepbookV2 implements Dex {
|
|
530
|
-
constructor(env: Env);
|
|
531
|
-
getAccountCap(client: SuiClient, owner: string): Promise<string | null>;
|
|
532
|
-
getOrCreateAccountCap(txb: Transaction, client: SuiClient, owner: string): Promise<GetOrCreateAccountCapResult$1>;
|
|
533
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
declare class DeepbookV3 implements Dex {
|
|
537
|
-
private deepbookV3Config;
|
|
538
|
-
constructor(env: Env);
|
|
539
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>, deepbookv3DeepFee?: TransactionObjectArgument): Promise<TransactionObjectArgument>;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
declare class FlowxV2 implements Dex {
|
|
543
|
-
private container;
|
|
544
|
-
constructor(env: Env);
|
|
545
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
declare class FlowxV3 implements Dex {
|
|
549
|
-
private versioned;
|
|
550
|
-
private poolRegistry;
|
|
551
|
-
constructor(env: Env);
|
|
552
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
553
|
-
}
|
|
554
|
-
|
|
555
|
-
declare class Haedal implements Dex {
|
|
556
|
-
constructor(env: Env);
|
|
557
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
declare class HaedalPmm implements Dex {
|
|
561
|
-
private pythPriceIDs;
|
|
562
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
563
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
declare class HaWAL implements Dex {
|
|
567
|
-
private staking;
|
|
568
|
-
private validator;
|
|
569
|
-
constructor(env: Env);
|
|
570
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
declare class KriyaV2 implements Dex {
|
|
574
|
-
constructor(env: Env);
|
|
575
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
declare class KriyaV3 implements Dex {
|
|
579
|
-
private version;
|
|
580
|
-
constructor(env: Env);
|
|
581
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
declare class Magma implements Dex {
|
|
585
|
-
private globalConfig;
|
|
586
|
-
constructor(env: Env);
|
|
587
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
declare class Metastable implements Dex {
|
|
591
|
-
private pythPriceIDs;
|
|
592
|
-
private versionID;
|
|
593
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
594
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
declare class Momentum implements Dex {
|
|
598
|
-
private version;
|
|
599
|
-
constructor(env: Env);
|
|
600
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
declare class Obric implements Dex {
|
|
604
|
-
private pythPriceIDs;
|
|
605
|
-
private pythStateObjectId;
|
|
606
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
607
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
declare class Scallop implements Dex {
|
|
611
|
-
private version;
|
|
612
|
-
private market;
|
|
613
|
-
constructor(env: Env);
|
|
614
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
declare class Sevenk implements Dex {
|
|
618
|
-
private pythPriceIDs;
|
|
619
|
-
private oraclePublishedAt;
|
|
620
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
621
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
declare class SteammCPMM implements Dex {
|
|
625
|
-
constructor(env: Env);
|
|
626
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
declare class SteammOmm implements Dex {
|
|
630
|
-
private pythPriceIDs;
|
|
631
|
-
private oraclePackageId;
|
|
632
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
633
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
declare class SteammOmmV2 implements Dex {
|
|
637
|
-
private pythPriceIDs;
|
|
638
|
-
private oraclePackageId;
|
|
639
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
640
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
declare class Suilend implements Dex {
|
|
644
|
-
private sui_system_state;
|
|
645
|
-
constructor(env: Env);
|
|
646
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
declare class Turbos implements Dex {
|
|
650
|
-
private versioned;
|
|
651
|
-
constructor(env: Env);
|
|
652
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
declare class Volo implements Dex {
|
|
656
|
-
private stakePool;
|
|
657
|
-
private metadata;
|
|
658
|
-
constructor(env: Env);
|
|
659
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
660
|
-
}
|
|
661
|
-
|
|
662
|
-
declare const AGGREGATOR_V2 = "aggregator_v2";
|
|
663
|
-
declare const AGGREGATOR_V2_EXTEND = "aggregator_v2_extend";
|
|
664
|
-
declare const AGGREGATOR_V2_EXTEND2 = "aggregator_v2_extend2";
|
|
474
|
+
declare function swapInPools(client: SuiClient, params: SwapInPoolsParams, sender: string, env: Env): Promise<SwapInPoolsResult>;
|
|
665
475
|
|
|
666
476
|
/**
|
|
667
477
|
* Generate a downgraded UUID6 format identifier
|
|
@@ -849,6 +659,7 @@ declare const SuiZeroCoinFn = "0x2::coin::zero";
|
|
|
849
659
|
declare const DEEPBOOK_PACKAGE_ID = "0x000000000000000000000000000000000000000000000000000000000000dee9";
|
|
850
660
|
declare const DEEPBOOK_PUBLISHED_AT = "0x000000000000000000000000000000000000000000000000000000000000dee9";
|
|
851
661
|
declare const CETUS_PUBLISHED_AT = "0x70968826ad1b4ba895753f634b0aea68d0672908ca1075a2abdf0fc9e0b2fc6a";
|
|
662
|
+
declare const CETUS_V3_PUBLISHED_AT = "0xb85d33ef69a8308f7b1ae341e48bd8817476c144f14344d3ce612c16480d16f2";
|
|
852
663
|
declare const MAINNET_CETUS_GLOBAL_CONFIG_ID = "0xdaa46292632c3c4d8f31f23ea0f9b36a28ff3677e9684980e4438403a67a3d8f";
|
|
853
664
|
declare const TESTNET_CETUS_GLOBAL_CONFIG_ID = "0x6f4149091a5aea0e818e7243a13adcfb403842d670b9a2089de058512620687a";
|
|
854
665
|
declare const MAINNET_FLOWX_AMM_CONTAINER_ID = "0xb65dcbf63fd3ad5d0ebfbf334780dc9f785eff38a4459e37ab08fa79576ee511";
|
|
@@ -1158,4 +969,4 @@ declare class CoinUtils {
|
|
|
1158
969
|
static calculateTotalBalance(coins: CoinAsset[]): bigint;
|
|
1159
970
|
}
|
|
1160
971
|
|
|
1161
|
-
export { AFSUI, AFTERMATH, AFTERMATH_AMM, AFTERMATH_MODULE, AGGREGATOR,
|
|
972
|
+
export { AFSUI, AFTERMATH, AFTERMATH_AMM, AFTERMATH_MODULE, AGGREGATOR, AGGREGATOR_V3_CONFIG, ALL_DEXES, ALPHAFI, AggregatorClient, type AggregatorClientParams, AggregatorClientV3, AggregatorConfig, AggregatorError, type AggregatorErrorCode, type AggregatorResponse, AggregatorServerErrorCode, BLUEFIN, BLUEMOVE, type BigNumber, type BuildCoinResult, type BuildFastRouterSwapParams, type BuildFastRouterSwapParamsV2, type BuildRouterSwapParams$1 as BuildRouterSwapParams, type BuildRouterSwapParamsV2, CETUS, CETUS_DEX, CETUS_MODULE, CETUS_PUBLISHED_AT, CETUS_V3_PUBLISHED_AT, CHECK_COINS_THRESHOLD_FUNC, CLIENT_CONFIG, CLOCK_ADDRESS, type CoinAsset, CoinInfoAddress, CoinStoreAddress, CoinUtils, type ComparisonResult, ConfigErrorCode, DEEPBOOKV2, DEEPBOOKV3, DEEPBOOK_CLOB_V2_MODULE, DEEPBOOK_CUSTODIAN_V2_MODULE, DEEPBOOK_DEX, DEEPBOOK_MODULE, DEEPBOOK_PACKAGE_ID, DEEPBOOK_PUBLISHED_AT, DEEPBOOK_V3_DEEP_FEE_TYPES, DEFAULT_AGG_V2_ENDPOINT, DEFAULT_AGG_V3_ENDPOINT, DEFAULT_GAS_BUDGET_FOR_MERGE, DEFAULT_GAS_BUDGET_FOR_SPLIT, DEFAULT_GAS_BUDGET_FOR_STAKE, DEFAULT_GAS_BUDGET_FOR_TRANSFER, DEFAULT_GAS_BUDGET_FOR_TRANSFER_SUI, DEFAULT_NFT_TRANSFER_GAS_FEE, type DeepbookV3Config, type DeepbookV3ConfigResponse, type Dex, Env, type ExtendedDetails, FLOWXV2, FLOWXV3, FLOWX_AMM, FLOWX_AMM_MODULE, type FindRouterParams, FlashSwapA2BFunc, FlashSwapB2AFunc, FlashSwapFunc, FlashSwapWithPartnerA2BFunc, FlashSwapWithPartnerB2AFunc, FlashSwapWithPartnerFunc, type FlattenedPath, GAS_SYMBOL, GAS_TYPE_ARG, GAS_TYPE_ARG_LONG, type GasMetrics, type GetOrCreateAccountCapResult, HAEDAL, HAEDALPMM, HAWAL, INTEGRATE, JOIN_FUNC, KRIYA, KRIYAV3, KRIYA_DEX, KRIYA_MODULE, MAGMA, MAINNET_AFTERMATH_INSURANCE_FUND_ID, MAINNET_AFTERMATH_PROTOCOL_FEE_VAULT_ID, MAINNET_AFTERMATH_REFERRAL_VAULT_ID, MAINNET_AFTERMATH_REGISTRY_ID, MAINNET_AFTERMATH_TREASURY_ID, MAINNET_CETUS_GLOBAL_CONFIG_ID, MAINNET_FLOWX_AMM_CONTAINER_ID, METASTABLE, MOMENTUM, type NFT, OBRIC, ONE, PACKAGE_NAMES, PAY_MODULE, POOL_MODULT, PUBLISHED_ADDRESSES, PYTH_CONFIG, type Package, type Path, type PathV2, type PreSwapLpChangeParams, type ProcessedRouterData, type PythConfig, REPAY_FLASH_SWAP_A2B_FUNC, REPAY_FLASH_SWAP_B2A_FUNC, REPAY_FLASH_SWAP_WITH_PARTNER_A2B_FUNC, REPAY_FLASH_SWAP_WITH_PARTNER_B2A_FUNC, RepayFalshSwapFunc, RepayFlashSwapWithPartnerFunc, type Router, type RouterData, type RouterDataV2, type RouterError, type RouterV2, SCALLOP, SEVENK, SPRINGSUI, STEAMM, STEAMM_OMM, STEAMM_OMM_V2, SUILEND, SUI_SYSTEM_STATE_OBJECT_ID, SWAP_A2B_FUNC, SWAP_B2A_FUNC, type SuiAddress, type SuiBasicTypes, type SuiInputTypes, type SuiObjectIdType, type SuiResource, type SuiStructTag, type SuiTxArg, SuiZeroCoinFn, type SwapGasAnalysis, type SwapInPoolsParams$1 as SwapInPoolsParams, type SwapInPoolsResult$1 as SwapInPoolsResult, TEN_POW_NINE, TESTNET_AFTERMATH_INSURANCE_FUND_ID, TESTNET_AFTERMATH_PROTOCOL_FEE_VAULT_ID, TESTNET_AFTERMATH_REFERRAL_VAULT_ID, TESTNET_AFTERMATH_REGISTRY_ID, TESTNET_AFTERMATH_TREASURY_ID, TESTNET_CETUS_GLOBAL_CONFIG_ID, TESTNET_FLOWX_AMM_CONTAINER_ID, TRANSFER_ACCOUNT_CAP, TRANSFER_OR_DESTORY_COIN_FUNC, TURBOS, TURBOS_DEX, TURBOS_MODULE, TURBOS_VERSIONED, TWO, TransactionErrorCode, TypesErrorCode, U128, U64_MAX, U64_MAX_BN, UTILS_MODULE, VOLO, ZERO, buildInputCoin, calculateGasEfficiency, calculatePriceImpact, checkInvalidSuiAddress, compareCoins, compareGasMetrics, completionCoin, composeType, createTarget, dealWithFastRouterSwapParamsForMsafe, exportToCSV, exportToJSON, extractAddressFromType, extractGasMetrics, extractStructTagFromType, extractTimestampFromDowngradeUuid6, fixSuiObjectId, formatGasMetrics, generateDowngradeUuid6, generateSimpleDowngradeUuid6, getAggregatorServerErrorMessage, getAggregatorV2Extend2PublishedAt, getAggregatorV2ExtendPublishedAt, getAggregatorV2PublishedAt, getDeepbookV3Config, getDefaultSuiInputType, getOrCreateAccountCap, getRouterResult, isSortedSymbols, isValidDowngradeUuid6, mintZeroCoin, normalizeCoinType, parseAftermathFeeType, parseTurbosPoolFeeType, patchFixSuiObjectId, printTransaction, processEndpoint, restituteMsafeFastRouterSwapParams, sortAndFlattenRoutes, swapInPools };
|
package/dist/index.d.ts
CHANGED
|
@@ -65,9 +65,9 @@ type ExtendedDetails = {
|
|
|
65
65
|
steamm_bank_b?: string;
|
|
66
66
|
steamm_lending_market?: string;
|
|
67
67
|
steamm_lending_market_type?: string;
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
68
|
+
steamm_btoken_a_type?: string;
|
|
69
|
+
steamm_btoken_b_type?: string;
|
|
70
|
+
steamm_lp_token_type?: string;
|
|
71
71
|
steamm_oracle_registry_id?: string;
|
|
72
72
|
steamm_oracle_pyth_price_seed_a?: string;
|
|
73
73
|
steamm_oracle_pyth_price_seed_b?: string;
|
|
@@ -467,201 +467,11 @@ declare class AggregatorClientV3 extends AggregatorClient {
|
|
|
467
467
|
routerSwap(params: BuildRouterSwapParamsV2$1): Promise<TransactionObjectArgument>;
|
|
468
468
|
fastRouterSwap(params: BuildFastRouterSwapParamsV2$1): Promise<void>;
|
|
469
469
|
fixableRouterSwap(params: BuildRouterSwapParamsV2$1): Promise<TransactionObjectArgument>;
|
|
470
|
+
swapInPools(params: SwapInPoolsParams): Promise<SwapInPoolsResult | null>;
|
|
471
|
+
private swapInPoolsV3;
|
|
470
472
|
}
|
|
471
473
|
|
|
472
|
-
declare
|
|
473
|
-
private stakedSuiVault;
|
|
474
|
-
private safe;
|
|
475
|
-
private referVault;
|
|
476
|
-
private validator;
|
|
477
|
-
constructor(env: Env);
|
|
478
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
declare class Aftermath implements Dex {
|
|
482
|
-
private slippage;
|
|
483
|
-
private poolRegistry;
|
|
484
|
-
private protocolFeeVault;
|
|
485
|
-
private treasury;
|
|
486
|
-
private insuranceFund;
|
|
487
|
-
private referrealVault;
|
|
488
|
-
constructor(env: Env);
|
|
489
|
-
amountLimit(exportAmountOut: string): string;
|
|
490
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
declare class Alphafi implements Dex {
|
|
494
|
-
private sui_system_state;
|
|
495
|
-
constructor(env: Env);
|
|
496
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
declare class Bluefin implements Dex {
|
|
500
|
-
private globalConfig;
|
|
501
|
-
constructor(env: Env);
|
|
502
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
declare class Bluemove implements Dex {
|
|
506
|
-
private dexInfo;
|
|
507
|
-
constructor(env: Env);
|
|
508
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
type CetusFlashSwapResult = {
|
|
512
|
-
targetCoin: TransactionObjectArgument;
|
|
513
|
-
flashReceipt: TransactionObjectArgument;
|
|
514
|
-
payAmount: TransactionArgument;
|
|
515
|
-
};
|
|
516
|
-
declare class Cetus implements Dex {
|
|
517
|
-
private globalConfig;
|
|
518
|
-
private partner;
|
|
519
|
-
constructor(env: Env, partner?: string);
|
|
520
|
-
flash_swap(client: AggregatorClient, txb: Transaction, path: Path, amount_arg: TransactionArgument, by_amount_in: boolean, packages?: Map<string, string>): CetusFlashSwapResult;
|
|
521
|
-
repay_flash_swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, receipt: TransactionArgument, packages?: Map<string, string>): TransactionObjectArgument;
|
|
522
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
type GetOrCreateAccountCapResult$1 = {
|
|
526
|
-
accountCap: TransactionObjectArgument;
|
|
527
|
-
isCreate: boolean;
|
|
528
|
-
};
|
|
529
|
-
declare class DeepbookV2 implements Dex {
|
|
530
|
-
constructor(env: Env);
|
|
531
|
-
getAccountCap(client: SuiClient, owner: string): Promise<string | null>;
|
|
532
|
-
getOrCreateAccountCap(txb: Transaction, client: SuiClient, owner: string): Promise<GetOrCreateAccountCapResult$1>;
|
|
533
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
declare class DeepbookV3 implements Dex {
|
|
537
|
-
private deepbookV3Config;
|
|
538
|
-
constructor(env: Env);
|
|
539
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>, deepbookv3DeepFee?: TransactionObjectArgument): Promise<TransactionObjectArgument>;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
declare class FlowxV2 implements Dex {
|
|
543
|
-
private container;
|
|
544
|
-
constructor(env: Env);
|
|
545
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
declare class FlowxV3 implements Dex {
|
|
549
|
-
private versioned;
|
|
550
|
-
private poolRegistry;
|
|
551
|
-
constructor(env: Env);
|
|
552
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
553
|
-
}
|
|
554
|
-
|
|
555
|
-
declare class Haedal implements Dex {
|
|
556
|
-
constructor(env: Env);
|
|
557
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
declare class HaedalPmm implements Dex {
|
|
561
|
-
private pythPriceIDs;
|
|
562
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
563
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
declare class HaWAL implements Dex {
|
|
567
|
-
private staking;
|
|
568
|
-
private validator;
|
|
569
|
-
constructor(env: Env);
|
|
570
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
declare class KriyaV2 implements Dex {
|
|
574
|
-
constructor(env: Env);
|
|
575
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
declare class KriyaV3 implements Dex {
|
|
579
|
-
private version;
|
|
580
|
-
constructor(env: Env);
|
|
581
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
declare class Magma implements Dex {
|
|
585
|
-
private globalConfig;
|
|
586
|
-
constructor(env: Env);
|
|
587
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
declare class Metastable implements Dex {
|
|
591
|
-
private pythPriceIDs;
|
|
592
|
-
private versionID;
|
|
593
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
594
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
declare class Momentum implements Dex {
|
|
598
|
-
private version;
|
|
599
|
-
constructor(env: Env);
|
|
600
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
declare class Obric implements Dex {
|
|
604
|
-
private pythPriceIDs;
|
|
605
|
-
private pythStateObjectId;
|
|
606
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
607
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
declare class Scallop implements Dex {
|
|
611
|
-
private version;
|
|
612
|
-
private market;
|
|
613
|
-
constructor(env: Env);
|
|
614
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
declare class Sevenk implements Dex {
|
|
618
|
-
private pythPriceIDs;
|
|
619
|
-
private oraclePublishedAt;
|
|
620
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
621
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
declare class SteammCPMM implements Dex {
|
|
625
|
-
constructor(env: Env);
|
|
626
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
declare class SteammOmm implements Dex {
|
|
630
|
-
private pythPriceIDs;
|
|
631
|
-
private oraclePackageId;
|
|
632
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
633
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
declare class SteammOmmV2 implements Dex {
|
|
637
|
-
private pythPriceIDs;
|
|
638
|
-
private oraclePackageId;
|
|
639
|
-
constructor(env: Env, pythPriceIDs: Map<string, string>);
|
|
640
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
declare class Suilend implements Dex {
|
|
644
|
-
private sui_system_state;
|
|
645
|
-
constructor(env: Env);
|
|
646
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
declare class Turbos implements Dex {
|
|
650
|
-
private versioned;
|
|
651
|
-
constructor(env: Env);
|
|
652
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
declare class Volo implements Dex {
|
|
656
|
-
private stakePool;
|
|
657
|
-
private metadata;
|
|
658
|
-
constructor(env: Env);
|
|
659
|
-
swap(client: AggregatorClient, txb: Transaction, path: Path, inputCoin: TransactionObjectArgument, packages?: Map<string, string>): Promise<TransactionObjectArgument>;
|
|
660
|
-
}
|
|
661
|
-
|
|
662
|
-
declare const AGGREGATOR_V2 = "aggregator_v2";
|
|
663
|
-
declare const AGGREGATOR_V2_EXTEND = "aggregator_v2_extend";
|
|
664
|
-
declare const AGGREGATOR_V2_EXTEND2 = "aggregator_v2_extend2";
|
|
474
|
+
declare function swapInPools(client: SuiClient, params: SwapInPoolsParams, sender: string, env: Env): Promise<SwapInPoolsResult>;
|
|
665
475
|
|
|
666
476
|
/**
|
|
667
477
|
* Generate a downgraded UUID6 format identifier
|
|
@@ -849,6 +659,7 @@ declare const SuiZeroCoinFn = "0x2::coin::zero";
|
|
|
849
659
|
declare const DEEPBOOK_PACKAGE_ID = "0x000000000000000000000000000000000000000000000000000000000000dee9";
|
|
850
660
|
declare const DEEPBOOK_PUBLISHED_AT = "0x000000000000000000000000000000000000000000000000000000000000dee9";
|
|
851
661
|
declare const CETUS_PUBLISHED_AT = "0x70968826ad1b4ba895753f634b0aea68d0672908ca1075a2abdf0fc9e0b2fc6a";
|
|
662
|
+
declare const CETUS_V3_PUBLISHED_AT = "0xb85d33ef69a8308f7b1ae341e48bd8817476c144f14344d3ce612c16480d16f2";
|
|
852
663
|
declare const MAINNET_CETUS_GLOBAL_CONFIG_ID = "0xdaa46292632c3c4d8f31f23ea0f9b36a28ff3677e9684980e4438403a67a3d8f";
|
|
853
664
|
declare const TESTNET_CETUS_GLOBAL_CONFIG_ID = "0x6f4149091a5aea0e818e7243a13adcfb403842d670b9a2089de058512620687a";
|
|
854
665
|
declare const MAINNET_FLOWX_AMM_CONTAINER_ID = "0xb65dcbf63fd3ad5d0ebfbf334780dc9f785eff38a4459e37ab08fa79576ee511";
|
|
@@ -1158,4 +969,4 @@ declare class CoinUtils {
|
|
|
1158
969
|
static calculateTotalBalance(coins: CoinAsset[]): bigint;
|
|
1159
970
|
}
|
|
1160
971
|
|
|
1161
|
-
export { AFSUI, AFTERMATH, AFTERMATH_AMM, AFTERMATH_MODULE, AGGREGATOR,
|
|
972
|
+
export { AFSUI, AFTERMATH, AFTERMATH_AMM, AFTERMATH_MODULE, AGGREGATOR, AGGREGATOR_V3_CONFIG, ALL_DEXES, ALPHAFI, AggregatorClient, type AggregatorClientParams, AggregatorClientV3, AggregatorConfig, AggregatorError, type AggregatorErrorCode, type AggregatorResponse, AggregatorServerErrorCode, BLUEFIN, BLUEMOVE, type BigNumber, type BuildCoinResult, type BuildFastRouterSwapParams, type BuildFastRouterSwapParamsV2, type BuildRouterSwapParams$1 as BuildRouterSwapParams, type BuildRouterSwapParamsV2, CETUS, CETUS_DEX, CETUS_MODULE, CETUS_PUBLISHED_AT, CETUS_V3_PUBLISHED_AT, CHECK_COINS_THRESHOLD_FUNC, CLIENT_CONFIG, CLOCK_ADDRESS, type CoinAsset, CoinInfoAddress, CoinStoreAddress, CoinUtils, type ComparisonResult, ConfigErrorCode, DEEPBOOKV2, DEEPBOOKV3, DEEPBOOK_CLOB_V2_MODULE, DEEPBOOK_CUSTODIAN_V2_MODULE, DEEPBOOK_DEX, DEEPBOOK_MODULE, DEEPBOOK_PACKAGE_ID, DEEPBOOK_PUBLISHED_AT, DEEPBOOK_V3_DEEP_FEE_TYPES, DEFAULT_AGG_V2_ENDPOINT, DEFAULT_AGG_V3_ENDPOINT, DEFAULT_GAS_BUDGET_FOR_MERGE, DEFAULT_GAS_BUDGET_FOR_SPLIT, DEFAULT_GAS_BUDGET_FOR_STAKE, DEFAULT_GAS_BUDGET_FOR_TRANSFER, DEFAULT_GAS_BUDGET_FOR_TRANSFER_SUI, DEFAULT_NFT_TRANSFER_GAS_FEE, type DeepbookV3Config, type DeepbookV3ConfigResponse, type Dex, Env, type ExtendedDetails, FLOWXV2, FLOWXV3, FLOWX_AMM, FLOWX_AMM_MODULE, type FindRouterParams, FlashSwapA2BFunc, FlashSwapB2AFunc, FlashSwapFunc, FlashSwapWithPartnerA2BFunc, FlashSwapWithPartnerB2AFunc, FlashSwapWithPartnerFunc, type FlattenedPath, GAS_SYMBOL, GAS_TYPE_ARG, GAS_TYPE_ARG_LONG, type GasMetrics, type GetOrCreateAccountCapResult, HAEDAL, HAEDALPMM, HAWAL, INTEGRATE, JOIN_FUNC, KRIYA, KRIYAV3, KRIYA_DEX, KRIYA_MODULE, MAGMA, MAINNET_AFTERMATH_INSURANCE_FUND_ID, MAINNET_AFTERMATH_PROTOCOL_FEE_VAULT_ID, MAINNET_AFTERMATH_REFERRAL_VAULT_ID, MAINNET_AFTERMATH_REGISTRY_ID, MAINNET_AFTERMATH_TREASURY_ID, MAINNET_CETUS_GLOBAL_CONFIG_ID, MAINNET_FLOWX_AMM_CONTAINER_ID, METASTABLE, MOMENTUM, type NFT, OBRIC, ONE, PACKAGE_NAMES, PAY_MODULE, POOL_MODULT, PUBLISHED_ADDRESSES, PYTH_CONFIG, type Package, type Path, type PathV2, type PreSwapLpChangeParams, type ProcessedRouterData, type PythConfig, REPAY_FLASH_SWAP_A2B_FUNC, REPAY_FLASH_SWAP_B2A_FUNC, REPAY_FLASH_SWAP_WITH_PARTNER_A2B_FUNC, REPAY_FLASH_SWAP_WITH_PARTNER_B2A_FUNC, RepayFalshSwapFunc, RepayFlashSwapWithPartnerFunc, type Router, type RouterData, type RouterDataV2, type RouterError, type RouterV2, SCALLOP, SEVENK, SPRINGSUI, STEAMM, STEAMM_OMM, STEAMM_OMM_V2, SUILEND, SUI_SYSTEM_STATE_OBJECT_ID, SWAP_A2B_FUNC, SWAP_B2A_FUNC, type SuiAddress, type SuiBasicTypes, type SuiInputTypes, type SuiObjectIdType, type SuiResource, type SuiStructTag, type SuiTxArg, SuiZeroCoinFn, type SwapGasAnalysis, type SwapInPoolsParams$1 as SwapInPoolsParams, type SwapInPoolsResult$1 as SwapInPoolsResult, TEN_POW_NINE, TESTNET_AFTERMATH_INSURANCE_FUND_ID, TESTNET_AFTERMATH_PROTOCOL_FEE_VAULT_ID, TESTNET_AFTERMATH_REFERRAL_VAULT_ID, TESTNET_AFTERMATH_REGISTRY_ID, TESTNET_AFTERMATH_TREASURY_ID, TESTNET_CETUS_GLOBAL_CONFIG_ID, TESTNET_FLOWX_AMM_CONTAINER_ID, TRANSFER_ACCOUNT_CAP, TRANSFER_OR_DESTORY_COIN_FUNC, TURBOS, TURBOS_DEX, TURBOS_MODULE, TURBOS_VERSIONED, TWO, TransactionErrorCode, TypesErrorCode, U128, U64_MAX, U64_MAX_BN, UTILS_MODULE, VOLO, ZERO, buildInputCoin, calculateGasEfficiency, calculatePriceImpact, checkInvalidSuiAddress, compareCoins, compareGasMetrics, completionCoin, composeType, createTarget, dealWithFastRouterSwapParamsForMsafe, exportToCSV, exportToJSON, extractAddressFromType, extractGasMetrics, extractStructTagFromType, extractTimestampFromDowngradeUuid6, fixSuiObjectId, formatGasMetrics, generateDowngradeUuid6, generateSimpleDowngradeUuid6, getAggregatorServerErrorMessage, getAggregatorV2Extend2PublishedAt, getAggregatorV2ExtendPublishedAt, getAggregatorV2PublishedAt, getDeepbookV3Config, getDefaultSuiInputType, getOrCreateAccountCap, getRouterResult, isSortedSymbols, isValidDowngradeUuid6, mintZeroCoin, normalizeCoinType, parseAftermathFeeType, parseTurbosPoolFeeType, patchFixSuiObjectId, printTransaction, processEndpoint, restituteMsafeFastRouterSwapParams, sortAndFlattenRoutes, swapInPools };
|