@ape.swap/bonds-sdk 3.0.15-test.1 → 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.
- package/dist/components/Tooltip/ButtonsRow.d.ts +2 -0
- package/dist/components/YouTooltip/YouTooltip.d.ts +3 -0
- package/dist/components/uikit-sdk/Svg/tokens/MONAD.d.ts +4 -0
- package/dist/components/uikit-sdk/Svg/tokens/SONIC.d.ts +4 -0
- package/dist/components/uikit-sdk/Svg/tokens/index.d.ts +2 -0
- package/dist/components/uikit-sdk/Svg/types.d.ts +2 -0
- package/dist/config/constants/queryKeys.d.ts +1 -0
- package/dist/config/constants/tooltips.d.ts +1 -0
- package/dist/hooks/useIsMobile.d.ts +1 -0
- package/dist/hooks/useMonitorTxHash.d.ts +2 -19
- package/dist/hooks/useSendReferenceId.d.ts +1 -1
- package/dist/main.js +48285 -45528
- package/dist/state/abtesting/useABTesting.d.ts +3 -4
- package/dist/state/bonds/useBondsData.d.ts +4 -1
- package/dist/state/bonds/useGetBondRecommendations.d.ts +1 -1
- package/dist/state/bonds/useTierProofSignature.d.ts +4 -0
- package/dist/state/bonds/useUserApiStats.d.ts +1 -1
- package/dist/state/price/useCurrencyPrice.d.ts +1 -1
- package/dist/state/tiers/useTierPoints.d.ts +32 -0
- package/dist/state/tokenPrices/useTokenPrices.d.ts +1 -1
- package/dist/state/useSDKConfig.d.ts +7 -7
- package/dist/state/zap/getChainParam.d.ts +2 -1
- package/dist/state/zap/useSoulZapBondQuote.d.ts +1 -1
- package/dist/styles.css +18 -12
- package/dist/theme/base.d.ts +10 -1
- package/dist/theme/components.d.ts +0 -8
- package/dist/types/bonds.d.ts +9 -5
- package/dist/utils/displayHelpers.d.ts +4 -6
- package/dist/utils/getNativeTicker.d.ts +1 -1
- package/dist/utils/remove0xPrefix.d.ts +1 -1
- package/dist/views/Bonds/Bonds.d.ts +1 -1
- package/dist/views/Bonds/components/BondsMenu/BondsMenu.d.ts +1 -1
- package/dist/views/Bonds/components/BonusComponents/BonusComponent.d.ts +7 -0
- package/dist/views/Bonds/components/BonusComponents/BonusTable.d.ts +7 -0
- package/dist/views/Bonds/components/BuyAgainRow/index.d.ts +1 -1
- package/dist/views/Bonds/components/CheckURL/index.d.ts +1 -1
- package/dist/views/Bonds/components/RecommendationCards/SmallRecommendationCard.d.ts +0 -1
- package/dist/views/Bonds/components/RecommendationCards/index.d.ts +0 -1
- package/dist/views/Bonds/utils.d.ts +1 -1
- package/dist/views/BuyBond/BuyBond.d.ts +1 -0
- package/dist/views/BuyBond/components/GetUpToComponent/GetUpToComponent.d.ts +8 -0
- package/dist/views/BuyBond/components/ProjectDescription.d.ts +2 -1
- package/dist/views/BuyBond/findHighestTrueBondPrice.d.ts +8 -0
- package/package.json +2 -2
- package/dist/components/TagMinTierFlashBond/TagMinTierFlashBond.d.ts +0 -8
- package/dist/components/TokenInfoAndName/MinTierRow.d.ts +0 -5
- package/dist/hooks/useIsAbond.d.ts +0 -3
- package/dist/state/bonds/useGetUserEscrowWeight.d.ts +0 -11
- package/dist/theme/display.d.ts +0 -2
- package/dist/theme/types.d.ts +0 -10
- /package/dist/{hooks → state/abtesting}/useCookie.d.ts +0 -0
|
@@ -22,3 +22,5 @@ export { default as IOTA } from './IOTA';
|
|
|
22
22
|
export { default as BASE } from './BASE';
|
|
23
23
|
export { default as BLAST } from './BLAST';
|
|
24
24
|
export { default as CROSSFI } from './CROSSFI';
|
|
25
|
+
export { default as MONAD } from './MONAD';
|
|
26
|
+
export { default as SONIC } from './SONIC';
|
|
@@ -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
|
-
|
|
7
|
-
|
|
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
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ChainId } from '@ape.swap/apeswap-lists';
|
|
2
|
-
export declare const useSendReferenceId: () => (billContract: string, chainId: ChainId, hash: string) => Promise<void>;
|
|
2
|
+
export declare const useSendReferenceId: () => (billContract: string, chainId: ChainId, hash: string, reason?: string) => Promise<void>;
|