@nightlylabs/dex-sdk 1.0.13 → 1.0.15

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.cts CHANGED
@@ -753,6 +753,63 @@ interface UserAggregatedBoxRewardsStats {
753
753
  interface GetUserAggregatedBoxRewardsStatsResponse {
754
754
  userAggregatedBoxRewardsStats: UserAggregatedBoxRewardsStats;
755
755
  }
756
+ interface GetUserAggregatedBoxRewardsStatsV2Request {
757
+ userId: string;
758
+ }
759
+ interface TokenAmountUsd {
760
+ amount: string;
761
+ valueUsd: string;
762
+ }
763
+ interface UserAggregatedBoxRewardsStatsV2 {
764
+ userId: string;
765
+ boxOpeningCount: Record<string, string>;
766
+ boxTierRewards: Record<BoxRewardTier, string>;
767
+ tokenRewards: Record<string, TokenAmountUsd>;
768
+ badges: Record<BoxRewardTier, string>;
769
+ pointsRewardsTotal: string;
770
+ pointsCostTotal: string;
771
+ totalEarnedInUsd: string;
772
+ }
773
+ interface GetUserAggregatedBoxRewardsStatsV2Response {
774
+ userAggregatedBoxRewardsStats: UserAggregatedBoxRewardsStatsV2;
775
+ }
776
+ interface GetUserAggregatedLiquidationStatsRequest {
777
+ userId: string;
778
+ }
779
+ interface MarketLiquidationStats {
780
+ fullSize: string;
781
+ fullNotionalUsd: string;
782
+ fullPenaltyUsd: string;
783
+ fullCount: string;
784
+ partialSize: string;
785
+ partialNotionalUsd: string;
786
+ partialPenaltyUsd: string;
787
+ partialCount: string;
788
+ }
789
+ interface TokenLiquidationStats {
790
+ borrowShares: string;
791
+ borrowPenaltyUsd: string;
792
+ lendShares: string;
793
+ lendDebtReductionUsd: string;
794
+ lendPenaltyUsd: string;
795
+ collateralAmount: string;
796
+ collateralDebtReductionUsd: string;
797
+ collateralPenaltyUsd: string;
798
+ liquidationCount: string;
799
+ }
800
+ interface UserAggregatedLiquidationStats {
801
+ userId: string;
802
+ fullLiquidationCount: string;
803
+ partialLiquidationCount: string;
804
+ totalFullLiquidationValueUsd: string;
805
+ totalPartialLiquidationValueUsd: string;
806
+ totalUnpaidDebtUsd: string;
807
+ marketStats: Record<string, MarketLiquidationStats>;
808
+ tokenStats: Record<string, TokenLiquidationStats>;
809
+ }
810
+ interface GetUserAggregatedLiquidationStatsResponse {
811
+ userAggregatedLiquidationStats: UserAggregatedLiquidationStats;
812
+ }
756
813
  interface GetUserAggregatedReferralStatsRequest {
757
814
  userId: string;
758
815
  paginationCursor?: PaginationCursor;
@@ -770,6 +827,34 @@ interface GetUserAggregatedReferralStatsResponse {
770
827
  stats: UserAggregatedReferralStats[];
771
828
  paginationCursor?: PaginationCursor;
772
829
  }
830
+ interface GetUserAggregatedReferralStatsV2Request {
831
+ userId: string;
832
+ paginationCursor?: PaginationCursor;
833
+ }
834
+ interface UserAggregatedReferralStatsV2 {
835
+ referralOwnerId: string;
836
+ referralUserId: string;
837
+ referralUserAlias: string;
838
+ referralUserRegistrationTimestamp: string;
839
+ accReferralValue: Record<string, TokenAmountUsd>;
840
+ referredUserVolume: string;
841
+ totalEarnedInUsd: string;
842
+ }
843
+ interface GetUserAggregatedReferralStatsV2Response {
844
+ stats: UserAggregatedReferralStatsV2[];
845
+ paginationCursor?: PaginationCursor;
846
+ }
847
+ interface GetUserAggregatedRewardsValueRequest {
848
+ userId: string;
849
+ }
850
+ interface UserAggregatedRewardsValue {
851
+ userId: string;
852
+ rewardsValue: Record<string, TokenAmountUsd>;
853
+ totalEarnedInUsd: string;
854
+ }
855
+ interface GetUserAggregatedRewardsValueResponse {
856
+ userAggregatedRewardsValue: UserAggregatedRewardsValue;
857
+ }
773
858
  interface GetUserAggregatedStatsRequest {
774
859
  userId: string;
775
860
  }
@@ -793,6 +878,30 @@ interface UserAggregatedStats {
793
878
  interface GetUserAggregatedStatsResponse {
794
879
  userAggregatedStats: UserAggregatedStats;
795
880
  }
881
+ interface GetUserAggregatedStatsV2Request {
882
+ userId: string;
883
+ }
884
+ interface MarketStatsResponse {
885
+ tradeVolumeMaker: string;
886
+ tradeVolumeTaker: string;
887
+ tradeCountMaker: string;
888
+ tradeCountTaker: string;
889
+ paidFeeMaker: string;
890
+ paidFeeTaker: string;
891
+ }
892
+ interface UserAggregatedStatsV2 {
893
+ userId: string;
894
+ spotStats: Record<string, MarketStatsResponse>;
895
+ perpStats: Record<string, MarketStatsResponse>;
896
+ earnedFee: Record<string, TokenAmountUsd>;
897
+ tokenDepositAmounts: Record<string, TokenAmountUsd>;
898
+ tokenWithdrawAmounts: Record<string, TokenAmountUsd>;
899
+ tokenTransferInAmounts: Record<string, TokenAmountUsd>;
900
+ tokenTransferOutAmounts: Record<string, TokenAmountUsd>;
901
+ }
902
+ interface GetUserAggregatedStatsV2Response {
903
+ userAggregatedStats: UserAggregatedStatsV2;
904
+ }
796
905
  interface GetUserAggregatedVaultStatsRequest {
797
906
  userId: string;
798
907
  vaultId?: string;
@@ -829,6 +938,28 @@ interface GetUserBoxRewardsStatsHistoryResponse {
829
938
  stats: HistoricalBoxRewardsStats[];
830
939
  paginationCursor?: PaginationCursor;
831
940
  }
941
+ interface GetUserBoxRewardsStatsV2HistoryRequest {
942
+ userId: string;
943
+ olderTimestampMs?: string;
944
+ newerTimestampMs?: string;
945
+ paginationCursor?: PaginationCursor;
946
+ }
947
+ interface HistoricalBoxRewardsStatsV2 {
948
+ userId: string;
949
+ boxOpeningCount: Record<string, string>;
950
+ boxTierRewards: Record<BoxRewardTier, string>;
951
+ tokenRewards: Record<string, TokenAmountUsd>;
952
+ badges: Record<BoxRewardTier, string>;
953
+ pointsRewardsTotal: string;
954
+ pointsCostTotal: string;
955
+ valueInUsd: string;
956
+ timestampOpen: string;
957
+ timestampClose: string;
958
+ }
959
+ interface GetUserBoxRewardsStatsV2HistoryResponse {
960
+ stats: HistoricalBoxRewardsStatsV2[];
961
+ paginationCursor?: PaginationCursor;
962
+ }
832
963
  interface GetUserBoxesHistoryRequest {
833
964
  userId: string;
834
965
  olderTimestampMs?: string;
@@ -1147,6 +1278,22 @@ interface GetUserReferralStatsHistoryResponse {
1147
1278
  stats: HistoricalReferralStats[];
1148
1279
  paginationCursor?: PaginationCursor;
1149
1280
  }
1281
+ interface GetUserReferralStatsV2HistoryRequest {
1282
+ userId: string;
1283
+ olderTimestampMs?: string;
1284
+ newerTimestampMs?: string;
1285
+ paginationCursor?: PaginationCursor;
1286
+ }
1287
+ interface HistoricalReferralStatsV2 {
1288
+ userId: string;
1289
+ referralsValue: Record<string, Record<string, TokenAmountUsd>>;
1290
+ timestampOpen: string;
1291
+ timestampClose: string;
1292
+ }
1293
+ interface GetUserReferralStatsV2HistoryResponse {
1294
+ stats: HistoricalReferralStatsV2[];
1295
+ paginationCursor?: PaginationCursor;
1296
+ }
1150
1297
  interface GetUserRewardsValueRequest {
1151
1298
  userId: string;
1152
1299
  olderTimestampMs?: string;
@@ -1163,6 +1310,22 @@ interface GetUserRewardsValueResponse {
1163
1310
  rewardsValues: UserRewardsValue[];
1164
1311
  paginationCursor?: PaginationCursor;
1165
1312
  }
1313
+ interface GetUserRewardsValueV2Request {
1314
+ userId: string;
1315
+ olderTimestampMs?: string;
1316
+ newerTimestampMs?: string;
1317
+ paginationCursor?: PaginationCursor;
1318
+ }
1319
+ interface UserRewardsValueV2 {
1320
+ userId: string;
1321
+ rewards: Record<string, TokenAmountUsd>;
1322
+ timestampOpen: string;
1323
+ timestampClose: string;
1324
+ }
1325
+ interface GetUserRewardsValueV2Response {
1326
+ rewardsValues: UserRewardsValueV2[];
1327
+ paginationCursor?: PaginationCursor;
1328
+ }
1166
1329
  interface GetUserTradeStatsHistoryRequest {
1167
1330
  userId: string;
1168
1331
  olderTimestampMs?: string;
@@ -1189,6 +1352,28 @@ interface GetUserTradeStatsHistoryResponse {
1189
1352
  stats: HistoricalTradeStats[];
1190
1353
  paginationCursor?: PaginationCursor;
1191
1354
  }
1355
+ interface GetUserTradeStatsV2HistoryRequest {
1356
+ userId: string;
1357
+ olderTimestampMs?: string;
1358
+ newerTimestampMs?: string;
1359
+ paginationCursor?: PaginationCursor;
1360
+ }
1361
+ interface HistoricalTradeStatsV2 {
1362
+ userId: string;
1363
+ spotStats: Record<string, MarketStatsResponse>;
1364
+ perpStats: Record<string, MarketStatsResponse>;
1365
+ earnedFee: Record<string, TokenAmountUsd>;
1366
+ timestampOpen: string;
1367
+ timestampClose: string;
1368
+ tokenDepositAmounts: Record<string, TokenAmountUsd>;
1369
+ tokenWithdrawAmounts: Record<string, TokenAmountUsd>;
1370
+ tokenTransferInAmounts: Record<string, TokenAmountUsd>;
1371
+ tokenTransferOutAmounts: Record<string, TokenAmountUsd>;
1372
+ }
1373
+ interface GetUserTradeStatsV2HistoryResponse {
1374
+ stats: HistoricalTradeStatsV2[];
1375
+ paginationCursor?: PaginationCursor;
1376
+ }
1192
1377
  interface GetUserTransferHistoryRequest {
1193
1378
  userId: string;
1194
1379
  olderTimestampMs?: string;
@@ -1831,6 +2016,17 @@ declare enum EndpointsV1 {
1831
2016
  GetUserAccountValueRanking = "/v1/get_user_account_value_ranking",
1832
2017
  GetExchangeStatsHistory = "/v1/get_exchange_stats_history"
1833
2018
  }
2019
+ declare enum EndpointsV2 {
2020
+ GetUserAggregatedStats = "/v2/get_user_aggregated_stats",
2021
+ GetUserAggregatedReferral = "/v2/get_user_aggregated_referral",
2022
+ GetUserReferralStats = "/v2/get_user_referral_stats",
2023
+ GetUserTradeStats = "/v2/get_user_trade_stats",
2024
+ GetUserAggregatedBoxRewardsStats = "/v2/get_user_aggregated_box_rewards_stats",
2025
+ GetUserBoxRewardsStats = "/v2/get_user_box_rewards_stats",
2026
+ GetUserRewardsValue = "/v2/get_user_rewards_value",
2027
+ GetUserAggregatedRewardsValue = "/v2/get_user_aggregated_rewards_value",
2028
+ GetUserAggregatedLiquidationStats = "/v2/get_user_aggregated_liquidation_stats"
2029
+ }
1834
2030
  type Topic = {
1835
2031
  type: 'PerpMarket';
1836
2032
  content: string;
@@ -2190,7 +2386,7 @@ declare function createAptosClientFromEnv(): Aptos;
2190
2386
  */
2191
2387
  declare function getABIsForNetwork(networkMode: NetworkMode): {
2192
2388
  FaucetEntrypointsABI?: {
2193
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2389
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2194
2390
  readonly name: "faucet_entrypoints";
2195
2391
  readonly friends: readonly [];
2196
2392
  readonly exposed_functions: readonly [{
@@ -2229,7 +2425,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2229
2425
  readonly structs: readonly [];
2230
2426
  } | undefined;
2231
2427
  TestMockOraclePricesABI?: {
2232
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2428
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2233
2429
  readonly name: "test_mock_oracle_prices";
2234
2430
  readonly friends: readonly [];
2235
2431
  readonly exposed_functions: readonly [{
@@ -2244,7 +2440,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2244
2440
  readonly structs: readonly [];
2245
2441
  } | undefined;
2246
2442
  TestFaucetABI?: {
2247
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2443
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2248
2444
  readonly name: "test_faucet";
2249
2445
  readonly friends: readonly [];
2250
2446
  readonly exposed_functions: readonly [{
@@ -2270,7 +2466,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2270
2466
  readonly is_view: false;
2271
2467
  readonly generic_type_params: readonly [];
2272
2468
  readonly params: readonly ["&signer", "vector<u8>"];
2273
- readonly return: readonly ["0x1::object::ConstructorRef", "0x1::object::Object<0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32::test_faucet::Token>"];
2469
+ readonly return: readonly ["0x1::object::ConstructorRef", "0x1::object::Object<0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e::test_faucet::Token>"];
2274
2470
  }, {
2275
2471
  readonly name: "get_faucet_data";
2276
2472
  readonly visibility: "public";
@@ -2350,7 +2546,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2350
2546
  readonly is_view: false;
2351
2547
  readonly generic_type_params: readonly [];
2352
2548
  readonly params: readonly ["0x1::fungible_asset::MintRef", "0x1::object::Object<0x1::fungible_asset::Metadata>"];
2353
- readonly return: readonly ["0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32::test_faucet::FaucetToken"];
2549
+ readonly return: readonly ["0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e::test_faucet::FaucetToken"];
2354
2550
  }, {
2355
2551
  readonly name: "remove_token";
2356
2552
  readonly visibility: "public";
@@ -2380,7 +2576,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2380
2576
  readonly generic_type_params: readonly [];
2381
2577
  readonly fields: readonly [{
2382
2578
  readonly name: "tokens";
2383
- readonly type: "0x1::smart_table::SmartTable<vector<u8>, 0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32::test_faucet::FaucetToken>";
2579
+ readonly type: "0x1::smart_table::SmartTable<vector<u8>, 0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e::test_faucet::FaucetToken>";
2384
2580
  }];
2385
2581
  }, {
2386
2582
  readonly name: "FaucetToken";
@@ -2413,7 +2609,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2413
2609
  }];
2414
2610
  readonly structs: readonly [];
2415
2611
  } | {
2416
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2612
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2417
2613
  readonly name: "add_api_key";
2418
2614
  readonly friends: readonly [];
2419
2615
  readonly exposed_functions: readonly [{
@@ -2442,7 +2638,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2442
2638
  }];
2443
2639
  readonly structs: readonly [];
2444
2640
  } | {
2445
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2641
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2446
2642
  readonly name: "add_credits";
2447
2643
  readonly friends: readonly [];
2448
2644
  readonly exposed_functions: readonly [{
@@ -2471,7 +2667,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2471
2667
  }];
2472
2668
  readonly structs: readonly [];
2473
2669
  } | {
2474
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2670
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2475
2671
  readonly name: "cancel_all_perp_orders";
2476
2672
  readonly friends: readonly [];
2477
2673
  readonly exposed_functions: readonly [{
@@ -2500,7 +2696,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2500
2696
  }];
2501
2697
  readonly structs: readonly [];
2502
2698
  } | {
2503
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2699
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2504
2700
  readonly name: "cancel_all_spot_orders";
2505
2701
  readonly friends: readonly [];
2506
2702
  readonly exposed_functions: readonly [{
@@ -2529,7 +2725,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2529
2725
  }];
2530
2726
  readonly structs: readonly [];
2531
2727
  } | {
2532
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2728
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2533
2729
  readonly name: "cancel_perp_orders";
2534
2730
  readonly friends: readonly [];
2535
2731
  readonly exposed_functions: readonly [{
@@ -2558,7 +2754,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2558
2754
  }];
2559
2755
  readonly structs: readonly [];
2560
2756
  } | {
2561
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2757
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2562
2758
  readonly name: "cancel_spot_orders";
2563
2759
  readonly friends: readonly [];
2564
2760
  readonly exposed_functions: readonly [{
@@ -2587,7 +2783,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2587
2783
  }];
2588
2784
  readonly structs: readonly [];
2589
2785
  } | {
2590
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2786
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2591
2787
  readonly name: "change_perp_order";
2592
2788
  readonly friends: readonly [];
2593
2789
  readonly exposed_functions: readonly [{
@@ -2616,7 +2812,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2616
2812
  }];
2617
2813
  readonly structs: readonly [];
2618
2814
  } | {
2619
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2815
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2620
2816
  readonly name: "change_spot_order";
2621
2817
  readonly friends: readonly [];
2622
2818
  readonly exposed_functions: readonly [{
@@ -2645,7 +2841,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2645
2841
  }];
2646
2842
  readonly structs: readonly [];
2647
2843
  } | {
2648
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2844
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2649
2845
  readonly name: "claim_deposit";
2650
2846
  readonly friends: readonly [];
2651
2847
  readonly exposed_functions: readonly [{
@@ -2674,7 +2870,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2674
2870
  }];
2675
2871
  readonly structs: readonly [];
2676
2872
  } | {
2677
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2873
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2678
2874
  readonly name: "claim_kickback_fee";
2679
2875
  readonly friends: readonly [];
2680
2876
  readonly exposed_functions: readonly [{
@@ -2703,7 +2899,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2703
2899
  }];
2704
2900
  readonly structs: readonly [];
2705
2901
  } | {
2706
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2902
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2707
2903
  readonly name: "claim_referral_fees";
2708
2904
  readonly friends: readonly [];
2709
2905
  readonly exposed_functions: readonly [{
@@ -2732,7 +2928,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2732
2928
  }];
2733
2929
  readonly structs: readonly [];
2734
2930
  } | {
2735
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2931
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2736
2932
  readonly name: "create_user";
2737
2933
  readonly friends: readonly [];
2738
2934
  readonly exposed_functions: readonly [{
@@ -2761,7 +2957,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2761
2957
  }];
2762
2958
  readonly structs: readonly [];
2763
2959
  } | {
2764
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2960
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2765
2961
  readonly name: "deposit_token";
2766
2962
  readonly friends: readonly [];
2767
2963
  readonly exposed_functions: readonly [{
@@ -2790,7 +2986,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2790
2986
  }];
2791
2987
  readonly structs: readonly [];
2792
2988
  } | {
2793
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
2989
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2794
2990
  readonly name: "deposit_to_vault";
2795
2991
  readonly friends: readonly [];
2796
2992
  readonly exposed_functions: readonly [{
@@ -2819,7 +3015,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2819
3015
  }];
2820
3016
  readonly structs: readonly [];
2821
3017
  } | {
2822
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3018
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2823
3019
  readonly name: "lend_token";
2824
3020
  readonly friends: readonly [];
2825
3021
  readonly exposed_functions: readonly [{
@@ -2848,7 +3044,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2848
3044
  }];
2849
3045
  readonly structs: readonly [];
2850
3046
  } | {
2851
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3047
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2852
3048
  readonly name: "open_boxes";
2853
3049
  readonly friends: readonly [];
2854
3050
  readonly exposed_functions: readonly [{
@@ -2877,7 +3073,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2877
3073
  }];
2878
3074
  readonly structs: readonly [];
2879
3075
  } | {
2880
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3076
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2881
3077
  readonly name: "place_multiple_perp_orders";
2882
3078
  readonly friends: readonly [];
2883
3079
  readonly exposed_functions: readonly [{
@@ -2906,7 +3102,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2906
3102
  }];
2907
3103
  readonly structs: readonly [];
2908
3104
  } | {
2909
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3105
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2910
3106
  readonly name: "place_multiple_spot_orders";
2911
3107
  readonly friends: readonly [];
2912
3108
  readonly exposed_functions: readonly [{
@@ -2935,7 +3131,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2935
3131
  }];
2936
3132
  readonly structs: readonly [];
2937
3133
  } | {
2938
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3134
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2939
3135
  readonly name: "place_perp_limit_order";
2940
3136
  readonly friends: readonly [];
2941
3137
  readonly exposed_functions: readonly [{
@@ -2964,7 +3160,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2964
3160
  }];
2965
3161
  readonly structs: readonly [];
2966
3162
  } | {
2967
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3163
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2968
3164
  readonly name: "place_perp_market_order";
2969
3165
  readonly friends: readonly [];
2970
3166
  readonly exposed_functions: readonly [{
@@ -2993,7 +3189,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
2993
3189
  }];
2994
3190
  readonly structs: readonly [];
2995
3191
  } | {
2996
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3192
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
2997
3193
  readonly name: "place_perp_trigger_order";
2998
3194
  readonly friends: readonly [];
2999
3195
  readonly exposed_functions: readonly [{
@@ -3022,7 +3218,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3022
3218
  }];
3023
3219
  readonly structs: readonly [];
3024
3220
  } | {
3025
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3221
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3026
3222
  readonly name: "place_spot_limit_order";
3027
3223
  readonly friends: readonly [];
3028
3224
  readonly exposed_functions: readonly [{
@@ -3051,7 +3247,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3051
3247
  }];
3052
3248
  readonly structs: readonly [];
3053
3249
  } | {
3054
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3250
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3055
3251
  readonly name: "place_spot_market_order";
3056
3252
  readonly friends: readonly [];
3057
3253
  readonly exposed_functions: readonly [{
@@ -3080,7 +3276,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3080
3276
  }];
3081
3277
  readonly structs: readonly [];
3082
3278
  } | {
3083
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3279
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3084
3280
  readonly name: "redeem_token";
3085
3281
  readonly friends: readonly [];
3086
3282
  readonly exposed_functions: readonly [{
@@ -3109,7 +3305,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3109
3305
  }];
3110
3306
  readonly structs: readonly [];
3111
3307
  } | {
3112
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3308
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3113
3309
  readonly name: "remove_api_key";
3114
3310
  readonly friends: readonly [];
3115
3311
  readonly exposed_functions: readonly [{
@@ -3138,7 +3334,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3138
3334
  }];
3139
3335
  readonly structs: readonly [];
3140
3336
  } | {
3141
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3337
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3142
3338
  readonly name: "remove_api_key_signer";
3143
3339
  readonly friends: readonly [];
3144
3340
  readonly exposed_functions: readonly [{
@@ -3167,7 +3363,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3167
3363
  }];
3168
3364
  readonly structs: readonly [];
3169
3365
  } | {
3170
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3366
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3171
3367
  readonly name: "replace_multiple_orders";
3172
3368
  readonly friends: readonly [];
3173
3369
  readonly exposed_functions: readonly [{
@@ -3196,7 +3392,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3196
3392
  }];
3197
3393
  readonly structs: readonly [];
3198
3394
  } | {
3199
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3395
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3200
3396
  readonly name: "replace_multiple_spot_orders";
3201
3397
  readonly friends: readonly [];
3202
3398
  readonly exposed_functions: readonly [{
@@ -3225,7 +3421,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3225
3421
  }];
3226
3422
  readonly structs: readonly [];
3227
3423
  } | {
3228
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3424
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3229
3425
  readonly name: "set_alias_name";
3230
3426
  readonly friends: readonly [];
3231
3427
  readonly exposed_functions: readonly [{
@@ -3254,7 +3450,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3254
3450
  }];
3255
3451
  readonly structs: readonly [];
3256
3452
  } | {
3257
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3453
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3258
3454
  readonly name: "set_autolend";
3259
3455
  readonly friends: readonly [];
3260
3456
  readonly exposed_functions: readonly [{
@@ -3283,7 +3479,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3283
3479
  }];
3284
3480
  readonly structs: readonly [];
3285
3481
  } | {
3286
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3482
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3287
3483
  readonly name: "set_referral_code";
3288
3484
  readonly friends: readonly [];
3289
3485
  readonly exposed_functions: readonly [{
@@ -3312,7 +3508,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3312
3508
  }];
3313
3509
  readonly structs: readonly [];
3314
3510
  } | {
3315
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3511
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3316
3512
  readonly name: "tokenize_user_vault_investment";
3317
3513
  readonly friends: readonly [];
3318
3514
  readonly exposed_functions: readonly [{
@@ -3341,7 +3537,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3341
3537
  }];
3342
3538
  readonly structs: readonly [];
3343
3539
  } | {
3344
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3540
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3345
3541
  readonly name: "transfer_to_user";
3346
3542
  readonly friends: readonly [];
3347
3543
  readonly exposed_functions: readonly [{
@@ -3370,7 +3566,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3370
3566
  }];
3371
3567
  readonly structs: readonly [];
3372
3568
  } | {
3373
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3569
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3374
3570
  readonly name: "withdraw_from_vault";
3375
3571
  readonly friends: readonly [];
3376
3572
  readonly exposed_functions: readonly [{
@@ -3399,7 +3595,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3399
3595
  }];
3400
3596
  readonly structs: readonly [];
3401
3597
  } | {
3402
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3598
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3403
3599
  readonly name: "withdraw_token";
3404
3600
  readonly friends: readonly [];
3405
3601
  readonly exposed_functions: readonly [{
@@ -3428,7 +3624,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3428
3624
  }];
3429
3625
  readonly structs: readonly [];
3430
3626
  } | {
3431
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3627
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3432
3628
  readonly name: "init_exchange";
3433
3629
  readonly friends: readonly [];
3434
3630
  readonly exposed_functions: readonly [{
@@ -3457,7 +3653,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3457
3653
  }];
3458
3654
  readonly structs: readonly [];
3459
3655
  } | {
3460
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3656
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3461
3657
  readonly name: "add_dev_address";
3462
3658
  readonly friends: readonly [];
3463
3659
  readonly exposed_functions: readonly [{
@@ -3486,7 +3682,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3486
3682
  }];
3487
3683
  readonly structs: readonly [];
3488
3684
  } | {
3489
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3685
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3490
3686
  readonly name: "remove_dev_address";
3491
3687
  readonly friends: readonly [];
3492
3688
  readonly exposed_functions: readonly [{
@@ -3515,7 +3711,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3515
3711
  }];
3516
3712
  readonly structs: readonly [];
3517
3713
  } | {
3518
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3714
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3519
3715
  readonly name: "add_token_to_oracle";
3520
3716
  readonly friends: readonly [];
3521
3717
  readonly exposed_functions: readonly [{
@@ -3544,7 +3740,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3544
3740
  }];
3545
3741
  readonly structs: readonly [];
3546
3742
  } | {
3547
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3743
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3548
3744
  readonly name: "admin_claim_deposit";
3549
3745
  readonly friends: readonly [];
3550
3746
  readonly exposed_functions: readonly [{
@@ -3573,7 +3769,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3573
3769
  }];
3574
3770
  readonly structs: readonly [];
3575
3771
  } | {
3576
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3772
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3577
3773
  readonly name: "add_new_token";
3578
3774
  readonly friends: readonly [];
3579
3775
  readonly exposed_functions: readonly [{
@@ -3602,7 +3798,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3602
3798
  }];
3603
3799
  readonly structs: readonly [];
3604
3800
  } | {
3605
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3801
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3606
3802
  readonly name: "update_oracle_prices";
3607
3803
  readonly friends: readonly [];
3608
3804
  readonly exposed_functions: readonly [{
@@ -3631,7 +3827,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3631
3827
  }];
3632
3828
  readonly structs: readonly [];
3633
3829
  } | {
3634
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3830
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3635
3831
  readonly name: "add_new_perp_market";
3636
3832
  readonly friends: readonly [];
3637
3833
  readonly exposed_functions: readonly [{
@@ -3660,7 +3856,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3660
3856
  }];
3661
3857
  readonly structs: readonly [];
3662
3858
  } | {
3663
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3859
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3664
3860
  readonly name: "add_new_spot_market";
3665
3861
  readonly friends: readonly [];
3666
3862
  readonly exposed_functions: readonly [{
@@ -3689,7 +3885,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3689
3885
  }];
3690
3886
  readonly structs: readonly [];
3691
3887
  } | {
3692
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3888
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3693
3889
  readonly name: "update_fee_tiers";
3694
3890
  readonly friends: readonly [];
3695
3891
  readonly exposed_functions: readonly [{
@@ -3718,7 +3914,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3718
3914
  }];
3719
3915
  readonly structs: readonly [];
3720
3916
  } | {
3721
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3917
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3722
3918
  readonly name: "settle_market";
3723
3919
  readonly friends: readonly [];
3724
3920
  readonly exposed_functions: readonly [{
@@ -3747,7 +3943,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3747
3943
  }];
3748
3944
  readonly structs: readonly [];
3749
3945
  } | {
3750
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3946
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3751
3947
  readonly name: "add_new_lp_token";
3752
3948
  readonly friends: readonly [];
3753
3949
  readonly exposed_functions: readonly [{
@@ -3776,7 +3972,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3776
3972
  }];
3777
3973
  readonly structs: readonly [];
3778
3974
  } | {
3779
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
3975
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3780
3976
  readonly name: "set_system_haircut";
3781
3977
  readonly friends: readonly [];
3782
3978
  readonly exposed_functions: readonly [{
@@ -3805,7 +4001,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3805
4001
  }];
3806
4002
  readonly structs: readonly [];
3807
4003
  } | {
3808
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4004
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3809
4005
  readonly name: "set_fee_data";
3810
4006
  readonly friends: readonly [];
3811
4007
  readonly exposed_functions: readonly [{
@@ -3834,7 +4030,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3834
4030
  }];
3835
4031
  readonly structs: readonly [];
3836
4032
  } | {
3837
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4033
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3838
4034
  readonly name: "change_perp_market_data";
3839
4035
  readonly friends: readonly [];
3840
4036
  readonly exposed_functions: readonly [{
@@ -3863,7 +4059,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3863
4059
  }];
3864
4060
  readonly structs: readonly [];
3865
4061
  } | {
3866
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4062
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3867
4063
  readonly name: "change_spot_market_data";
3868
4064
  readonly friends: readonly [];
3869
4065
  readonly exposed_functions: readonly [{
@@ -3892,7 +4088,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3892
4088
  }];
3893
4089
  readonly structs: readonly [];
3894
4090
  } | {
3895
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4091
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3896
4092
  readonly name: "change_token_data";
3897
4093
  readonly friends: readonly [];
3898
4094
  readonly exposed_functions: readonly [{
@@ -3921,7 +4117,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3921
4117
  }];
3922
4118
  readonly structs: readonly [];
3923
4119
  } | {
3924
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4120
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3925
4121
  readonly name: "predeposit_to_vault";
3926
4122
  readonly friends: readonly [];
3927
4123
  readonly exposed_functions: readonly [{
@@ -3950,7 +4146,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3950
4146
  }];
3951
4147
  readonly structs: readonly [];
3952
4148
  } | {
3953
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4149
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3954
4150
  readonly name: "airdrop_points";
3955
4151
  readonly friends: readonly [];
3956
4152
  readonly exposed_functions: readonly [{
@@ -3973,7 +4169,7 @@ declare function getABIsForNetwork(networkMode: NetworkMode): {
3973
4169
  */
3974
4170
  declare const ABIs: {
3975
4171
  FaucetEntrypointsABI?: {
3976
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4172
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
3977
4173
  readonly name: "faucet_entrypoints";
3978
4174
  readonly friends: readonly [];
3979
4175
  readonly exposed_functions: readonly [{
@@ -4012,7 +4208,7 @@ declare const ABIs: {
4012
4208
  readonly structs: readonly [];
4013
4209
  } | undefined;
4014
4210
  TestMockOraclePricesABI?: {
4015
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4211
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4016
4212
  readonly name: "test_mock_oracle_prices";
4017
4213
  readonly friends: readonly [];
4018
4214
  readonly exposed_functions: readonly [{
@@ -4027,7 +4223,7 @@ declare const ABIs: {
4027
4223
  readonly structs: readonly [];
4028
4224
  } | undefined;
4029
4225
  TestFaucetABI?: {
4030
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4226
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4031
4227
  readonly name: "test_faucet";
4032
4228
  readonly friends: readonly [];
4033
4229
  readonly exposed_functions: readonly [{
@@ -4053,7 +4249,7 @@ declare const ABIs: {
4053
4249
  readonly is_view: false;
4054
4250
  readonly generic_type_params: readonly [];
4055
4251
  readonly params: readonly ["&signer", "vector<u8>"];
4056
- readonly return: readonly ["0x1::object::ConstructorRef", "0x1::object::Object<0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32::test_faucet::Token>"];
4252
+ readonly return: readonly ["0x1::object::ConstructorRef", "0x1::object::Object<0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e::test_faucet::Token>"];
4057
4253
  }, {
4058
4254
  readonly name: "get_faucet_data";
4059
4255
  readonly visibility: "public";
@@ -4133,7 +4329,7 @@ declare const ABIs: {
4133
4329
  readonly is_view: false;
4134
4330
  readonly generic_type_params: readonly [];
4135
4331
  readonly params: readonly ["0x1::fungible_asset::MintRef", "0x1::object::Object<0x1::fungible_asset::Metadata>"];
4136
- readonly return: readonly ["0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32::test_faucet::FaucetToken"];
4332
+ readonly return: readonly ["0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e::test_faucet::FaucetToken"];
4137
4333
  }, {
4138
4334
  readonly name: "remove_token";
4139
4335
  readonly visibility: "public";
@@ -4163,7 +4359,7 @@ declare const ABIs: {
4163
4359
  readonly generic_type_params: readonly [];
4164
4360
  readonly fields: readonly [{
4165
4361
  readonly name: "tokens";
4166
- readonly type: "0x1::smart_table::SmartTable<vector<u8>, 0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32::test_faucet::FaucetToken>";
4362
+ readonly type: "0x1::smart_table::SmartTable<vector<u8>, 0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e::test_faucet::FaucetToken>";
4167
4363
  }];
4168
4364
  }, {
4169
4365
  readonly name: "FaucetToken";
@@ -4196,7 +4392,7 @@ declare const ABIs: {
4196
4392
  }];
4197
4393
  readonly structs: readonly [];
4198
4394
  } | {
4199
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4395
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4200
4396
  readonly name: "add_api_key";
4201
4397
  readonly friends: readonly [];
4202
4398
  readonly exposed_functions: readonly [{
@@ -4225,7 +4421,7 @@ declare const ABIs: {
4225
4421
  }];
4226
4422
  readonly structs: readonly [];
4227
4423
  } | {
4228
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4424
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4229
4425
  readonly name: "add_credits";
4230
4426
  readonly friends: readonly [];
4231
4427
  readonly exposed_functions: readonly [{
@@ -4254,7 +4450,7 @@ declare const ABIs: {
4254
4450
  }];
4255
4451
  readonly structs: readonly [];
4256
4452
  } | {
4257
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4453
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4258
4454
  readonly name: "cancel_all_perp_orders";
4259
4455
  readonly friends: readonly [];
4260
4456
  readonly exposed_functions: readonly [{
@@ -4283,7 +4479,7 @@ declare const ABIs: {
4283
4479
  }];
4284
4480
  readonly structs: readonly [];
4285
4481
  } | {
4286
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4482
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4287
4483
  readonly name: "cancel_all_spot_orders";
4288
4484
  readonly friends: readonly [];
4289
4485
  readonly exposed_functions: readonly [{
@@ -4312,7 +4508,7 @@ declare const ABIs: {
4312
4508
  }];
4313
4509
  readonly structs: readonly [];
4314
4510
  } | {
4315
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4511
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4316
4512
  readonly name: "cancel_perp_orders";
4317
4513
  readonly friends: readonly [];
4318
4514
  readonly exposed_functions: readonly [{
@@ -4341,7 +4537,7 @@ declare const ABIs: {
4341
4537
  }];
4342
4538
  readonly structs: readonly [];
4343
4539
  } | {
4344
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4540
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4345
4541
  readonly name: "cancel_spot_orders";
4346
4542
  readonly friends: readonly [];
4347
4543
  readonly exposed_functions: readonly [{
@@ -4370,7 +4566,7 @@ declare const ABIs: {
4370
4566
  }];
4371
4567
  readonly structs: readonly [];
4372
4568
  } | {
4373
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4569
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4374
4570
  readonly name: "change_perp_order";
4375
4571
  readonly friends: readonly [];
4376
4572
  readonly exposed_functions: readonly [{
@@ -4399,7 +4595,7 @@ declare const ABIs: {
4399
4595
  }];
4400
4596
  readonly structs: readonly [];
4401
4597
  } | {
4402
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4598
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4403
4599
  readonly name: "change_spot_order";
4404
4600
  readonly friends: readonly [];
4405
4601
  readonly exposed_functions: readonly [{
@@ -4428,7 +4624,7 @@ declare const ABIs: {
4428
4624
  }];
4429
4625
  readonly structs: readonly [];
4430
4626
  } | {
4431
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4627
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4432
4628
  readonly name: "claim_deposit";
4433
4629
  readonly friends: readonly [];
4434
4630
  readonly exposed_functions: readonly [{
@@ -4457,7 +4653,7 @@ declare const ABIs: {
4457
4653
  }];
4458
4654
  readonly structs: readonly [];
4459
4655
  } | {
4460
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4656
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4461
4657
  readonly name: "claim_kickback_fee";
4462
4658
  readonly friends: readonly [];
4463
4659
  readonly exposed_functions: readonly [{
@@ -4486,7 +4682,7 @@ declare const ABIs: {
4486
4682
  }];
4487
4683
  readonly structs: readonly [];
4488
4684
  } | {
4489
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4685
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4490
4686
  readonly name: "claim_referral_fees";
4491
4687
  readonly friends: readonly [];
4492
4688
  readonly exposed_functions: readonly [{
@@ -4515,7 +4711,7 @@ declare const ABIs: {
4515
4711
  }];
4516
4712
  readonly structs: readonly [];
4517
4713
  } | {
4518
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4714
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4519
4715
  readonly name: "create_user";
4520
4716
  readonly friends: readonly [];
4521
4717
  readonly exposed_functions: readonly [{
@@ -4544,7 +4740,7 @@ declare const ABIs: {
4544
4740
  }];
4545
4741
  readonly structs: readonly [];
4546
4742
  } | {
4547
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4743
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4548
4744
  readonly name: "deposit_token";
4549
4745
  readonly friends: readonly [];
4550
4746
  readonly exposed_functions: readonly [{
@@ -4573,7 +4769,7 @@ declare const ABIs: {
4573
4769
  }];
4574
4770
  readonly structs: readonly [];
4575
4771
  } | {
4576
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4772
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4577
4773
  readonly name: "deposit_to_vault";
4578
4774
  readonly friends: readonly [];
4579
4775
  readonly exposed_functions: readonly [{
@@ -4602,7 +4798,7 @@ declare const ABIs: {
4602
4798
  }];
4603
4799
  readonly structs: readonly [];
4604
4800
  } | {
4605
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4801
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4606
4802
  readonly name: "lend_token";
4607
4803
  readonly friends: readonly [];
4608
4804
  readonly exposed_functions: readonly [{
@@ -4631,7 +4827,7 @@ declare const ABIs: {
4631
4827
  }];
4632
4828
  readonly structs: readonly [];
4633
4829
  } | {
4634
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4830
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4635
4831
  readonly name: "open_boxes";
4636
4832
  readonly friends: readonly [];
4637
4833
  readonly exposed_functions: readonly [{
@@ -4660,7 +4856,7 @@ declare const ABIs: {
4660
4856
  }];
4661
4857
  readonly structs: readonly [];
4662
4858
  } | {
4663
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4859
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4664
4860
  readonly name: "place_multiple_perp_orders";
4665
4861
  readonly friends: readonly [];
4666
4862
  readonly exposed_functions: readonly [{
@@ -4689,7 +4885,7 @@ declare const ABIs: {
4689
4885
  }];
4690
4886
  readonly structs: readonly [];
4691
4887
  } | {
4692
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4888
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4693
4889
  readonly name: "place_multiple_spot_orders";
4694
4890
  readonly friends: readonly [];
4695
4891
  readonly exposed_functions: readonly [{
@@ -4718,7 +4914,7 @@ declare const ABIs: {
4718
4914
  }];
4719
4915
  readonly structs: readonly [];
4720
4916
  } | {
4721
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4917
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4722
4918
  readonly name: "place_perp_limit_order";
4723
4919
  readonly friends: readonly [];
4724
4920
  readonly exposed_functions: readonly [{
@@ -4747,7 +4943,7 @@ declare const ABIs: {
4747
4943
  }];
4748
4944
  readonly structs: readonly [];
4749
4945
  } | {
4750
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4946
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4751
4947
  readonly name: "place_perp_market_order";
4752
4948
  readonly friends: readonly [];
4753
4949
  readonly exposed_functions: readonly [{
@@ -4776,7 +4972,7 @@ declare const ABIs: {
4776
4972
  }];
4777
4973
  readonly structs: readonly [];
4778
4974
  } | {
4779
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
4975
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4780
4976
  readonly name: "place_perp_trigger_order";
4781
4977
  readonly friends: readonly [];
4782
4978
  readonly exposed_functions: readonly [{
@@ -4805,7 +5001,7 @@ declare const ABIs: {
4805
5001
  }];
4806
5002
  readonly structs: readonly [];
4807
5003
  } | {
4808
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5004
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4809
5005
  readonly name: "place_spot_limit_order";
4810
5006
  readonly friends: readonly [];
4811
5007
  readonly exposed_functions: readonly [{
@@ -4834,7 +5030,7 @@ declare const ABIs: {
4834
5030
  }];
4835
5031
  readonly structs: readonly [];
4836
5032
  } | {
4837
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5033
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4838
5034
  readonly name: "place_spot_market_order";
4839
5035
  readonly friends: readonly [];
4840
5036
  readonly exposed_functions: readonly [{
@@ -4863,7 +5059,7 @@ declare const ABIs: {
4863
5059
  }];
4864
5060
  readonly structs: readonly [];
4865
5061
  } | {
4866
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5062
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4867
5063
  readonly name: "redeem_token";
4868
5064
  readonly friends: readonly [];
4869
5065
  readonly exposed_functions: readonly [{
@@ -4892,7 +5088,7 @@ declare const ABIs: {
4892
5088
  }];
4893
5089
  readonly structs: readonly [];
4894
5090
  } | {
4895
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5091
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4896
5092
  readonly name: "remove_api_key";
4897
5093
  readonly friends: readonly [];
4898
5094
  readonly exposed_functions: readonly [{
@@ -4921,7 +5117,7 @@ declare const ABIs: {
4921
5117
  }];
4922
5118
  readonly structs: readonly [];
4923
5119
  } | {
4924
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5120
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4925
5121
  readonly name: "remove_api_key_signer";
4926
5122
  readonly friends: readonly [];
4927
5123
  readonly exposed_functions: readonly [{
@@ -4950,7 +5146,7 @@ declare const ABIs: {
4950
5146
  }];
4951
5147
  readonly structs: readonly [];
4952
5148
  } | {
4953
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5149
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4954
5150
  readonly name: "replace_multiple_orders";
4955
5151
  readonly friends: readonly [];
4956
5152
  readonly exposed_functions: readonly [{
@@ -4979,7 +5175,7 @@ declare const ABIs: {
4979
5175
  }];
4980
5176
  readonly structs: readonly [];
4981
5177
  } | {
4982
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5178
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
4983
5179
  readonly name: "replace_multiple_spot_orders";
4984
5180
  readonly friends: readonly [];
4985
5181
  readonly exposed_functions: readonly [{
@@ -5008,7 +5204,7 @@ declare const ABIs: {
5008
5204
  }];
5009
5205
  readonly structs: readonly [];
5010
5206
  } | {
5011
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5207
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5012
5208
  readonly name: "set_alias_name";
5013
5209
  readonly friends: readonly [];
5014
5210
  readonly exposed_functions: readonly [{
@@ -5037,7 +5233,7 @@ declare const ABIs: {
5037
5233
  }];
5038
5234
  readonly structs: readonly [];
5039
5235
  } | {
5040
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5236
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5041
5237
  readonly name: "set_autolend";
5042
5238
  readonly friends: readonly [];
5043
5239
  readonly exposed_functions: readonly [{
@@ -5066,7 +5262,7 @@ declare const ABIs: {
5066
5262
  }];
5067
5263
  readonly structs: readonly [];
5068
5264
  } | {
5069
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5265
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5070
5266
  readonly name: "set_referral_code";
5071
5267
  readonly friends: readonly [];
5072
5268
  readonly exposed_functions: readonly [{
@@ -5095,7 +5291,7 @@ declare const ABIs: {
5095
5291
  }];
5096
5292
  readonly structs: readonly [];
5097
5293
  } | {
5098
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5294
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5099
5295
  readonly name: "tokenize_user_vault_investment";
5100
5296
  readonly friends: readonly [];
5101
5297
  readonly exposed_functions: readonly [{
@@ -5124,7 +5320,7 @@ declare const ABIs: {
5124
5320
  }];
5125
5321
  readonly structs: readonly [];
5126
5322
  } | {
5127
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5323
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5128
5324
  readonly name: "transfer_to_user";
5129
5325
  readonly friends: readonly [];
5130
5326
  readonly exposed_functions: readonly [{
@@ -5153,7 +5349,7 @@ declare const ABIs: {
5153
5349
  }];
5154
5350
  readonly structs: readonly [];
5155
5351
  } | {
5156
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5352
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5157
5353
  readonly name: "withdraw_from_vault";
5158
5354
  readonly friends: readonly [];
5159
5355
  readonly exposed_functions: readonly [{
@@ -5182,7 +5378,7 @@ declare const ABIs: {
5182
5378
  }];
5183
5379
  readonly structs: readonly [];
5184
5380
  } | {
5185
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5381
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5186
5382
  readonly name: "withdraw_token";
5187
5383
  readonly friends: readonly [];
5188
5384
  readonly exposed_functions: readonly [{
@@ -5211,7 +5407,7 @@ declare const ABIs: {
5211
5407
  }];
5212
5408
  readonly structs: readonly [];
5213
5409
  } | {
5214
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5410
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5215
5411
  readonly name: "init_exchange";
5216
5412
  readonly friends: readonly [];
5217
5413
  readonly exposed_functions: readonly [{
@@ -5240,7 +5436,7 @@ declare const ABIs: {
5240
5436
  }];
5241
5437
  readonly structs: readonly [];
5242
5438
  } | {
5243
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5439
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5244
5440
  readonly name: "add_dev_address";
5245
5441
  readonly friends: readonly [];
5246
5442
  readonly exposed_functions: readonly [{
@@ -5269,7 +5465,7 @@ declare const ABIs: {
5269
5465
  }];
5270
5466
  readonly structs: readonly [];
5271
5467
  } | {
5272
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5468
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5273
5469
  readonly name: "remove_dev_address";
5274
5470
  readonly friends: readonly [];
5275
5471
  readonly exposed_functions: readonly [{
@@ -5298,7 +5494,7 @@ declare const ABIs: {
5298
5494
  }];
5299
5495
  readonly structs: readonly [];
5300
5496
  } | {
5301
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5497
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5302
5498
  readonly name: "add_token_to_oracle";
5303
5499
  readonly friends: readonly [];
5304
5500
  readonly exposed_functions: readonly [{
@@ -5327,7 +5523,7 @@ declare const ABIs: {
5327
5523
  }];
5328
5524
  readonly structs: readonly [];
5329
5525
  } | {
5330
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5526
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5331
5527
  readonly name: "admin_claim_deposit";
5332
5528
  readonly friends: readonly [];
5333
5529
  readonly exposed_functions: readonly [{
@@ -5356,7 +5552,7 @@ declare const ABIs: {
5356
5552
  }];
5357
5553
  readonly structs: readonly [];
5358
5554
  } | {
5359
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5555
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5360
5556
  readonly name: "add_new_token";
5361
5557
  readonly friends: readonly [];
5362
5558
  readonly exposed_functions: readonly [{
@@ -5385,7 +5581,7 @@ declare const ABIs: {
5385
5581
  }];
5386
5582
  readonly structs: readonly [];
5387
5583
  } | {
5388
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5584
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5389
5585
  readonly name: "update_oracle_prices";
5390
5586
  readonly friends: readonly [];
5391
5587
  readonly exposed_functions: readonly [{
@@ -5414,7 +5610,7 @@ declare const ABIs: {
5414
5610
  }];
5415
5611
  readonly structs: readonly [];
5416
5612
  } | {
5417
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5613
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5418
5614
  readonly name: "add_new_perp_market";
5419
5615
  readonly friends: readonly [];
5420
5616
  readonly exposed_functions: readonly [{
@@ -5443,7 +5639,7 @@ declare const ABIs: {
5443
5639
  }];
5444
5640
  readonly structs: readonly [];
5445
5641
  } | {
5446
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5642
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5447
5643
  readonly name: "add_new_spot_market";
5448
5644
  readonly friends: readonly [];
5449
5645
  readonly exposed_functions: readonly [{
@@ -5472,7 +5668,7 @@ declare const ABIs: {
5472
5668
  }];
5473
5669
  readonly structs: readonly [];
5474
5670
  } | {
5475
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5671
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5476
5672
  readonly name: "update_fee_tiers";
5477
5673
  readonly friends: readonly [];
5478
5674
  readonly exposed_functions: readonly [{
@@ -5501,7 +5697,7 @@ declare const ABIs: {
5501
5697
  }];
5502
5698
  readonly structs: readonly [];
5503
5699
  } | {
5504
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5700
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5505
5701
  readonly name: "settle_market";
5506
5702
  readonly friends: readonly [];
5507
5703
  readonly exposed_functions: readonly [{
@@ -5530,7 +5726,7 @@ declare const ABIs: {
5530
5726
  }];
5531
5727
  readonly structs: readonly [];
5532
5728
  } | {
5533
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5729
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5534
5730
  readonly name: "add_new_lp_token";
5535
5731
  readonly friends: readonly [];
5536
5732
  readonly exposed_functions: readonly [{
@@ -5559,7 +5755,7 @@ declare const ABIs: {
5559
5755
  }];
5560
5756
  readonly structs: readonly [];
5561
5757
  } | {
5562
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5758
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5563
5759
  readonly name: "set_system_haircut";
5564
5760
  readonly friends: readonly [];
5565
5761
  readonly exposed_functions: readonly [{
@@ -5588,7 +5784,7 @@ declare const ABIs: {
5588
5784
  }];
5589
5785
  readonly structs: readonly [];
5590
5786
  } | {
5591
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5787
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5592
5788
  readonly name: "set_fee_data";
5593
5789
  readonly friends: readonly [];
5594
5790
  readonly exposed_functions: readonly [{
@@ -5617,7 +5813,7 @@ declare const ABIs: {
5617
5813
  }];
5618
5814
  readonly structs: readonly [];
5619
5815
  } | {
5620
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5816
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5621
5817
  readonly name: "change_perp_market_data";
5622
5818
  readonly friends: readonly [];
5623
5819
  readonly exposed_functions: readonly [{
@@ -5646,7 +5842,7 @@ declare const ABIs: {
5646
5842
  }];
5647
5843
  readonly structs: readonly [];
5648
5844
  } | {
5649
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5845
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5650
5846
  readonly name: "change_spot_market_data";
5651
5847
  readonly friends: readonly [];
5652
5848
  readonly exposed_functions: readonly [{
@@ -5675,7 +5871,7 @@ declare const ABIs: {
5675
5871
  }];
5676
5872
  readonly structs: readonly [];
5677
5873
  } | {
5678
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5874
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5679
5875
  readonly name: "change_token_data";
5680
5876
  readonly friends: readonly [];
5681
5877
  readonly exposed_functions: readonly [{
@@ -5704,7 +5900,7 @@ declare const ABIs: {
5704
5900
  }];
5705
5901
  readonly structs: readonly [];
5706
5902
  } | {
5707
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5903
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5708
5904
  readonly name: "predeposit_to_vault";
5709
5905
  readonly friends: readonly [];
5710
5906
  readonly exposed_functions: readonly [{
@@ -5733,7 +5929,7 @@ declare const ABIs: {
5733
5929
  }];
5734
5930
  readonly structs: readonly [];
5735
5931
  } | {
5736
- readonly address: "0xaa35f66bf9daab591cb0fb7075301c46c57a948496f3504e63f156c962946b32";
5932
+ readonly address: "0x78d5f36ce0d150d29ba6fdd801bb49259bbda95862b89e9757cf9a42c6dccb8e";
5737
5933
  readonly name: "airdrop_points";
5738
5934
  readonly friends: readonly [];
5739
5935
  readonly exposed_functions: readonly [{
@@ -7023,45 +7219,112 @@ declare class Client {
7023
7219
  /**
7024
7220
  * getUserRewardsValueHistory.
7025
7221
  *
7222
+ * @deprecated Use {@link getUserRewardsValueHistoryV2} — per-token amount and USD value breakdown.
7026
7223
  * @param request - See {@link GetUserRewardsValueRequest}.
7027
7224
  */
7028
7225
  getUserRewardsValueHistory: (request: GetUserRewardsValueRequest) => Promise<GetUserRewardsValueResponse>;
7029
7226
  /**
7030
7227
  * getUserTradeStatsHistory.
7031
7228
  *
7229
+ * @deprecated Use {@link getUserTradeStatsHistoryV2} — per-market trade breakdown via MarketStats.
7032
7230
  * @param request - See {@link GetUserTradeStatsHistoryRequest}.
7033
7231
  */
7034
7232
  getUserTradeStatsHistory: (request: GetUserTradeStatsHistoryRequest) => Promise<GetUserTradeStatsHistoryResponse>;
7035
7233
  /**
7036
7234
  * getUserAggregatedStats.
7037
7235
  *
7236
+ * @deprecated Use {@link getUserAggregatedStatsV2} — per-market breakdown and per-token USD values.
7038
7237
  * @param request - See {@link GetUserAggregatedStatsRequest}.
7039
7238
  */
7040
7239
  getUserAggregatedStats: (request: GetUserAggregatedStatsRequest) => Promise<GetUserAggregatedStatsResponse>;
7041
7240
  /**
7042
7241
  * getUserBoxRewardsStatsHistory.
7043
7242
  *
7243
+ * @deprecated Use {@link getUserBoxRewardsStatsHistoryV2} — per-token amount and USD value breakdown.
7044
7244
  * @param request - See {@link GetUserBoxRewardsStatsHistoryRequest}.
7045
7245
  */
7046
7246
  getUserBoxRewardsStatsHistory: (request: GetUserBoxRewardsStatsHistoryRequest) => Promise<GetUserBoxRewardsStatsHistoryResponse>;
7047
7247
  /**
7048
7248
  * getUserAggregatedBoxRewardsStats.
7049
7249
  *
7250
+ * @deprecated Use {@link getUserAggregatedBoxRewardsStatsV2} — per-token amount and USD value breakdown.
7050
7251
  * @param request - See {@link GetUserAggregatedBoxRewardsStatsRequest}.
7051
7252
  */
7052
7253
  getUserAggregatedBoxRewardsStats: (request: GetUserAggregatedBoxRewardsStatsRequest) => Promise<GetUserAggregatedBoxRewardsStatsResponse>;
7053
7254
  /**
7054
7255
  * getUserReferralStatsHistory.
7055
7256
  *
7257
+ * @deprecated Use {@link getUserReferralStatsHistoryV2} — per-token amount and USD value breakdown.
7056
7258
  * @param request - See {@link GetUserReferralStatsHistoryRequest}.
7057
7259
  */
7058
7260
  getUserReferralStatsHistory: (request: GetUserReferralStatsHistoryRequest) => Promise<GetUserReferralStatsHistoryResponse>;
7059
7261
  /**
7060
7262
  * getUserAggregatedReferralStats.
7061
7263
  *
7264
+ * @deprecated Use {@link getUserAggregatedReferralStatsV2} — per-token amount and USD value breakdown.
7062
7265
  * @param request - See {@link GetUserAggregatedReferralStatsRequest}.
7063
7266
  */
7064
7267
  getUserAggregatedReferralStats: (request: GetUserAggregatedReferralStatsRequest) => Promise<GetUserAggregatedReferralStatsResponse>;
7268
+ /**
7269
+ * getUserRewardsValueHistoryV2.
7270
+ *
7271
+ * @param request - See {@link GetUserRewardsValueV2Request}.
7272
+ */
7273
+ getUserRewardsValueHistoryV2: (request: GetUserRewardsValueV2Request) => Promise<GetUserRewardsValueV2Response>;
7274
+ /**
7275
+ * getUserTradeStatsHistoryV2.
7276
+ *
7277
+ * @param request - See {@link GetUserTradeStatsV2HistoryRequest}.
7278
+ */
7279
+ getUserTradeStatsHistoryV2: (request: GetUserTradeStatsV2HistoryRequest) => Promise<GetUserTradeStatsV2HistoryResponse>;
7280
+ /**
7281
+ * getUserAggregatedStatsV2.
7282
+ *
7283
+ * @param request - See {@link GetUserAggregatedStatsV2Request}.
7284
+ */
7285
+ getUserAggregatedStatsV2: (request: GetUserAggregatedStatsV2Request) => Promise<GetUserAggregatedStatsV2Response>;
7286
+ /**
7287
+ * getUserBoxRewardsStatsHistoryV2.
7288
+ *
7289
+ * @param request - See {@link GetUserBoxRewardsStatsV2HistoryRequest}.
7290
+ */
7291
+ getUserBoxRewardsStatsHistoryV2: (request: GetUserBoxRewardsStatsV2HistoryRequest) => Promise<GetUserBoxRewardsStatsV2HistoryResponse>;
7292
+ /**
7293
+ * getUserAggregatedBoxRewardsStatsV2.
7294
+ *
7295
+ * @param request - See {@link GetUserAggregatedBoxRewardsStatsV2Request}.
7296
+ */
7297
+ getUserAggregatedBoxRewardsStatsV2: (request: GetUserAggregatedBoxRewardsStatsV2Request) => Promise<GetUserAggregatedBoxRewardsStatsV2Response>;
7298
+ /**
7299
+ * getUserReferralStatsHistoryV2.
7300
+ *
7301
+ * @param request - See {@link GetUserReferralStatsV2HistoryRequest}.
7302
+ */
7303
+ getUserReferralStatsHistoryV2: (request: GetUserReferralStatsV2HistoryRequest) => Promise<GetUserReferralStatsV2HistoryResponse>;
7304
+ /**
7305
+ * getUserAggregatedReferralStatsV2.
7306
+ *
7307
+ * @param request - See {@link GetUserAggregatedReferralStatsV2Request}.
7308
+ */
7309
+ getUserAggregatedReferralStatsV2: (request: GetUserAggregatedReferralStatsV2Request) => Promise<GetUserAggregatedReferralStatsV2Response>;
7310
+ /**
7311
+ * getUserAggregatedRewardsValue.
7312
+ *
7313
+ * Lifetime aggregated reward earnings with per-token amount and USD value breakdown.
7314
+ * v2-only — no v1 equivalent.
7315
+ *
7316
+ * @param request - See {@link GetUserAggregatedRewardsValueRequest}.
7317
+ */
7318
+ getUserAggregatedRewardsValue: (request: GetUserAggregatedRewardsValueRequest) => Promise<GetUserAggregatedRewardsValueResponse>;
7319
+ /**
7320
+ * getUserAggregatedLiquidationStats.
7321
+ *
7322
+ * Lifetime liquidation stats with per-market and per-token breakdowns.
7323
+ * v2-only — no v1 equivalent.
7324
+ *
7325
+ * @param request - See {@link GetUserAggregatedLiquidationStatsRequest}.
7326
+ */
7327
+ getUserAggregatedLiquidationStats: (request: GetUserAggregatedLiquidationStatsRequest) => Promise<GetUserAggregatedLiquidationStatsResponse>;
7065
7328
  /**
7066
7329
  * getUserClaimedKickbackHistory.
7067
7330
  *
@@ -7362,4 +7625,4 @@ declare const getTopicFromCommand: (data: WsCommand) => string;
7362
7625
  */
7363
7626
  declare const getTopicFromMessage: (data: WsMessage) => string;
7364
7627
 
7365
- export { ABIs, type AccountValueRankingEntry, type AddApiCreditsParams, type AddApiKey, type AddApiKeyParams, type Address, AdminEndpoints, type ApiCreditsChange, type ApiStatus, type BalanceChange, BaseEndpoints, type Borrow, type BorrowLendState, type BorrowLendUpdate, type BorrowLending, type BorrowLendingAggregatedData, type BorrowLendingHistoricalData, type BoxOpeningEvent, type BoxReward, BoxRewardTier, type CancelAllPerpOrdersParams, type CancelAllSpotOrdersParams, type CancelPerpOrdersParams, type CancelSpotOrdersParams, type CanceledPerpOrderData, type CanceledPerpOrders, type CanceledPerpTriggerOrderData, type CanceledPerpTriggerOrders, type CanceledSpotOrderData, type CanceledSpotOrders, type ChangePerpOrderParams, type ChangeSpotOrderParams, type ChartCandle, ChartInterval, type CheckReferralCodeRequest, type CheckReferralCodeResponse, type ClaimDepositParams, type ClaimKickbackFeeParams, type ClaimReferralFee, type ClaimReferralFeesParams, type ClaimUserKickbackFee, type ClaimedKickback, type ClaimedReferralKickback, Client, type ClientConfig, type Content, type CreateUserParams, type Deposit, type DepositToVaultParams, type DepositTokenParams, EndpointsV1, type ErrorResponse, type ExchangeConfig, ExchangeProxies, type ExchangeStatsEntry, type FeeData, type FeeTier, type Fees, type FundingCheckpoint, type FundingPayment, type FundingRate, GLOBAL_DENOMINATOR, type GetAccountValueRankingRequest, type GetAccountValueRankingResponse, type GetAllVaultsIdsResponse, type GetBorrowLendingAggregatedStatsRequest, type GetBorrowLendingAggregatedStatsResponse, type GetBorrowLendingDataResponse, type GetBorrowLendingHistoricalDataRequest, type GetBorrowLendingHistoricalDataResponse, type GetChartCandlesInRangeRequest, type GetChartCandlesInRangeResponse, type GetExchangeStatsHistoryRequest, type GetExchangeStatsHistoryResponse, type GetIndexPriceHistoryRequest, type GetIndexPriceHistoryResponse, type GetIndexPricesResponse, type GetIndexerStatusResponse, type GetOrderBookDataRequest, type GetOrderBookDataResponse, type GetPerpMarketsConfigResponse, type GetPerpMarketsDataRequest, type GetPerpMarketsDataResponse, type GetPerpRecentTradesRequest, type GetPerpRecentTradesResponse, type GetPerpUserFillsRequest, type GetPerpUserFillsResponse, type GetPerpUserOrdersRequest, type GetPerpUserOrdersResponse, type GetPerpUserTriggerOrdersRequest, type GetPerpUserTriggerOrdersResponse, type GetPriceIndexesResponse, type GetServicesStatusResponse, type GetSpotMarketsConfigResponse, type GetSpotMarketsDataRequest, type GetSpotMarketsDataResponse, type GetSpotRecentTradesRequest, type GetSpotRecentTradesResponse, type GetSpotUserFillsRequest, type GetSpotUserFillsResponse, type GetSpotUserOrdersRequest, type GetSpotUserOrdersResponse, type GetTokenAggregatedStatsRequest, type GetTokenAggregatedStatsResponse, type GetTokenStatsHistoryRequest, type GetTokenStatsHistoryResponse, type GetTokensConfigResponse, type GetTopPointsRankingResponse, type GetUserAccountValueRankingRequest, type GetUserAccountValueRankingResponse, type GetUserAggregatedBoxRewardsStatsRequest, type GetUserAggregatedBoxRewardsStatsResponse, type GetUserAggregatedReferralStatsRequest, type GetUserAggregatedReferralStatsResponse, type GetUserAggregatedStatsRequest, type GetUserAggregatedStatsResponse, type GetUserAggregatedVaultStatsRequest, type GetUserAggregatedVaultStatsResponse, type GetUserBoxRewardsStatsHistoryRequest, type GetUserBoxRewardsStatsHistoryResponse, type GetUserBoxesHistoryRequest, type GetUserBoxesHistoryResponse, type GetUserClaimedKickbackHistoryRequest, type GetUserClaimedKickbackHistoryResponse, type GetUserClaimedReferralKickbackHistoryRequest, type GetUserClaimedReferralKickbackHistoryResponse, type GetUserDataRequest, type GetUserDataResponse, type GetUserDepositsRequest, type GetUserDepositsResponse, type GetUserFullLiquidationsHistoryRequest, type GetUserFundingHistoryRequest, type GetUserFundingHistoryResponse, type GetUserLiquidationsCancelHistoryResponse, type GetUserLiquidationsCancelOrdersHistoryRequest, type GetUserLiquidationsHistoryResponse, type GetUserPartialLiquidationsHistoryRequest, type GetUserPartialLiquidationsHistoryResponse, type GetUserPersonalPointsRankingRequest, type GetUserPersonalPointsRankingResponse, type GetUserPointsHistoryRequest, type GetUserPointsHistoryResponse, type GetUserPortfolioValueRequest, type GetUserPortfolioValueResponse, type GetUserPositionsRequest, type GetUserPositionsResponse, type GetUserReferralStatsHistoryRequest, type GetUserReferralStatsHistoryResponse, type GetUserRewardsValueRequest, type GetUserRewardsValueResponse, type GetUserTradeStatsHistoryRequest, type GetUserTradeStatsHistoryResponse, type GetUserTransferHistoryRequest, type GetUserTransferHistoryResponse, type GetUserVaultDepositsRequest, type GetUserVaultDepositsResponse, type GetUserVaultWithdrawsRequest, type GetUserVaultWithdrawsResponse, type GetUserVolumeForReferralRequest, type GetUserVolumeForReferralResponse, type GetUserWithdrawalsRequest, type GetUserWithdrawalsResponse, type GetUsersByAddressRequest, type GetUsersByAddressResponse, type GetVaultDepositsRequest, type GetVaultDepositsResponse, type GetVaultHistoricalDataRequest, type GetVaultHistoricalDataResponse, type GetVaultWithdrawalsRequest, type GetVaultWithdrawalsResponse, type GlobalLiquidation, type GlobalPartialLiquidation, type HistoricBoxReward, type HistoricalBoxRewardsStats, type HistoricalDeposit, type HistoricalFullLiquidation, type HistoricalFunding, type HistoricalLiquidatedBorrow, type HistoricalLiquidatedCollateral, type HistoricalLiquidatedLend, type HistoricalLiquidatedPosition, type HistoricalLiquidationCancelOrders, type HistoricalPartialLiquidatedPosition, type HistoricalPartialLiquidation, type HistoricalPerpOrder, type HistoricalPoints, type HistoricalPosition, type HistoricalReferralStats, type HistoricalSpotOrder, type HistoricalTokenStats, type HistoricalTradeStats, type HistoricalUserTransfer, type HistoricalVaultDeposit, type HistoricalVaultWithdraw, type HistoricalWithdraw, type IndexPriceHistory, type IndexPriceLive, type Lend, type LendTokenParams, type Liquidation, type LiquidationCancelledOrderData, type LiquidationCancelledTriggerOrderData, MAINNET_CONFIG, type MarginStep, type NetworkConfig, type NetworkMode, type NodeStatus, type OpenBoxesRequest, type OpenBoxesResponse, type OpenBoxesSignRequest, type OracleState, type OracleUpdate, type OracleUpdates, type OrderBookData, OrderSide, OrderStatus, OrderType, type PaginationCursor, type PartialLiquidation, type PerpFill, type PerpMarketConfigEntry, type PerpMarketData, type PerpMarketDataUpdate, type PerpOrder, type PerpOrderData, type PerpOrderDataForMarket, type PerpOrderFills, type PerpOrderbookState, type PerpOrderbookUpdate, type PerpPosition, type PerpTrade, type PerpTradesUpdate, type PerpTriggerOrder, type PerpTriggerOrderTriggered, type PlaceMultiplePerpOrdersParams, type PlaceMultipleSpotOrdersParams, type PlacePerpLimitOrder, type PlacePerpMarketOrder, type PlacePerpOrderParams, type PlacePerpTriggerOrder, type PlacePerpTriggerOrderParams, type PlaceSpotLimitOrder, type PlaceSpotMarketOrder, type PlaceSpotOrderParams, type PointsRankingEntry, type PriceIndex, type RedeemTokenParams, type Referral, type ReferralUpdate, type RemoveApiKey, type RemoveApiKeyParams, type RemoveApiKeySignerParams, type RepayBorrow, type ReplaceMultipleOrdersParams, type ReplaceMultipleSpotOrdersParams, type SetAlias, type SetAliasNameParams, type SetAutoLend, type SetAutolendParams, type SetReferralCodeParams, type SetReferralParamsRequest, type SetReferralParamsResponse, type SpotFill, type SpotMarketConfigEntry, type SpotMarketData, type SpotMarketDataUpdate, type SpotOrder, type SpotOrderData, type SpotOrderDataForMarket, type SpotOrderFills, type SpotOrderbookState, type SpotOrderbookUpdate, type SpotTrade, type SpotTradesUpdate, type StatusResponse, type SubServiceStatus, type SubmitSponsoredTransactionRequest, type SubmitSponsoredTransactionResponse, TESTNET_CONFIG, TestFaucet, type TimeResponse, type TokenAggregatedStats, type TokenConfigEntry, type TokenizeUserVaultInvestmentParams, type Topic, type Trade, TradeRole, TransferAction, type TransferToUserParams, type TriggerOrder, type TvlTokenEntry, type TxParams, type UpdateUserFeeTier, type User, type UserAggregatedBoxRewardsStats, type UserAggregatedReferralStats, type UserAggregatedStats, type UserAggregatedVaultStats, type UserBoxOpeningEvent, type UserPointsBreakdown, type UserPortfolioValue, type UserRewardsValue, type UserState, UserStatus, type UserTransfer, type UtilizationCurve, type Vault, type VaultDeposit, type VaultHistoricalData, type VaultInvestment, type VaultWithdraw, type Withdraw, type WithdrawFromVaultParams, type WithdrawLend, type WithdrawTokenParams, type WsBorrowLendUpdate, type WsBoxOpeningUpdate, type WsCommand, type WsFill, type WsLiquidatedBorrow, type WsLiquidatedCollateral, type WsLiquidatedLend, type WsLiquidatedPosition, type WsLiquidationUpdate, type WsMessage, type WsOracleUpdates, type WsPartialLiquidatedPosition, type WsPerpMarketDataUpdate, type WsPerpMarketUpdates, type WsSpotMarketDataUpdate, type WsSpotMarketUpdates, type WsUserUpdates, createAptosClient, createAptosClientFromEnv, generateApiKey, getABIsForNetwork, getNetworkConfig, getNetworkModeFromEnv, getRandomId, getTopicFromCommand, getTopicFromMessage, nowInMiliseconds, nowInMilliseconds, parseEntryFunctionAbi, sleep, toSystemValue };
7628
+ export { ABIs, type AccountValueRankingEntry, type AddApiCreditsParams, type AddApiKey, type AddApiKeyParams, type Address, AdminEndpoints, type ApiCreditsChange, type ApiStatus, type BalanceChange, BaseEndpoints, type Borrow, type BorrowLendState, type BorrowLendUpdate, type BorrowLending, type BorrowLendingAggregatedData, type BorrowLendingHistoricalData, type BoxOpeningEvent, type BoxReward, BoxRewardTier, type CancelAllPerpOrdersParams, type CancelAllSpotOrdersParams, type CancelPerpOrdersParams, type CancelSpotOrdersParams, type CanceledPerpOrderData, type CanceledPerpOrders, type CanceledPerpTriggerOrderData, type CanceledPerpTriggerOrders, type CanceledSpotOrderData, type CanceledSpotOrders, type ChangePerpOrderParams, type ChangeSpotOrderParams, type ChartCandle, ChartInterval, type CheckReferralCodeRequest, type CheckReferralCodeResponse, type ClaimDepositParams, type ClaimKickbackFeeParams, type ClaimReferralFee, type ClaimReferralFeesParams, type ClaimUserKickbackFee, type ClaimedKickback, type ClaimedReferralKickback, Client, type ClientConfig, type Content, type CreateUserParams, type Deposit, type DepositToVaultParams, type DepositTokenParams, EndpointsV1, EndpointsV2, type ErrorResponse, type ExchangeConfig, ExchangeProxies, type ExchangeStatsEntry, type FeeData, type FeeTier, type Fees, type FundingCheckpoint, type FundingPayment, type FundingRate, GLOBAL_DENOMINATOR, type GetAccountValueRankingRequest, type GetAccountValueRankingResponse, type GetAllVaultsIdsResponse, type GetBorrowLendingAggregatedStatsRequest, type GetBorrowLendingAggregatedStatsResponse, type GetBorrowLendingDataResponse, type GetBorrowLendingHistoricalDataRequest, type GetBorrowLendingHistoricalDataResponse, type GetChartCandlesInRangeRequest, type GetChartCandlesInRangeResponse, type GetExchangeStatsHistoryRequest, type GetExchangeStatsHistoryResponse, type GetIndexPriceHistoryRequest, type GetIndexPriceHistoryResponse, type GetIndexPricesResponse, type GetIndexerStatusResponse, type GetOrderBookDataRequest, type GetOrderBookDataResponse, type GetPerpMarketsConfigResponse, type GetPerpMarketsDataRequest, type GetPerpMarketsDataResponse, type GetPerpRecentTradesRequest, type GetPerpRecentTradesResponse, type GetPerpUserFillsRequest, type GetPerpUserFillsResponse, type GetPerpUserOrdersRequest, type GetPerpUserOrdersResponse, type GetPerpUserTriggerOrdersRequest, type GetPerpUserTriggerOrdersResponse, type GetPriceIndexesResponse, type GetServicesStatusResponse, type GetSpotMarketsConfigResponse, type GetSpotMarketsDataRequest, type GetSpotMarketsDataResponse, type GetSpotRecentTradesRequest, type GetSpotRecentTradesResponse, type GetSpotUserFillsRequest, type GetSpotUserFillsResponse, type GetSpotUserOrdersRequest, type GetSpotUserOrdersResponse, type GetTokenAggregatedStatsRequest, type GetTokenAggregatedStatsResponse, type GetTokenStatsHistoryRequest, type GetTokenStatsHistoryResponse, type GetTokensConfigResponse, type GetTopPointsRankingResponse, type GetUserAccountValueRankingRequest, type GetUserAccountValueRankingResponse, type GetUserAggregatedBoxRewardsStatsRequest, type GetUserAggregatedBoxRewardsStatsResponse, type GetUserAggregatedBoxRewardsStatsV2Request, type GetUserAggregatedBoxRewardsStatsV2Response, type GetUserAggregatedLiquidationStatsRequest, type GetUserAggregatedLiquidationStatsResponse, type GetUserAggregatedReferralStatsRequest, type GetUserAggregatedReferralStatsResponse, type GetUserAggregatedReferralStatsV2Request, type GetUserAggregatedReferralStatsV2Response, type GetUserAggregatedRewardsValueRequest, type GetUserAggregatedRewardsValueResponse, type GetUserAggregatedStatsRequest, type GetUserAggregatedStatsResponse, type GetUserAggregatedStatsV2Request, type GetUserAggregatedStatsV2Response, type GetUserAggregatedVaultStatsRequest, type GetUserAggregatedVaultStatsResponse, type GetUserBoxRewardsStatsHistoryRequest, type GetUserBoxRewardsStatsHistoryResponse, type GetUserBoxRewardsStatsV2HistoryRequest, type GetUserBoxRewardsStatsV2HistoryResponse, type GetUserBoxesHistoryRequest, type GetUserBoxesHistoryResponse, type GetUserClaimedKickbackHistoryRequest, type GetUserClaimedKickbackHistoryResponse, type GetUserClaimedReferralKickbackHistoryRequest, type GetUserClaimedReferralKickbackHistoryResponse, type GetUserDataRequest, type GetUserDataResponse, type GetUserDepositsRequest, type GetUserDepositsResponse, type GetUserFullLiquidationsHistoryRequest, type GetUserFundingHistoryRequest, type GetUserFundingHistoryResponse, type GetUserLiquidationsCancelHistoryResponse, type GetUserLiquidationsCancelOrdersHistoryRequest, type GetUserLiquidationsHistoryResponse, type GetUserPartialLiquidationsHistoryRequest, type GetUserPartialLiquidationsHistoryResponse, type GetUserPersonalPointsRankingRequest, type GetUserPersonalPointsRankingResponse, type GetUserPointsHistoryRequest, type GetUserPointsHistoryResponse, type GetUserPortfolioValueRequest, type GetUserPortfolioValueResponse, type GetUserPositionsRequest, type GetUserPositionsResponse, type GetUserReferralStatsHistoryRequest, type GetUserReferralStatsHistoryResponse, type GetUserReferralStatsV2HistoryRequest, type GetUserReferralStatsV2HistoryResponse, type GetUserRewardsValueRequest, type GetUserRewardsValueResponse, type GetUserRewardsValueV2Request, type GetUserRewardsValueV2Response, type GetUserTradeStatsHistoryRequest, type GetUserTradeStatsHistoryResponse, type GetUserTradeStatsV2HistoryRequest, type GetUserTradeStatsV2HistoryResponse, type GetUserTransferHistoryRequest, type GetUserTransferHistoryResponse, type GetUserVaultDepositsRequest, type GetUserVaultDepositsResponse, type GetUserVaultWithdrawsRequest, type GetUserVaultWithdrawsResponse, type GetUserVolumeForReferralRequest, type GetUserVolumeForReferralResponse, type GetUserWithdrawalsRequest, type GetUserWithdrawalsResponse, type GetUsersByAddressRequest, type GetUsersByAddressResponse, type GetVaultDepositsRequest, type GetVaultDepositsResponse, type GetVaultHistoricalDataRequest, type GetVaultHistoricalDataResponse, type GetVaultWithdrawalsRequest, type GetVaultWithdrawalsResponse, type GlobalLiquidation, type GlobalPartialLiquidation, type HistoricBoxReward, type HistoricalBoxRewardsStats, type HistoricalBoxRewardsStatsV2, type HistoricalDeposit, type HistoricalFullLiquidation, type HistoricalFunding, type HistoricalLiquidatedBorrow, type HistoricalLiquidatedCollateral, type HistoricalLiquidatedLend, type HistoricalLiquidatedPosition, type HistoricalLiquidationCancelOrders, type HistoricalPartialLiquidatedPosition, type HistoricalPartialLiquidation, type HistoricalPerpOrder, type HistoricalPoints, type HistoricalPosition, type HistoricalReferralStats, type HistoricalReferralStatsV2, type HistoricalSpotOrder, type HistoricalTokenStats, type HistoricalTradeStats, type HistoricalTradeStatsV2, type HistoricalUserTransfer, type HistoricalVaultDeposit, type HistoricalVaultWithdraw, type HistoricalWithdraw, type IndexPriceHistory, type IndexPriceLive, type Lend, type LendTokenParams, type Liquidation, type LiquidationCancelledOrderData, type LiquidationCancelledTriggerOrderData, MAINNET_CONFIG, type MarginStep, type MarketLiquidationStats, type MarketStatsResponse, type NetworkConfig, type NetworkMode, type NodeStatus, type OpenBoxesRequest, type OpenBoxesResponse, type OpenBoxesSignRequest, type OracleState, type OracleUpdate, type OracleUpdates, type OrderBookData, OrderSide, OrderStatus, OrderType, type PaginationCursor, type PartialLiquidation, type PerpFill, type PerpMarketConfigEntry, type PerpMarketData, type PerpMarketDataUpdate, type PerpOrder, type PerpOrderData, type PerpOrderDataForMarket, type PerpOrderFills, type PerpOrderbookState, type PerpOrderbookUpdate, type PerpPosition, type PerpTrade, type PerpTradesUpdate, type PerpTriggerOrder, type PerpTriggerOrderTriggered, type PlaceMultiplePerpOrdersParams, type PlaceMultipleSpotOrdersParams, type PlacePerpLimitOrder, type PlacePerpMarketOrder, type PlacePerpOrderParams, type PlacePerpTriggerOrder, type PlacePerpTriggerOrderParams, type PlaceSpotLimitOrder, type PlaceSpotMarketOrder, type PlaceSpotOrderParams, type PointsRankingEntry, type PriceIndex, type RedeemTokenParams, type Referral, type ReferralUpdate, type RemoveApiKey, type RemoveApiKeyParams, type RemoveApiKeySignerParams, type RepayBorrow, type ReplaceMultipleOrdersParams, type ReplaceMultipleSpotOrdersParams, type SetAlias, type SetAliasNameParams, type SetAutoLend, type SetAutolendParams, type SetReferralCodeParams, type SetReferralParamsRequest, type SetReferralParamsResponse, type SpotFill, type SpotMarketConfigEntry, type SpotMarketData, type SpotMarketDataUpdate, type SpotOrder, type SpotOrderData, type SpotOrderDataForMarket, type SpotOrderFills, type SpotOrderbookState, type SpotOrderbookUpdate, type SpotTrade, type SpotTradesUpdate, type StatusResponse, type SubServiceStatus, type SubmitSponsoredTransactionRequest, type SubmitSponsoredTransactionResponse, TESTNET_CONFIG, TestFaucet, type TimeResponse, type TokenAggregatedStats, type TokenAmountUsd, type TokenConfigEntry, type TokenLiquidationStats, type TokenizeUserVaultInvestmentParams, type Topic, type Trade, TradeRole, TransferAction, type TransferToUserParams, type TriggerOrder, type TvlTokenEntry, type TxParams, type UpdateUserFeeTier, type User, type UserAggregatedBoxRewardsStats, type UserAggregatedBoxRewardsStatsV2, type UserAggregatedLiquidationStats, type UserAggregatedReferralStats, type UserAggregatedReferralStatsV2, type UserAggregatedRewardsValue, type UserAggregatedStats, type UserAggregatedStatsV2, type UserAggregatedVaultStats, type UserBoxOpeningEvent, type UserPointsBreakdown, type UserPortfolioValue, type UserRewardsValue, type UserRewardsValueV2, type UserState, UserStatus, type UserTransfer, type UtilizationCurve, type Vault, type VaultDeposit, type VaultHistoricalData, type VaultInvestment, type VaultWithdraw, type Withdraw, type WithdrawFromVaultParams, type WithdrawLend, type WithdrawTokenParams, type WsBorrowLendUpdate, type WsBoxOpeningUpdate, type WsCommand, type WsFill, type WsLiquidatedBorrow, type WsLiquidatedCollateral, type WsLiquidatedLend, type WsLiquidatedPosition, type WsLiquidationUpdate, type WsMessage, type WsOracleUpdates, type WsPartialLiquidatedPosition, type WsPerpMarketDataUpdate, type WsPerpMarketUpdates, type WsSpotMarketDataUpdate, type WsSpotMarketUpdates, type WsUserUpdates, createAptosClient, createAptosClientFromEnv, generateApiKey, getABIsForNetwork, getNetworkConfig, getNetworkModeFromEnv, getRandomId, getTopicFromCommand, getTopicFromMessage, nowInMiliseconds, nowInMilliseconds, parseEntryFunctionAbi, sleep, toSystemValue };