@ape.swap/bonds-sdk 3.0.0 → 3.0.2
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/uikit-sdk/Svg/tokens/CROSSFI.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 +1 -0
- package/dist/config/constants/addresses.d.ts +0 -1
- package/dist/config/constants/tokens.d.ts +2 -2
- package/dist/main.js +713 -627
- package/dist/state/useSDKConfig.d.ts +1 -0
- package/dist/types/bonds.d.ts +2 -1
- package/dist/utils/displayHelpers.d.ts +1 -2
- package/dist/views/Bonds/utils.d.ts +1 -0
- package/package.json +2 -2
- package/dist/config/constants/zapInputTokens.d.ts +0 -2
|
@@ -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 ABOND_ADDRESSES: AddressMap;
|
|
6
5
|
export declare const PRICE_GETTER_ADDRESSES: AddressMap;
|
|
7
6
|
export declare const MULTICALL_V2: AddressMap;
|
|
8
7
|
export declare const SoulZapTokenManager: Partial<Record<ChainId, string>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { Token } from '@ape.swap/apeswap-lists';
|
|
2
|
-
import { ChainId } from '@ape.swap/apeswap-lists';
|
|
1
|
+
import { Token, ChainId } from '@ape.swap/apeswap-lists';
|
|
3
2
|
export declare const WNATIVE: Partial<Record<ChainId, Token>>;
|
|
3
|
+
export declare const zapInputTokens: Partial<Record<ChainId, Token[]>>;
|