@ape.swap/bonds-sdk 2.5.3 → 2.6.1-3.testshare.1
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/TagXmasFlashBond/TagXmasFlashBond.d.ts +8 -0
- package/dist/components/TokenSelectorPanel/index.d.ts +2 -1
- package/dist/components/uikit-sdk/Svg/Icons/Timer.d.ts +4 -0
- package/dist/components/uikit-sdk/Svg/Icons/index.d.ts +1 -0
- package/dist/components/uikit-sdk/Svg/tokens/BLAST.d.ts +4 -0
- package/dist/components/uikit-sdk/Svg/tokens/index.d.ts +1 -0
- package/dist/components/uikit-sdk/Svg/types.d.ts +3 -1
- package/dist/config/constants/addresses.d.ts +1 -0
- package/dist/main.js +21599 -20950
- package/dist/state/bonds/useGetUserEscrowWeight.d.ts +11 -0
- package/dist/state/zap/getChainParam.d.ts +2 -1
- package/dist/styles.css +96 -5
- package/dist/types/bonds.d.ts +2 -1
- package/dist/views/Bonds/components/BondRows/BondRowsByChain.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { LaunchBondTiers } from '@ape.swap/apeswap-lists';
|
|
3
|
+
interface XmasFlashBondProps {
|
|
4
|
+
userTier: LaunchBondTiers | null;
|
|
5
|
+
minTier: number | undefined;
|
|
6
|
+
}
|
|
7
|
+
declare const TagXmasFlashBond: React.FC<XmasFlashBondProps>;
|
|
8
|
+
export default TagXmasFlashBond;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ChainId, Token } from '@ape.swap/apeswap-lists';
|
|
3
|
-
declare const TokenSelectorPanel: ({ typedValue, setTypedValue, selectedToken, chainId, handleValueBtn, handleCurrencySelect, enableZap, tokenBalance, selectedTokenPrice, bondPrincipalToken, bondEarnToken, modalVariant, }: {
|
|
3
|
+
declare const TokenSelectorPanel: ({ typedValue, setTypedValue, selectedToken, chainId, handleValueBtn, handleCurrencySelect, enableZap, tokenBalance, selectedTokenPrice, bondPrincipalToken, bondEarnToken, modalVariant, inputDisabled, }: {
|
|
4
4
|
typedValue: string;
|
|
5
5
|
setTypedValue: (value: React.SetStateAction<string>) => void;
|
|
6
6
|
selectedToken?: "NATIVE" | Token;
|
|
@@ -13,5 +13,6 @@ declare const TokenSelectorPanel: ({ typedValue, setTypedValue, selectedToken, c
|
|
|
13
13
|
bondPrincipalToken?: Token;
|
|
14
14
|
bondEarnToken?: Token;
|
|
15
15
|
modalVariant?: "alt" | "standard";
|
|
16
|
+
inputDisabled?: boolean;
|
|
16
17
|
}) => React.JSX.Element;
|
|
17
18
|
export default TokenSelectorPanel;
|
|
@@ -51,6 +51,7 @@ export declare enum icons {
|
|
|
51
51
|
LIGHTLINK = "lightlink",
|
|
52
52
|
IOTA = "iota",
|
|
53
53
|
BASE = "base",
|
|
54
|
+
BLAST = "blast",
|
|
54
55
|
DISCORD = "discord",
|
|
55
56
|
REDDIT = "reddit",
|
|
56
57
|
MEDIUM = "medium",
|
|
@@ -155,7 +156,8 @@ export declare enum icons {
|
|
|
155
156
|
StarFilled = "StarFilled",
|
|
156
157
|
FirePink = "FirePink",
|
|
157
158
|
GRAPHLINQ = "GRAPHLINQ",
|
|
158
|
-
Farcaster = "Farcaster"
|
|
159
|
+
Farcaster = "Farcaster",
|
|
160
|
+
TIMER = "Timer"
|
|
159
161
|
}
|
|
160
162
|
export declare enum directions {
|
|
161
163
|
LEFT = "left",
|
|
@@ -7,4 +7,5 @@ export declare const PRICE_GETTER_ADDRESSES: AddressMap;
|
|
|
7
7
|
export declare const MULTICALL_V2: AddressMap;
|
|
8
8
|
export declare const SoulZapTokenManager: Partial<Record<ChainId, string>>;
|
|
9
9
|
export declare const ACF_TO_ABOND: string;
|
|
10
|
+
export declare const LENS_CONTRACT: AddressMap;
|
|
10
11
|
export {};
|