@ape.swap/bonds-sdk 2.7.7-test.3 → 2.7.8
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/{TagMinTierFlashBond/TagMinTierFlashBond.d.ts → TagXmasFlashBond/TagXmasFlashBond.d.ts} +3 -3
- package/dist/config/constants/chains.d.ts +1 -2
- package/dist/main.js +45472 -45527
- package/dist/styles.css +11 -3
- package/package.json +1 -1
- package/dist/components/TokenInfoAndName/MinTierRow.d.ts +0 -5
- package/dist/views/BondModal/components/BondModalMinTierHeader.d.ts +0 -5
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { LaunchBondTiers } from '@ape.swap/apeswap-lists';
|
|
3
|
-
interface
|
|
3
|
+
interface XmasFlashBondProps {
|
|
4
4
|
userTier: LaunchBondTiers | null;
|
|
5
5
|
minTier: number | undefined;
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
8
|
-
export default
|
|
7
|
+
declare const TagXmasFlashBond: React.FC<XmasFlashBondProps>;
|
|
8
|
+
export default TagXmasFlashBond;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { icons } from '../../components/uikit-sdk/Svg/types';
|
|
2
|
-
|
|
3
|
-
export declare const MAINNET_CHAINS: ChainId[];
|
|
2
|
+
export declare const MAINNET_CHAINS: any[];
|
|
4
3
|
export declare const NETWORK_ICONS: Partial<Record<number, icons>>;
|
|
5
4
|
export declare const NETWORK_LABEL: Record<number, string>;
|
|
6
5
|
export declare const BLOCK_EXPLORER: Record<number, string>;
|