@ape.swap/bonds-sdk 3.0.84-test.2 → 3.0.85-test.0
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/FavIcons/AddFavToken.d.ts +1 -1
- package/dist/components/TokenInfoAndName/index.d.ts +2 -2
- package/dist/components/TokenSelectorModal/TokenRow.d.ts +1 -1
- package/dist/components/uikit-sdk/Svg/tokens/index.d.ts +0 -1
- package/dist/components/uikit-sdk/Svg/types.d.ts +0 -1
- package/dist/config/constants/queryKeys.d.ts +0 -1
- package/dist/hooks/useMonitorTxHash.d.ts +19 -2
- package/dist/main.js +810 -743
- package/dist/state/{bonds → bondApiStats}/useUserApiStats.d.ts +1 -1
- package/dist/state/bonds/useBondNFTData.d.ts +1 -1
- package/dist/state/bonds/useBondsData.d.ts +2 -2
- package/dist/state/bonds/utils.d.ts +4 -0
- package/dist/state/preTGEBonds/usePreTGEList.d.ts +3 -3
- package/dist/state/preTGEBonds/usePreTGEUserBonds.d.ts +9 -21
- package/dist/state/price/useCurrencyPrice.d.ts +1 -1
- package/dist/state/tiers/useTierPoints.d.ts +2 -2
- package/dist/state/useSDKConfig.d.ts +4 -2
- package/dist/types/bonds.d.ts +14 -30
- package/dist/utils/displayHelpers.d.ts +1 -2
- package/dist/utils/getBalanceNumber.d.ts +0 -2
- package/dist/utils/getNativeTicker.d.ts +1 -1
- package/dist/utils/remove0xPrefix.d.ts +1 -1
- package/dist/utils/reportError.d.ts +1 -1
- package/dist/views/Bonds/components/BondRows/BondRow.d.ts +2 -1
- package/dist/views/Bonds/components/BondRows/BondRowsByChain.d.ts +2 -2
- package/dist/views/Bonds/components/BondRows/BondRowsWithTitle.d.ts +2 -2
- package/dist/views/Bonds/components/BondRows/ModalHandler.d.ts +2 -2
- package/dist/views/Bonds/components/BonusComponents/BonusTable.d.ts +1 -1
- package/dist/views/Bonds/components/BonusComponents/PreTGEBonusTable.d.ts +6 -0
- package/dist/views/Bonds/components/BuyAgainRow/index.d.ts +1 -1
- package/dist/views/Bonds/utils.d.ts +1 -1
- package/dist/views/BuyBond/findHighestTrueBondPrice.d.ts +3 -3
- package/dist/views/PreTGEBonds/components/BuyComponent/BondCards.d.ts +2 -2
- package/dist/views/PreTGEBonds/components/BuyComponent/ParticipationSuccessful.d.ts +3 -3
- package/dist/views/PreTGEBonds/components/BuyComponent/PreTGEBuyComponent.d.ts +8 -0
- package/dist/views/PreTGEBonds/components/BuyComponent/PreTGEModalHandler.d.ts +2 -2
- package/dist/views/ProjectView/components/BondLeaderboard/components/SalesTable.d.ts +1 -1
- package/dist/views/ProjectView/components/BondLeaderboard/components/TopSaleCard.d.ts +1 -1
- package/dist/views/ProjectView/components/BondLeaderboard/components/TopThreeSalesCards.d.ts +1 -1
- package/package.json +19 -8
- package/dist/components/uikit-sdk/Svg/tokens/KATANA.d.ts +0 -4
- package/dist/state/preTGEBonds/usePreTGEBondsData.d.ts +0 -24
- package/dist/views/BuyBond/components/BondModalHeaderAlt.d.ts +0 -8
- package/dist/views/BuyBond/components/ImageAndShortDescription.d.ts +0 -7
- package/dist/views/PreTGEBonds/components/BuyComponent/BuyAction.d.ts +0 -10
- package/dist/views/PreTGEBonds/components/BuyComponent/BuyComponent.d.ts +0 -7
- package/dist/views/PreTGEBonds/components/PreTGERows/BonusTable.d.ts +0 -6
- package/dist/views/PreTGEBonds/components/PreTGERows/PreTGERows.d.ts +0 -5
- /package/dist/state/{bonds → balance}/useUserTokensBalance.d.ts +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare const NETWORK_COLORS: Partial<Record<number, string>>;
|
|
3
3
|
declare const TokenInfoAndName: ({ tokenSymbol, chain, tag, vestEnds, isHotBond, }: {
|
|
4
|
-
tokenSymbol
|
|
5
|
-
chain
|
|
4
|
+
tokenSymbol?: string;
|
|
5
|
+
chain?: number;
|
|
6
6
|
tag?: string;
|
|
7
7
|
vestEnds?: string;
|
|
8
8
|
isHotBond?: boolean;
|
|
@@ -4,6 +4,6 @@ declare const TokenRow: ({ token, chainId, handleTokenSelect, tokenBalance, }: {
|
|
|
4
4
|
token: "NATIVE" | Token;
|
|
5
5
|
chainId: ChainId;
|
|
6
6
|
handleTokenSelect: (currency: string) => void;
|
|
7
|
-
tokenBalance
|
|
7
|
+
tokenBalance?: string;
|
|
8
8
|
}) => React.JSX.Element;
|
|
9
9
|
export default TokenRow;
|
|
@@ -3,6 +3,23 @@ export declare const useMonitorTxHash: (txHash?: string | null, chainId?: ChainI
|
|
|
3
3
|
isLoading: boolean;
|
|
4
4
|
isSuccess: boolean;
|
|
5
5
|
data: {
|
|
6
|
-
|
|
7
|
-
|
|
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;
|
|
8
25
|
};
|