@ape.swap/bonds-sdk 3.0.15 → 3.0.17

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.
Files changed (43) hide show
  1. package/dist/components/Tooltip/ButtonsRow.d.ts +2 -0
  2. package/dist/components/YouTooltip/YouTooltip.d.ts +3 -0
  3. package/dist/config/constants/queryKeys.d.ts +1 -0
  4. package/dist/config/constants/tooltips.d.ts +1 -0
  5. package/dist/hooks/useIsMobile.d.ts +1 -0
  6. package/dist/hooks/useMonitorTxHash.d.ts +2 -19
  7. package/dist/main.js +48223 -45537
  8. package/dist/state/bonds/useBondsData.d.ts +4 -1
  9. package/dist/state/bonds/useGetBondRecommendations.d.ts +1 -1
  10. package/dist/state/bonds/useTierProofSignature.d.ts +4 -0
  11. package/dist/state/bonds/useUserApiStats.d.ts +1 -1
  12. package/dist/state/price/useCurrencyPrice.d.ts +1 -1
  13. package/dist/state/tiers/useTierPoints.d.ts +32 -0
  14. package/dist/state/tokenPrices/useTokenPrices.d.ts +1 -1
  15. package/dist/state/useSDKConfig.d.ts +7 -7
  16. package/dist/state/zap/useSoulZapBondQuote.d.ts +1 -1
  17. package/dist/styles.css +18 -12
  18. package/dist/theme/base.d.ts +10 -1
  19. package/dist/theme/components.d.ts +0 -8
  20. package/dist/types/bonds.d.ts +9 -5
  21. package/dist/utils/displayHelpers.d.ts +4 -6
  22. package/dist/utils/getNativeTicker.d.ts +1 -1
  23. package/dist/utils/remove0xPrefix.d.ts +1 -1
  24. package/dist/views/Bonds/Bonds.d.ts +1 -1
  25. package/dist/views/Bonds/components/BondsMenu/BondsMenu.d.ts +1 -1
  26. package/dist/views/Bonds/components/BonusComponents/BonusComponent.d.ts +7 -0
  27. package/dist/views/Bonds/components/BonusComponents/BonusTable.d.ts +7 -0
  28. package/dist/views/Bonds/components/BuyAgainRow/index.d.ts +1 -1
  29. package/dist/views/Bonds/components/CheckURL/index.d.ts +1 -1
  30. package/dist/views/Bonds/components/RecommendationCards/SmallRecommendationCard.d.ts +0 -1
  31. package/dist/views/Bonds/components/RecommendationCards/index.d.ts +0 -1
  32. package/dist/views/Bonds/utils.d.ts +1 -1
  33. package/dist/views/BuyBond/BuyBond.d.ts +1 -0
  34. package/dist/views/BuyBond/components/GetUpToComponent/GetUpToComponent.d.ts +8 -0
  35. package/dist/views/BuyBond/components/ProjectDescription.d.ts +2 -1
  36. package/dist/views/BuyBond/findHighestTrueBondPrice.d.ts +8 -0
  37. package/package.json +2 -2
  38. package/dist/components/TagMinTierFlashBond/TagMinTierFlashBond.d.ts +0 -8
  39. package/dist/components/TokenInfoAndName/MinTierRow.d.ts +0 -5
  40. package/dist/hooks/useIsAbond.d.ts +0 -3
  41. package/dist/state/bonds/useGetUserEscrowWeight.d.ts +0 -11
  42. package/dist/theme/display.d.ts +0 -2
  43. package/dist/theme/types.d.ts +0 -10
@@ -1,8 +1,10 @@
1
1
  import React from 'react';
2
+ import { ChainId } from '@ape.swap/apeswap-lists';
2
3
  declare const ButtonsRow: React.FC<{
3
4
  projectLink?: string;
4
5
  twitter?: string;
5
6
  bubble?: string;
6
7
  audit?: string;
8
+ chain?: ChainId;
7
9
  }>;
8
10
  export default ButtonsRow;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const YouTooltip: () => React.JSX.Element;
3
+ export default YouTooltip;
@@ -34,4 +34,5 @@ export declare const QUERY_KEYS: {
34
34
  FAVORITE_TOKENS: string;
35
35
  POP_UPS: string;
36
36
  GEO_FENCING: string;
37
+ TIER_PROOF_SIG: string;
37
38
  };
@@ -6,6 +6,7 @@ export declare const TooltipText: {
6
6
  MaxBuy: (payoutToken: string) => string;
7
7
  Premium: string;
8
8
  Fee: string;
9
+ Boost: string;
9
10
  };
10
11
  export declare const UserBillTooltipText: {
11
12
  FullyVested: string;
@@ -0,0 +1 @@
1
+ export declare const useIsMobile: () => boolean;
@@ -3,23 +3,6 @@ export declare const useMonitorTxHash: (txHash?: string | null, chainId?: ChainI
3
3
  isLoading: boolean;
4
4
  isSuccess: boolean;
5
5
  data: {
6
- blobGasPrice?: bigint | undefined;
7
- blobGasUsed?: bigint | undefined;
8
- blockHash: import("viem").Hash;
9
- blockNumber: bigint;
10
- contractAddress: import("abitype").Address | null | undefined;
11
- cumulativeGasUsed: bigint;
12
- effectiveGasPrice: bigint;
13
- from: import("abitype").Address;
14
- gasUsed: bigint;
15
- logs: import("viem").Log<bigint, number, false>[];
16
- logsBloom: import("viem").Hex;
17
- root?: `0x${string}` | undefined;
18
- status: "success" | "reverted";
19
- to: import("abitype").Address | null;
20
- transactionHash: import("viem").Hash;
21
- transactionIndex: number;
22
- type: import("viem").TransactionType;
23
- chainId: number;
24
- } | undefined;
6
+ [x: string]: any;
7
+ };
25
8
  };