@ape.swap/bonds-sdk 4.4.0-test.1 → 4.4.0-test.11

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.
@@ -1,3 +1,5 @@
1
1
  import React from 'react';
2
- declare const SlippageModal: () => React.JSX.Element;
2
+ declare const SlippageModal: ({ chainId }: {
3
+ chainId: number;
4
+ }) => React.JSX.Element;
3
5
  export default SlippageModal;
@@ -2,7 +2,6 @@ import { ChainId } from '@ape.swap/apeswap-lists';
2
2
  type AddressMap = {
3
3
  [chainId: number]: string;
4
4
  };
5
- export declare const PRICE_GETTER_ADDRESSES: AddressMap;
6
5
  export declare const MULTICALL_V2: AddressMap;
7
6
  export declare const SoulZapTokenManager: Partial<Record<ChainId, string>>;
8
7
  export declare const ACF_TO_ABOND: string;
@@ -1,3 +1,2 @@
1
- import { ChainId, Token } from '@ape.swap/apeswap-lists';
2
- export declare const WNATIVE: Partial<Record<ChainId, Token>>;
3
- export declare const zapInputTokens: Partial<Record<ChainId, Token[]>>;
1
+ import { WNATIVE, zapInputTokens } from '@ape.swap/apeswap-lists';
2
+ export { WNATIVE, zapInputTokens };
@@ -5,5 +5,8 @@ export interface SortedZapList {
5
5
  balance?: string;
6
6
  usdValue: number;
7
7
  }
8
- declare const useSortedZapList: (chainId?: ChainId, principalToken?: Token) => SortedZapList[];
8
+ declare const useSortedZapList: (chainId?: ChainId, principalToken?: Token) => {
9
+ sortedZapList: SortedZapList[];
10
+ isFetched: boolean;
11
+ };
9
12
  export default useSortedZapList;