@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.
@@ -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;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { SvgProps } from './types';
3
+ declare const Timer: React.FC<SvgProps>;
4
+ export default Timer;
@@ -113,3 +113,4 @@ export { default as Star } from './Star';
113
113
  export { default as StarFilled } from './StarFilled';
114
114
  export { default as FirePink } from './FirePink';
115
115
  export { default as Farcaster } from './Farcaster';
116
+ export { default as Timer } from './Timer';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { SvgProps } from '../types';
3
+ declare const BLAST: React.FC<SvgProps>;
4
+ export default BLAST;
@@ -20,3 +20,4 @@ export { default as LINEA } from './LINEA';
20
20
  export { default as LIGHTLINK } from './LIGHTLINK';
21
21
  export { default as IOTA } from './IOTA';
22
22
  export { default as BASE } from './BASE';
23
+ export { default as BLAST } from './BLAST';
@@ -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 {};