@ape.swap/bonds-sdk 1.0.76 → 1.0.77-4.0
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/BondMenu/BondMenu.d.ts +12 -0
- package/dist/components/BondMenu/BondMenu.js +51 -0
- package/dist/components/BondMenu/useChainFilterOption.d.ts +4 -0
- package/dist/components/BondMenu/useChainFilterOption.js +30 -0
- package/dist/components/BondRows/BondRow.d.ts +10 -0
- package/dist/components/BondRows/BondRow.js +92 -0
- package/dist/components/BondRows/BondRowHeader.d.ts +16 -0
- package/dist/components/BondRows/BondRowHeader.js +23 -0
- package/dist/components/BondRows/BondRowsByChain.d.ts +10 -0
- package/dist/components/BondRows/BondRowsByChain.js +24 -0
- package/dist/components/BondRows/BondRowsWithTitle.d.ts +10 -0
- package/dist/components/BondRows/BondRowsWithTitle.js +31 -0
- package/dist/components/BondRows/ChainTitle.d.ts +8 -0
- package/dist/components/BondRows/ChainTitle.js +29 -0
- package/dist/components/MenuSelect/MenuSelect.d.ts +4 -0
- package/dist/components/{uikit/Tabs/TabPanel.js → MenuSelect/MenuSelect.js} +12 -5
- package/dist/components/MenuSelect/RecommendationSelector.d.ts +7 -0
- package/dist/components/MenuSelect/RecommendationSelector.js +43 -0
- package/dist/components/MenuSelect/types.d.ts +22 -0
- package/dist/components/Modals/BondModal/BondModal.d.ts +13 -0
- package/dist/components/Modals/BondModal/BondModal.js +276 -0
- package/dist/components/Modals/BondModal/helper.d.ts +10 -0
- package/dist/components/Modals/BondModal/helper.js +54 -0
- package/dist/components/Modals/YourBondsModal/YourBondsModal.d.ts +10 -0
- package/dist/components/Modals/YourBondsModal/YourBondsModal.js +184 -0
- package/dist/components/Modals/YourBondsModal/styles.d.ts +2 -0
- package/dist/components/Modals/YourBondsModal/styles.js +12 -0
- package/dist/components/NetworkFilter/index.d.ts +6 -0
- package/dist/components/NetworkFilter/index.js +77 -0
- package/dist/components/ProgressBar/ProgressBar.d.ts +8 -0
- package/dist/components/ProgressBar/ProgressBar.js +21 -0
- package/dist/components/ProgressBar/ProgressBarWrapper.d.ts +14 -0
- package/dist/components/ProgressBar/ProgressBarWrapper.js +20 -0
- package/dist/components/ProgressBar/styles.d.ts +2 -0
- package/dist/components/ProgressBar/styles.js +82 -0
- package/dist/components/TokenInfoAndName/index.d.ts +8 -0
- package/dist/components/TokenInfoAndName/index.js +72 -0
- package/dist/components/Tooltip/ButtonsRow.d.ts +8 -0
- package/dist/components/Tooltip/ButtonsRow.js +21 -0
- package/dist/components/Tooltip/Tooltip.d.ts +18 -0
- package/dist/components/Tooltip/Tooltip.js +24 -0
- package/dist/components/Tooltip/styles.d.ts +2 -0
- package/dist/components/Tooltip/styles.js +44 -0
- package/dist/components/{uikit → uikit-sdk}/Checkbox/index.js +1 -1
- package/dist/components/{uikit → uikit-sdk}/Input/Input.js +2 -2
- package/dist/components/{uikit → uikit-sdk}/Input/NumericInput.d.ts +1 -1
- package/dist/components/{uikit/Svg → uikit-sdk/Skeleton}/styles.d.ts +2 -1
- package/dist/components/uikit-sdk/Svg/Icons/AllChains.d.ts +4 -0
- package/dist/components/uikit-sdk/Svg/Icons/AllChains.js +17 -0
- package/dist/components/uikit-sdk/Svg/Icons/Hot.d.ts +4 -0
- package/dist/components/uikit-sdk/Svg/Icons/Hot.js +17 -0
- package/dist/components/uikit-sdk/Svg/Icons/Sort.d.ts +4 -0
- package/dist/components/uikit-sdk/Svg/Icons/Sort.js +27 -0
- package/dist/components/{uikit → uikit-sdk}/Svg/Icons/index.d.ts +3 -0
- package/dist/components/{uikit → uikit-sdk}/Svg/Icons/index.js +3 -0
- package/dist/components/{uikit → uikit-sdk}/Svg/index.js +7 -1
- package/dist/components/{uikit → uikit-sdk}/Svg/types.d.ts +4 -1
- package/dist/components/{uikit → uikit-sdk}/Svg/types.js +3 -0
- package/dist/components/uikit-sdk/Tag/styles.d.ts +9 -0
- package/dist/components/{uikit → uikit-sdk}/Tag/types.js +1 -1
- package/dist/components/uikit-sdk/TokenImage/index.d.ts +7 -0
- package/dist/components/uikit-sdk/TokenImage/index.js +29 -0
- package/dist/components/{uikit/Tooltip → uikit-sdk/TooltipBubble}/styles.js +1 -1
- package/dist/components/uikit-sdk/index.d.ts +9 -0
- package/dist/components/uikit-sdk/index.js +11 -0
- package/dist/config/abi/bond.json +450 -0
- package/dist/config/abi/erc20.json +117 -0
- package/dist/config/abi/multicallv2.json +143 -0
- package/dist/config/abi/types/Banana.d.ts +417 -0
- package/dist/config/abi/types/Bond.d.ts +803 -0
- package/dist/config/abi/types/Bond.js +1 -0
- package/dist/config/abi/types/BondNft.d.ts +603 -0
- package/dist/config/abi/types/BondNft.js +1 -0
- package/dist/config/abi/types/EnsPublicResolver.d.ts +513 -0
- package/dist/config/abi/types/EnsPublicResolver.js +1 -0
- package/dist/config/abi/types/EnsRegistrar.d.ts +274 -0
- package/dist/config/abi/types/EnsRegistrar.js +1 -0
- package/dist/config/abi/types/Erc20.d.ts +168 -0
- package/dist/config/abi/types/Erc20.js +1 -0
- package/dist/config/abi/types/Erc20_bytes32.d.ts +50 -0
- package/dist/config/abi/types/Erc20_bytes32.js +1 -0
- package/dist/config/abi/types/JungleChef.d.ts +260 -0
- package/dist/config/abi/types/JungleChef.js +1 -0
- package/dist/config/abi/types/LaunchBonds.d.ts +1362 -0
- package/dist/config/abi/types/LaunchBonds.js +1 -0
- package/dist/config/abi/types/LensContract.d.ts +295 -0
- package/dist/config/abi/types/LensContract.js +1 -0
- package/dist/config/abi/types/LockVeAbond.d.ts +1279 -0
- package/dist/config/abi/types/LockVeAbond.js +1 -0
- package/dist/config/abi/types/MigrationBond.d.ts +1136 -0
- package/dist/config/abi/types/MigrationBond.js +1 -0
- package/dist/config/abi/types/MigrationFveAbond.d.ts +290 -0
- package/dist/config/abi/types/MigrationFveAbond.js +1 -0
- package/dist/config/abi/types/MiniComplexRewarder.d.ts +469 -0
- package/dist/config/abi/types/MiniComplexRewarder.js +1 -0
- package/dist/config/abi/types/Multicallv2.d.ts +150 -0
- package/dist/config/abi/types/Multicallv2.js +1 -0
- package/dist/config/abi/types/Multicallv3.d.ts +98 -0
- package/dist/config/abi/types/Multicallv3.js +1 -0
- package/dist/config/abi/types/NonFungibleApes.d.ts +532 -0
- package/dist/config/abi/types/NonFungibleApes.js +1 -0
- package/dist/config/abi/types/NonFungibleBananas.d.ts +505 -0
- package/dist/config/abi/types/NonFungibleBananas.js +1 -0
- package/dist/config/abi/types/PriceGetter.d.ts +713 -0
- package/dist/config/abi/types/PriceGetter.js +1 -0
- package/dist/config/abi/types/PriceGetterLinea.d.ts +789 -0
- package/dist/config/abi/types/PriceGetterLinea.js +1 -0
- package/dist/config/abi/types/PriceGetterV2.d.ts +729 -0
- package/dist/config/abi/types/PriceGetterV2.js +1 -0
- package/dist/config/abi/types/SousChef.d.ts +579 -0
- package/dist/config/abi/types/SousChef.js +1 -0
- package/dist/config/abi/types/Treasury.d.ts +277 -0
- package/dist/config/abi/types/Treasury.js +1 -0
- package/dist/config/abi/types/Weth.d.ts +221 -0
- package/dist/config/abi/types/Weth.js +1 -0
- package/dist/config/abi/types/Zap.d.ts +528 -0
- package/dist/config/abi/types/Zap.js +1 -0
- package/dist/config/abi/types/common.d.ts +22 -0
- package/dist/config/abi/types/common.js +1 -0
- package/dist/config/abi/types/factories/Banana__factory.d.ts +475 -0
- package/dist/config/abi/types/factories/Banana__factory.js +627 -0
- package/dist/config/abi/types/factories/BondNft__factory.d.ts +723 -0
- package/dist/config/abi/types/factories/BondNft__factory.js +950 -0
- package/dist/config/abi/types/factories/Bond__factory.d.ts +799 -0
- package/dist/config/abi/types/factories/Bond__factory.js +1041 -0
- package/dist/config/abi/types/factories/EnsPublicResolver__factory.d.ts +649 -0
- package/dist/config/abi/types/factories/EnsPublicResolver__factory.js +832 -0
- package/dist/config/abi/types/factories/EnsRegistrar__factory.d.ts +338 -0
- package/dist/config/abi/types/factories/EnsRegistrar__factory.js +438 -0
- package/dist/config/abi/types/factories/Erc20__factory.d.ts +175 -0
- package/dist/config/abi/types/factories/Erc20__factory.js +238 -0
- package/dist/config/abi/types/factories/Erc20_bytes32__factory.d.ts +30 -0
- package/dist/config/abi/types/factories/Erc20_bytes32__factory.js +46 -0
- package/dist/config/abi/types/factories/JungleChef__factory.d.ts +247 -0
- package/dist/config/abi/types/factories/JungleChef__factory.js +325 -0
- package/dist/config/abi/types/factories/LaunchBonds__factory.d.ts +1560 -0
- package/dist/config/abi/types/factories/LaunchBonds__factory.js +2030 -0
- package/dist/config/abi/types/factories/LensContract__factory.d.ts +254 -0
- package/dist/config/abi/types/factories/LensContract__factory.js +337 -0
- package/dist/config/abi/types/factories/LockVeAbond__factory.d.ts +1698 -0
- package/dist/config/abi/types/factories/LockVeAbond__factory.js +2214 -0
- package/dist/config/abi/types/factories/MigrationBond__factory.d.ts +1268 -0
- package/dist/config/abi/types/factories/MigrationBond__factory.js +1655 -0
- package/dist/config/abi/types/factories/MigrationFveAbond__factory.d.ts +262 -0
- package/dist/config/abi/types/factories/MigrationFveAbond__factory.js +345 -0
- package/dist/config/abi/types/factories/MiniComplexRewarder__factory.d.ts +448 -0
- package/dist/config/abi/types/factories/MiniComplexRewarder__factory.js +585 -0
- package/dist/config/abi/types/factories/Multicallv2__factory.d.ts +115 -0
- package/dist/config/abi/types/factories/Multicallv2__factory.js +159 -0
- package/dist/config/abi/types/factories/Multicallv3__factory.d.ts +76 -0
- package/dist/config/abi/types/factories/Multicallv3__factory.js +108 -0
- package/dist/config/abi/types/factories/NonFungibleApes__factory.d.ts +617 -0
- package/dist/config/abi/types/factories/NonFungibleApes__factory.js +809 -0
- package/dist/config/abi/types/factories/NonFungibleBananas__factory.d.ts +576 -0
- package/dist/config/abi/types/factories/NonFungibleBananas__factory.js +755 -0
- package/dist/config/abi/types/factories/PriceGetterLinea__factory.d.ts +1105 -0
- package/dist/config/abi/types/factories/PriceGetterLinea__factory.js +1464 -0
- package/dist/config/abi/types/factories/PriceGetterV2__factory.d.ts +1027 -0
- package/dist/config/abi/types/factories/PriceGetterV2__factory.js +1363 -0
- package/dist/config/abi/types/factories/PriceGetter__factory.d.ts +999 -0
- package/dist/config/abi/types/factories/PriceGetter__factory.js +1325 -0
- package/dist/config/abi/types/factories/SousChef__factory.d.ts +511 -0
- package/dist/config/abi/types/factories/SousChef__factory.js +665 -0
- package/dist/config/abi/types/factories/Treasury__factory.d.ts +235 -0
- package/dist/config/abi/types/factories/Treasury__factory.js +308 -0
- package/dist/config/abi/types/factories/Weth__factory.d.ts +220 -0
- package/dist/config/abi/types/factories/Weth__factory.js +295 -0
- package/dist/config/abi/types/factories/Zap__factory.d.ts +695 -0
- package/dist/config/abi/types/factories/Zap__factory.js +888 -0
- package/dist/config/abi/types/factories/index.d.ts +25 -0
- package/dist/config/abi/types/factories/index.js +28 -0
- package/dist/config/abi/types/index.d.ts +51 -0
- package/dist/config/abi/types/index.js +26 -0
- package/dist/config/constants/addresses.d.ts +20 -0
- package/dist/config/constants/addresses.js +116 -0
- package/dist/config/constants/api.d.ts +6 -0
- package/dist/config/constants/api.js +6 -0
- package/dist/config/constants/chains.d.ts +48 -0
- package/dist/config/constants/chains.js +436 -0
- package/dist/config/constants/lifiRouting.d.ts +2 -0
- package/dist/config/constants/lifiRouting.js +6 -0
- package/dist/config/constants/lists.d.ts +10 -0
- package/dist/config/constants/lists.js +21 -0
- package/dist/config/constants/meta.d.ts +11 -0
- package/dist/config/constants/meta.js +92 -0
- package/dist/config/constants/misc.d.ts +3 -0
- package/dist/config/constants/misc.js +4 -0
- package/dist/config/constants/networks.d.ts +2 -0
- package/dist/config/constants/networks.js +44 -0
- package/dist/config/constants/products.d.ts +21 -0
- package/dist/config/constants/products.js +58 -0
- package/dist/config/constants/queryKeys.d.ts +24 -0
- package/dist/config/constants/queryKeys.js +24 -0
- package/dist/config/constants/tokens.d.ts +6 -0
- package/dist/config/constants/tokens.js +452 -0
- package/dist/config/constants/tutorials.d.ts +7 -0
- package/dist/config/constants/tutorials.js +80 -0
- package/dist/config/localization/languages.d.ts +11 -0
- package/dist/config/localization/languages.js +83 -0
- package/dist/config/localization/translations.json +918 -0
- package/dist/contexts/Localization/Provider.d.ts +7 -0
- package/dist/contexts/Localization/Provider.js +134 -0
- package/dist/contexts/Localization/helpers.d.ts +3 -0
- package/dist/contexts/Localization/helpers.js +63 -0
- package/dist/contexts/Localization/index.d.ts +3 -0
- package/dist/contexts/Localization/index.js +2 -0
- package/dist/contexts/Localization/types.d.ts +21 -0
- package/dist/contexts/Localization/types.js +1 -0
- package/dist/contexts/Localization/useTranslation.d.ts +2 -0
- package/dist/contexts/Localization/useTranslation.js +10 -0
- package/dist/contexts/ModalContext.js +1 -1
- package/dist/contexts/RefreshContext.d.ts +10 -0
- package/dist/contexts/RefreshContext.js +89 -0
- package/dist/enum/apeswaplists.d.ts +418 -0
- package/dist/enum/apeswaplists.js +152 -0
- package/dist/enum/tooltips.d.ts +13 -0
- package/dist/enum/tooltips.js +13 -0
- package/dist/hooks/useCookie.d.ts +9 -0
- package/dist/hooks/useCookie.js +29 -0
- package/dist/hooks/usePendingVesting.d.ts +5 -0
- package/dist/hooks/usePendingVesting.js +13 -0
- package/dist/hooks/useRefresh.d.ts +6 -0
- package/dist/hooks/useRefresh.js +7 -0
- package/dist/hooks/useTimer.d.ts +2 -0
- package/dist/hooks/useTimer.js +13 -0
- package/dist/hooks/useTopThreeTags.d.ts +2 -0
- package/dist/hooks/useTopThreeTags.js +25 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.js +5 -3
- package/dist/{components → pages}/Bonds/Bonds.d.ts +6 -2
- package/dist/pages/Bonds/Bonds.js +185 -0
- package/dist/pages/YourBonds/YourBonds.d.ts +15 -0
- package/dist/pages/YourBonds/YourBonds.js +287 -0
- package/dist/pages/YourBonds/fetchBillsUser.d.ts +17 -0
- package/dist/pages/YourBonds/fetchBillsUser.js +237 -0
- package/dist/pages/YourBonds/getBillNftData.d.ts +9 -0
- package/dist/pages/YourBonds/getBillNftData.js +109 -0
- package/dist/scss/BondMenu.scss +29 -0
- package/dist/scss/BondModal.scss +409 -0
- package/dist/scss/BondRow.scss +98 -0
- package/dist/scss/BondRowHeader.scss +124 -0
- package/dist/scss/BondRowsByChain.scss +5 -0
- package/dist/scss/BondRowsWithTitle.scss +4 -0
- package/dist/scss/Bonds.scss +17 -0
- package/dist/scss/ProgressBar.scss +13 -0
- package/dist/scss/YourBonds.scss +198 -0
- package/dist/scss/YourBondsModal.scss +314 -0
- package/dist/theme/colors.d.ts +3 -2
- package/dist/theme/colors.js +3 -2
- package/dist/types/bonds.d.ts +35 -1
- package/dist/types/yourbonds.d.ts +93 -0
- package/dist/types/yourbonds.js +1 -0
- package/dist/utils/convertToTokenValue.d.ts +4 -0
- package/dist/utils/convertToTokenValue.js +24 -0
- package/dist/utils/formatNumber.d.ts +2 -0
- package/dist/utils/formatNumber.js +34 -0
- package/dist/utils/formatNumbers.d.ts +36 -0
- package/dist/utils/formatNumbers.js +148 -0
- package/dist/utils/getBalanceNumber.d.ts +4 -0
- package/dist/utils/getBalanceNumber.js +18 -0
- package/dist/utils/index.d.ts +16 -0
- package/dist/utils/index.js +127 -0
- package/dist/utils/localStorageHelpers.d.ts +3 -0
- package/dist/utils/localStorageHelpers.js +47 -0
- package/dist/utils/multicall.d.ts +7 -0
- package/dist/utils/multicall.js +90 -0
- package/dist/utils/roundNumber.d.ts +7 -0
- package/dist/utils/roundNumber.js +14 -0
- package/dist/utils/track.d.ts +7 -0
- package/dist/utils/track.js +17 -0
- package/package.json +35 -12
- package/dist/components/BondModal/BondModal.d.ts +0 -10
- package/dist/components/BondModal/BondModal.js +0 -31
- package/dist/components/BondSingle/BondSingle.d.ts +0 -5
- package/dist/components/BondSingle/BondSingle.js +0 -45
- package/dist/components/Bonds/Bonds.js +0 -152
- package/dist/components/Bonds/styles.d.ts +0 -4
- package/dist/components/Bonds/styles.js +0 -75
- package/dist/components/uikit/Dropdown/Dropdown.d.ts +0 -4
- package/dist/components/uikit/Dropdown/Dropdown.js +0 -58
- package/dist/components/uikit/Dropdown/DropdownItem.d.ts +0 -4
- package/dist/components/uikit/Dropdown/DropdownItem.js +0 -47
- package/dist/components/uikit/Dropdown/index.d.ts +0 -3
- package/dist/components/uikit/Dropdown/index.js +0 -2
- package/dist/components/uikit/Dropdown/styles.js +0 -16
- package/dist/components/uikit/Dropdown/types.d.ts +0 -58
- package/dist/components/uikit/Dropdown/types.js +0 -22
- package/dist/components/uikit/Link/index.d.ts +0 -9
- package/dist/components/uikit/Link/index.js +0 -29
- package/dist/components/uikit/Modal/ModalFooter.d.ts +0 -4
- package/dist/components/uikit/Modal/ModalFooter.js +0 -32
- package/dist/components/uikit/Modal/ModalHeader.d.ts +0 -4
- package/dist/components/uikit/Modal/ModalHeader.js +0 -31
- package/dist/components/uikit/Modal/index.d.ts +0 -4
- package/dist/components/uikit/Modal/index.js +0 -55
- package/dist/components/uikit/Modal/styles.d.ts +0 -3
- package/dist/components/uikit/Modal/styles.js +0 -62
- package/dist/components/uikit/Modal/types.d.ts +0 -17
- package/dist/components/uikit/Skeleton/styles.d.ts +0 -5
- package/dist/components/uikit/Spinner/apeSpinner.json +0 -2764
- package/dist/components/uikit/Spinner/index.d.ts +0 -5
- package/dist/components/uikit/Spinner/index.js +0 -20
- package/dist/components/uikit/SwiperDots/index.d.ts +0 -6
- package/dist/components/uikit/SwiperDots/index.js +0 -14
- package/dist/components/uikit/Tabs/Tab.d.ts +0 -4
- package/dist/components/uikit/Tabs/Tab.js +0 -34
- package/dist/components/uikit/Tabs/TabPanel.d.ts +0 -4
- package/dist/components/uikit/Tabs/Tabs.d.ts +0 -4
- package/dist/components/uikit/Tabs/Tabs.js +0 -67
- package/dist/components/uikit/Tabs/index.d.ts +0 -2
- package/dist/components/uikit/Tabs/index.js +0 -2
- package/dist/components/uikit/Tabs/styles.d.ts +0 -3
- package/dist/components/uikit/Tabs/styles.js +0 -40
- package/dist/components/uikit/Tabs/types.d.ts +0 -54
- package/dist/components/uikit/Tabs/types.js +0 -22
- package/dist/components/uikit/Tag/styles.d.ts +0 -5
- package/dist/components/uikit/Toggle/index.d.ts +0 -4
- package/dist/components/uikit/Toggle/index.js +0 -63
- package/dist/components/uikit/Toggle/styles.d.ts +0 -3
- package/dist/components/uikit/Toggle/styles.js +0 -39
- package/dist/components/uikit/Toggle/types.d.ts +0 -31
- package/dist/components/uikit/Toggle/types.js +0 -17
- package/dist/components/uikit/TutorialModal/index.d.ts +0 -4
- package/dist/components/uikit/TutorialModal/index.js +0 -52
- package/dist/components/uikit/TutorialModal/styles.d.ts +0 -8
- package/dist/components/uikit/TutorialModal/styles.js +0 -86
- package/dist/components/uikit/TutorialModal/types.d.ts +0 -22
- package/dist/components/uikit/TutorialModal/useTutorialModal.d.ts +0 -6
- package/dist/components/uikit/TutorialModal/useTutorialModal.js +0 -20
- package/dist/components/uikit/index.d.ts +0 -18
- package/dist/components/uikit/index.js +0 -20
- package/dist/scss/bondmodal.scss +0 -92
- package/dist/scss/bonds.scss +0 -70
- package/dist/scss/bondsingle.scss +0 -70
- /package/dist/components/{uikit/Modal → MenuSelect}/types.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Button/Button.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Button/Button.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Button/IconButton.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Button/IconButton.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Button/index.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Button/index.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Button/styles.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Button/styles.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Button/types.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Button/types.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Checkbox/index.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Checkbox/types.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Checkbox/types.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Flex/index.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Flex/index.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Input/Input.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Input/NumericInput.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Input/StyledInput.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Input/StyledInput.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Input/index.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Input/index.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Select/Select.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Select/Select.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Select/SelectItem.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Select/SelectItem.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Select/index.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Select/index.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Select/styles.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Select/styles.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Select/types.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Select/types.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Skeleton/index.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Skeleton/index.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Skeleton/styles.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Skeleton/types.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Skeleton/types.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/AbondFullLogo.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/AbondFullLogo.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/AbondSmallLogo.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/AbondSmallLogo.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/AccountMonkey.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/AccountMonkey.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ApebondLogo.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ApebondLogo.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ApeswapSmallLogo.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ApeswapSmallLogo.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Arrow.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Arrow.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Audit.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Audit.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/BananaIcon.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/BananaIcon.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/BillsM1.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/BillsM1.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/BillsM2.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/BillsM2.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/BillsM3.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/BillsM3.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Bridge.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Bridge.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Bubble.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Bubble.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Calculator.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Calculator.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Calendar.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Calendar.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Cancelled.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Cancelled.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Card.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Card.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Caret.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Caret.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Chain.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Chain.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Chart.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Chart.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Chat.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Chat.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Close.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Close.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Cog.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Cog.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Collapse.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Collapse.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Copy.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Copy.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Discord.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Discord.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/DiscordNew.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/DiscordNew.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Docs.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Docs.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/DocsV2.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/DocsV2.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Ellipse.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Ellipse.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Error.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Error.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Expand.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Expand.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Explorer.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Explorer.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/External.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/External.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Farm.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Farm.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Fav.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Fav.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/FilledURL.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/FilledURL.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Fire.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Fire.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Frame.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Frame.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/FullLogo.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/FullLogo.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Gnana.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Gnana.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/GreenShield.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/GreenShield.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Hamburger.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Hamburger.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/HamburgerClosed.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/HamburgerClosed.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Home.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Home.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Info.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Info.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/InfoSolid.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/InfoSolid.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Insight.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Insight.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Instagram.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Instagram.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Island.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Island.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Language.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Language.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/LanguageIcon.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/LanguageIcon.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/LineChart.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/LineChart.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/LiquidityIcon.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/LiquidityIcon.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Logout.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Logout.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Medium.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Medium.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/MenuSettings.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/MenuSettings.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Message.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Message.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Migrate.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Migrate.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Moon.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Moon.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/More.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/More.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/NFA.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/NFA.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/NavCaret.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/NavCaret.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/PlaceholderMonkey.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/PlaceholderMonkey.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Play.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Play.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Pool.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Pool.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Positions.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Positions.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ProfileDark.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ProfileDark.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ProfileIcon.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ProfileIcon.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ProfileLight.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ProfileLight.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Question.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Question.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/QuestionCircle.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/QuestionCircle.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/QuestionFill.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/QuestionFill.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Quiz.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Quiz.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Receipt.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Receipt.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Reddit.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Reddit.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Rocket.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Rocket.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ScrollTop.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ScrollTop.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Search.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Search.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Send.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Send.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Settings.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Settings.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Share.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Share.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Success.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Success.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/SuccessOutline.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/SuccessOutline.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/SwapArrows.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/SwapArrows.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/SwitchArrows.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/SwitchArrows.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Tag.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Tag.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Telegram.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Telegram.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/TelegramNew.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/TelegramNew.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/TextLogo.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/TextLogo.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/TickShield.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/TickShield.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Trade.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Trade.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Trash.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Trash.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Twitter.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Twitter.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/URL.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/URL.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Vaults.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Vaults.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Verified.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Verified.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Wallet.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Wallet.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Warning.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Warning.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Watch.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Watch.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Website.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/Website.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/WebsiteNew.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/WebsiteNew.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/WhitepaperNew.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/WhitepaperNew.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/XNew.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/XNew.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/YellowQuestionMark.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/YellowQuestionMark.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ZapArrow.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ZapArrow.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ZapIcon.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/ZapIcon.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/polygonNew.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/polygonNew.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/types.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/Icons/types.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/index.d.ts +0 -0
- /package/dist/components/{uikit/Dropdown → uikit-sdk/Svg}/styles.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/styles.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/ABOND.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/ABOND.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/ARBITRUM.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/ARBITRUM.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/AVAX.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/AVAX.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/BANANA.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/BANANA.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/BASE.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/BASE.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/BNB.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/BNB.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/BSC.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/BSC.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/CELO.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/CELO.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/CRONOS.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/CRONOS.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/ETH.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/ETH.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/FANTOM.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/FANTOM.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/GNANA.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/GNANA.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/GNOSIS.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/GNOSIS.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/INEVM.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/INEVM.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/IOTA.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/IOTA.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/LIGHTLINK.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/LIGHTLINK.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/LINEA.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/LINEA.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/OKX.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/OKX.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/OPTIMISM.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/OPTIMISM.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/POLYGON.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/POLYGON.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/POLYGONZK.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/POLYGONZK.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/TLOS.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/TLOS.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/index.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/tokens/index.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/BinanceChain.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/BinanceChain.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Bitkeep.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Bitkeep.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Brave.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Brave.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Coinbase.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Coinbase.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/MadWallet.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/MadWallet.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/MathWallet.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/MathWallet.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Metamask.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Metamask.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Nabox.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Nabox.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/OKX.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/OKX.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/OntoWallet.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/OntoWallet.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/SafePalWallet.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/SafePalWallet.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/SocialLogin.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/SocialLogin.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/TokenPocket.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/TokenPocket.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/TorusWallet.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/TorusWallet.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/TrustWallet.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/TrustWallet.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Unstoppable.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/Unstoppable.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/WalletConnect.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/WalletConnect.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/WalletImage.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/WalletImage.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/index.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Svg/walletIcons/index.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Tag/ListTag.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Tag/ListTag.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Tag/Tag.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Tag/Tag.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Tag/index.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Tag/index.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Tag/styles.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Tag/types.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Text/index.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Text/index.js +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Text/types.d.ts +0 -0
- /package/dist/components/{uikit → uikit-sdk}/Text/types.js +0 -0
- /package/dist/components/{uikit/Tooltip → uikit-sdk/TooltipBubble}/index.d.ts +0 -0
- /package/dist/components/{uikit/Tooltip → uikit-sdk/TooltipBubble}/index.js +0 -0
- /package/dist/components/{uikit/Tooltip → uikit-sdk/TooltipBubble}/styles.d.ts +0 -0
- /package/dist/components/{uikit/Tooltip → uikit-sdk/TooltipBubble}/types.d.ts +0 -0
- /package/dist/components/{uikit/Tooltip → uikit-sdk/TooltipBubble}/types.js +0 -0
- /package/dist/{components/uikit/TutorialModal/types.js → config/abi/types/Banana.js} +0 -0
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { Contract, utils } from "ethers";
|
|
5
|
+
var _abi = [
|
|
6
|
+
{
|
|
7
|
+
constant: true,
|
|
8
|
+
inputs: [],
|
|
9
|
+
name: "name",
|
|
10
|
+
outputs: [
|
|
11
|
+
{
|
|
12
|
+
name: "",
|
|
13
|
+
type: "string",
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
payable: false,
|
|
17
|
+
stateMutability: "view",
|
|
18
|
+
type: "function",
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
constant: false,
|
|
22
|
+
inputs: [
|
|
23
|
+
{
|
|
24
|
+
name: "_spender",
|
|
25
|
+
type: "address",
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
name: "_value",
|
|
29
|
+
type: "uint256",
|
|
30
|
+
},
|
|
31
|
+
],
|
|
32
|
+
name: "approve",
|
|
33
|
+
outputs: [
|
|
34
|
+
{
|
|
35
|
+
name: "",
|
|
36
|
+
type: "bool",
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
payable: false,
|
|
40
|
+
stateMutability: "nonpayable",
|
|
41
|
+
type: "function",
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
constant: true,
|
|
45
|
+
inputs: [],
|
|
46
|
+
name: "totalSupply",
|
|
47
|
+
outputs: [
|
|
48
|
+
{
|
|
49
|
+
name: "",
|
|
50
|
+
type: "uint256",
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
payable: false,
|
|
54
|
+
stateMutability: "view",
|
|
55
|
+
type: "function",
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
constant: false,
|
|
59
|
+
inputs: [
|
|
60
|
+
{
|
|
61
|
+
name: "_from",
|
|
62
|
+
type: "address",
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
name: "_to",
|
|
66
|
+
type: "address",
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: "_value",
|
|
70
|
+
type: "uint256",
|
|
71
|
+
},
|
|
72
|
+
],
|
|
73
|
+
name: "transferFrom",
|
|
74
|
+
outputs: [
|
|
75
|
+
{
|
|
76
|
+
name: "",
|
|
77
|
+
type: "bool",
|
|
78
|
+
},
|
|
79
|
+
],
|
|
80
|
+
payable: false,
|
|
81
|
+
stateMutability: "nonpayable",
|
|
82
|
+
type: "function",
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
constant: true,
|
|
86
|
+
inputs: [],
|
|
87
|
+
name: "decimals",
|
|
88
|
+
outputs: [
|
|
89
|
+
{
|
|
90
|
+
name: "",
|
|
91
|
+
type: "uint8",
|
|
92
|
+
},
|
|
93
|
+
],
|
|
94
|
+
payable: false,
|
|
95
|
+
stateMutability: "view",
|
|
96
|
+
type: "function",
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
constant: true,
|
|
100
|
+
inputs: [
|
|
101
|
+
{
|
|
102
|
+
name: "_owner",
|
|
103
|
+
type: "address",
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
name: "balanceOf",
|
|
107
|
+
outputs: [
|
|
108
|
+
{
|
|
109
|
+
name: "balance",
|
|
110
|
+
type: "uint256",
|
|
111
|
+
},
|
|
112
|
+
],
|
|
113
|
+
payable: false,
|
|
114
|
+
stateMutability: "view",
|
|
115
|
+
type: "function",
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
constant: true,
|
|
119
|
+
inputs: [],
|
|
120
|
+
name: "symbol",
|
|
121
|
+
outputs: [
|
|
122
|
+
{
|
|
123
|
+
name: "",
|
|
124
|
+
type: "string",
|
|
125
|
+
},
|
|
126
|
+
],
|
|
127
|
+
payable: false,
|
|
128
|
+
stateMutability: "view",
|
|
129
|
+
type: "function",
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
constant: false,
|
|
133
|
+
inputs: [
|
|
134
|
+
{
|
|
135
|
+
name: "_to",
|
|
136
|
+
type: "address",
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
name: "_value",
|
|
140
|
+
type: "uint256",
|
|
141
|
+
},
|
|
142
|
+
],
|
|
143
|
+
name: "transfer",
|
|
144
|
+
outputs: [
|
|
145
|
+
{
|
|
146
|
+
name: "",
|
|
147
|
+
type: "bool",
|
|
148
|
+
},
|
|
149
|
+
],
|
|
150
|
+
payable: false,
|
|
151
|
+
stateMutability: "nonpayable",
|
|
152
|
+
type: "function",
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
constant: true,
|
|
156
|
+
inputs: [
|
|
157
|
+
{
|
|
158
|
+
name: "_owner",
|
|
159
|
+
type: "address",
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
name: "_spender",
|
|
163
|
+
type: "address",
|
|
164
|
+
},
|
|
165
|
+
],
|
|
166
|
+
name: "allowance",
|
|
167
|
+
outputs: [
|
|
168
|
+
{
|
|
169
|
+
name: "",
|
|
170
|
+
type: "uint256",
|
|
171
|
+
},
|
|
172
|
+
],
|
|
173
|
+
payable: false,
|
|
174
|
+
stateMutability: "view",
|
|
175
|
+
type: "function",
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
payable: true,
|
|
179
|
+
stateMutability: "payable",
|
|
180
|
+
type: "fallback",
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
anonymous: false,
|
|
184
|
+
inputs: [
|
|
185
|
+
{
|
|
186
|
+
indexed: true,
|
|
187
|
+
name: "owner",
|
|
188
|
+
type: "address",
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
indexed: true,
|
|
192
|
+
name: "spender",
|
|
193
|
+
type: "address",
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
indexed: false,
|
|
197
|
+
name: "value",
|
|
198
|
+
type: "uint256",
|
|
199
|
+
},
|
|
200
|
+
],
|
|
201
|
+
name: "Approval",
|
|
202
|
+
type: "event",
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
anonymous: false,
|
|
206
|
+
inputs: [
|
|
207
|
+
{
|
|
208
|
+
indexed: true,
|
|
209
|
+
name: "from",
|
|
210
|
+
type: "address",
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
indexed: true,
|
|
214
|
+
name: "to",
|
|
215
|
+
type: "address",
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
indexed: false,
|
|
219
|
+
name: "value",
|
|
220
|
+
type: "uint256",
|
|
221
|
+
},
|
|
222
|
+
],
|
|
223
|
+
name: "Transfer",
|
|
224
|
+
type: "event",
|
|
225
|
+
},
|
|
226
|
+
];
|
|
227
|
+
export var Erc20__factory = /** @class */ (function () {
|
|
228
|
+
function Erc20__factory() {
|
|
229
|
+
}
|
|
230
|
+
Erc20__factory.createInterface = function () {
|
|
231
|
+
return new utils.Interface(_abi);
|
|
232
|
+
};
|
|
233
|
+
Erc20__factory.connect = function (address, signerOrProvider) {
|
|
234
|
+
return new Contract(address, _abi, signerOrProvider);
|
|
235
|
+
};
|
|
236
|
+
Erc20__factory.abi = _abi;
|
|
237
|
+
return Erc20__factory;
|
|
238
|
+
}());
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Signer } from "ethers";
|
|
2
|
+
import type { Provider } from "@ethersproject/providers";
|
|
3
|
+
import type { Erc20_bytes32, Erc20_bytes32Interface } from "../Erc20_bytes32";
|
|
4
|
+
export declare class Erc20_bytes32__factory {
|
|
5
|
+
static readonly abi: readonly [{
|
|
6
|
+
readonly constant: true;
|
|
7
|
+
readonly inputs: readonly [];
|
|
8
|
+
readonly name: "name";
|
|
9
|
+
readonly outputs: readonly [{
|
|
10
|
+
readonly name: "";
|
|
11
|
+
readonly type: "bytes32";
|
|
12
|
+
}];
|
|
13
|
+
readonly payable: false;
|
|
14
|
+
readonly stateMutability: "view";
|
|
15
|
+
readonly type: "function";
|
|
16
|
+
}, {
|
|
17
|
+
readonly constant: true;
|
|
18
|
+
readonly inputs: readonly [];
|
|
19
|
+
readonly name: "symbol";
|
|
20
|
+
readonly outputs: readonly [{
|
|
21
|
+
readonly name: "";
|
|
22
|
+
readonly type: "bytes32";
|
|
23
|
+
}];
|
|
24
|
+
readonly payable: false;
|
|
25
|
+
readonly stateMutability: "view";
|
|
26
|
+
readonly type: "function";
|
|
27
|
+
}];
|
|
28
|
+
static createInterface(): Erc20_bytes32Interface;
|
|
29
|
+
static connect(address: string, signerOrProvider: Signer | Provider): Erc20_bytes32;
|
|
30
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { Contract, utils } from "ethers";
|
|
5
|
+
var _abi = [
|
|
6
|
+
{
|
|
7
|
+
constant: true,
|
|
8
|
+
inputs: [],
|
|
9
|
+
name: "name",
|
|
10
|
+
outputs: [
|
|
11
|
+
{
|
|
12
|
+
name: "",
|
|
13
|
+
type: "bytes32",
|
|
14
|
+
},
|
|
15
|
+
],
|
|
16
|
+
payable: false,
|
|
17
|
+
stateMutability: "view",
|
|
18
|
+
type: "function",
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
constant: true,
|
|
22
|
+
inputs: [],
|
|
23
|
+
name: "symbol",
|
|
24
|
+
outputs: [
|
|
25
|
+
{
|
|
26
|
+
name: "",
|
|
27
|
+
type: "bytes32",
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
payable: false,
|
|
31
|
+
stateMutability: "view",
|
|
32
|
+
type: "function",
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
export var Erc20_bytes32__factory = /** @class */ (function () {
|
|
36
|
+
function Erc20_bytes32__factory() {
|
|
37
|
+
}
|
|
38
|
+
Erc20_bytes32__factory.createInterface = function () {
|
|
39
|
+
return new utils.Interface(_abi);
|
|
40
|
+
};
|
|
41
|
+
Erc20_bytes32__factory.connect = function (address, signerOrProvider) {
|
|
42
|
+
return new Contract(address, _abi, signerOrProvider);
|
|
43
|
+
};
|
|
44
|
+
Erc20_bytes32__factory.abi = _abi;
|
|
45
|
+
return Erc20_bytes32__factory;
|
|
46
|
+
}());
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
import { Signer } from "ethers";
|
|
2
|
+
import type { Provider } from "@ethersproject/providers";
|
|
3
|
+
import type { JungleChef, JungleChefInterface } from "../JungleChef";
|
|
4
|
+
export declare class JungleChef__factory {
|
|
5
|
+
static readonly abi: readonly [{
|
|
6
|
+
readonly inputs: readonly [{
|
|
7
|
+
readonly internalType: "contract IBEP20";
|
|
8
|
+
readonly name: "_syrup";
|
|
9
|
+
readonly type: "address";
|
|
10
|
+
}, {
|
|
11
|
+
readonly internalType: "uint256";
|
|
12
|
+
readonly name: "_rewardPerBlock";
|
|
13
|
+
readonly type: "uint256";
|
|
14
|
+
}, {
|
|
15
|
+
readonly internalType: "uint256";
|
|
16
|
+
readonly name: "_startBlock";
|
|
17
|
+
readonly type: "uint256";
|
|
18
|
+
}, {
|
|
19
|
+
readonly internalType: "uint256";
|
|
20
|
+
readonly name: "_endBlock";
|
|
21
|
+
readonly type: "uint256";
|
|
22
|
+
}];
|
|
23
|
+
readonly stateMutability: "nonpayable";
|
|
24
|
+
readonly type: "constructor";
|
|
25
|
+
}, {
|
|
26
|
+
readonly anonymous: false;
|
|
27
|
+
readonly inputs: readonly [{
|
|
28
|
+
readonly indexed: true;
|
|
29
|
+
readonly internalType: "address";
|
|
30
|
+
readonly name: "user";
|
|
31
|
+
readonly type: "address";
|
|
32
|
+
}, {
|
|
33
|
+
readonly indexed: false;
|
|
34
|
+
readonly internalType: "uint256";
|
|
35
|
+
readonly name: "amount";
|
|
36
|
+
readonly type: "uint256";
|
|
37
|
+
}];
|
|
38
|
+
readonly name: "Deposit";
|
|
39
|
+
readonly type: "event";
|
|
40
|
+
}, {
|
|
41
|
+
readonly anonymous: false;
|
|
42
|
+
readonly inputs: readonly [{
|
|
43
|
+
readonly indexed: true;
|
|
44
|
+
readonly internalType: "address";
|
|
45
|
+
readonly name: "user";
|
|
46
|
+
readonly type: "address";
|
|
47
|
+
}, {
|
|
48
|
+
readonly indexed: false;
|
|
49
|
+
readonly internalType: "uint256";
|
|
50
|
+
readonly name: "amount";
|
|
51
|
+
readonly type: "uint256";
|
|
52
|
+
}];
|
|
53
|
+
readonly name: "EmergencyWithdraw";
|
|
54
|
+
readonly type: "event";
|
|
55
|
+
}, {
|
|
56
|
+
readonly anonymous: false;
|
|
57
|
+
readonly inputs: readonly [{
|
|
58
|
+
readonly indexed: true;
|
|
59
|
+
readonly internalType: "address";
|
|
60
|
+
readonly name: "user";
|
|
61
|
+
readonly type: "address";
|
|
62
|
+
}, {
|
|
63
|
+
readonly indexed: false;
|
|
64
|
+
readonly internalType: "uint256";
|
|
65
|
+
readonly name: "amount";
|
|
66
|
+
readonly type: "uint256";
|
|
67
|
+
}];
|
|
68
|
+
readonly name: "Withdraw";
|
|
69
|
+
readonly type: "event";
|
|
70
|
+
}, {
|
|
71
|
+
readonly inputs: readonly [];
|
|
72
|
+
readonly name: "bonusEndBlock";
|
|
73
|
+
readonly outputs: readonly [{
|
|
74
|
+
readonly internalType: "uint256";
|
|
75
|
+
readonly name: "";
|
|
76
|
+
readonly type: "uint256";
|
|
77
|
+
}];
|
|
78
|
+
readonly stateMutability: "view";
|
|
79
|
+
readonly type: "function";
|
|
80
|
+
readonly constant: true;
|
|
81
|
+
}, {
|
|
82
|
+
readonly inputs: readonly [];
|
|
83
|
+
readonly name: "poolInfo";
|
|
84
|
+
readonly outputs: readonly [{
|
|
85
|
+
readonly internalType: "uint256";
|
|
86
|
+
readonly name: "lastRewardBlock";
|
|
87
|
+
readonly type: "uint256";
|
|
88
|
+
}, {
|
|
89
|
+
readonly internalType: "uint256";
|
|
90
|
+
readonly name: "accRewardPerShare";
|
|
91
|
+
readonly type: "uint256";
|
|
92
|
+
}];
|
|
93
|
+
readonly stateMutability: "view";
|
|
94
|
+
readonly type: "function";
|
|
95
|
+
readonly constant: true;
|
|
96
|
+
}, {
|
|
97
|
+
readonly inputs: readonly [];
|
|
98
|
+
readonly name: "rewardPerBlock";
|
|
99
|
+
readonly outputs: readonly [{
|
|
100
|
+
readonly internalType: "uint256";
|
|
101
|
+
readonly name: "";
|
|
102
|
+
readonly type: "uint256";
|
|
103
|
+
}];
|
|
104
|
+
readonly stateMutability: "view";
|
|
105
|
+
readonly type: "function";
|
|
106
|
+
readonly constant: true;
|
|
107
|
+
}, {
|
|
108
|
+
readonly inputs: readonly [];
|
|
109
|
+
readonly name: "startBlock";
|
|
110
|
+
readonly outputs: readonly [{
|
|
111
|
+
readonly internalType: "uint256";
|
|
112
|
+
readonly name: "";
|
|
113
|
+
readonly type: "uint256";
|
|
114
|
+
}];
|
|
115
|
+
readonly stateMutability: "view";
|
|
116
|
+
readonly type: "function";
|
|
117
|
+
readonly constant: true;
|
|
118
|
+
}, {
|
|
119
|
+
readonly inputs: readonly [];
|
|
120
|
+
readonly name: "syrup";
|
|
121
|
+
readonly outputs: readonly [{
|
|
122
|
+
readonly internalType: "contract IBEP20";
|
|
123
|
+
readonly name: "";
|
|
124
|
+
readonly type: "address";
|
|
125
|
+
}];
|
|
126
|
+
readonly stateMutability: "view";
|
|
127
|
+
readonly type: "function";
|
|
128
|
+
readonly constant: true;
|
|
129
|
+
}, {
|
|
130
|
+
readonly inputs: readonly [{
|
|
131
|
+
readonly internalType: "address";
|
|
132
|
+
readonly name: "";
|
|
133
|
+
readonly type: "address";
|
|
134
|
+
}];
|
|
135
|
+
readonly name: "userInfo";
|
|
136
|
+
readonly outputs: readonly [{
|
|
137
|
+
readonly internalType: "uint256";
|
|
138
|
+
readonly name: "amount";
|
|
139
|
+
readonly type: "uint256";
|
|
140
|
+
}, {
|
|
141
|
+
readonly internalType: "uint256";
|
|
142
|
+
readonly name: "rewardDebt";
|
|
143
|
+
readonly type: "uint256";
|
|
144
|
+
}];
|
|
145
|
+
readonly stateMutability: "view";
|
|
146
|
+
readonly type: "function";
|
|
147
|
+
readonly constant: true;
|
|
148
|
+
}, {
|
|
149
|
+
readonly inputs: readonly [{
|
|
150
|
+
readonly internalType: "uint256";
|
|
151
|
+
readonly name: "_from";
|
|
152
|
+
readonly type: "uint256";
|
|
153
|
+
}, {
|
|
154
|
+
readonly internalType: "uint256";
|
|
155
|
+
readonly name: "_to";
|
|
156
|
+
readonly type: "uint256";
|
|
157
|
+
}];
|
|
158
|
+
readonly name: "getMultiplier";
|
|
159
|
+
readonly outputs: readonly [{
|
|
160
|
+
readonly internalType: "uint256";
|
|
161
|
+
readonly name: "";
|
|
162
|
+
readonly type: "uint256";
|
|
163
|
+
}];
|
|
164
|
+
readonly stateMutability: "view";
|
|
165
|
+
readonly type: "function";
|
|
166
|
+
readonly constant: true;
|
|
167
|
+
}, {
|
|
168
|
+
readonly inputs: readonly [{
|
|
169
|
+
readonly internalType: "address";
|
|
170
|
+
readonly name: "_user";
|
|
171
|
+
readonly type: "address";
|
|
172
|
+
}];
|
|
173
|
+
readonly name: "pendingReward";
|
|
174
|
+
readonly outputs: readonly [{
|
|
175
|
+
readonly internalType: "uint256";
|
|
176
|
+
readonly name: "";
|
|
177
|
+
readonly type: "uint256";
|
|
178
|
+
}];
|
|
179
|
+
readonly stateMutability: "view";
|
|
180
|
+
readonly type: "function";
|
|
181
|
+
readonly constant: true;
|
|
182
|
+
}, {
|
|
183
|
+
readonly inputs: readonly [];
|
|
184
|
+
readonly name: "updatePool";
|
|
185
|
+
readonly outputs: readonly [];
|
|
186
|
+
readonly stateMutability: "nonpayable";
|
|
187
|
+
readonly type: "function";
|
|
188
|
+
}, {
|
|
189
|
+
readonly inputs: readonly [{
|
|
190
|
+
readonly internalType: "uint256";
|
|
191
|
+
readonly name: "_amount";
|
|
192
|
+
readonly type: "uint256";
|
|
193
|
+
}];
|
|
194
|
+
readonly name: "deposit";
|
|
195
|
+
readonly outputs: readonly [];
|
|
196
|
+
readonly stateMutability: "nonpayable";
|
|
197
|
+
readonly type: "function";
|
|
198
|
+
}, {
|
|
199
|
+
readonly inputs: readonly [{
|
|
200
|
+
readonly internalType: "uint256";
|
|
201
|
+
readonly name: "_amount";
|
|
202
|
+
readonly type: "uint256";
|
|
203
|
+
}];
|
|
204
|
+
readonly name: "withdraw";
|
|
205
|
+
readonly outputs: readonly [];
|
|
206
|
+
readonly stateMutability: "nonpayable";
|
|
207
|
+
readonly type: "function";
|
|
208
|
+
}, {
|
|
209
|
+
readonly inputs: readonly [];
|
|
210
|
+
readonly name: "emergencyWithdraw";
|
|
211
|
+
readonly outputs: readonly [];
|
|
212
|
+
readonly stateMutability: "nonpayable";
|
|
213
|
+
readonly type: "function";
|
|
214
|
+
}, {
|
|
215
|
+
readonly inputs: readonly [];
|
|
216
|
+
readonly name: "bonusEndTime";
|
|
217
|
+
readonly outputs: readonly [{
|
|
218
|
+
readonly internalType: "uint256";
|
|
219
|
+
readonly name: "";
|
|
220
|
+
readonly type: "uint256";
|
|
221
|
+
}];
|
|
222
|
+
readonly stateMutability: "view";
|
|
223
|
+
readonly type: "function";
|
|
224
|
+
}, {
|
|
225
|
+
readonly inputs: readonly [];
|
|
226
|
+
readonly name: "rewardPerSecond";
|
|
227
|
+
readonly outputs: readonly [{
|
|
228
|
+
readonly internalType: "uint256";
|
|
229
|
+
readonly name: "";
|
|
230
|
+
readonly type: "uint256";
|
|
231
|
+
}];
|
|
232
|
+
readonly stateMutability: "view";
|
|
233
|
+
readonly type: "function";
|
|
234
|
+
}, {
|
|
235
|
+
readonly inputs: readonly [];
|
|
236
|
+
readonly name: "startTime";
|
|
237
|
+
readonly outputs: readonly [{
|
|
238
|
+
readonly internalType: "uint256";
|
|
239
|
+
readonly name: "";
|
|
240
|
+
readonly type: "uint256";
|
|
241
|
+
}];
|
|
242
|
+
readonly stateMutability: "view";
|
|
243
|
+
readonly type: "function";
|
|
244
|
+
}];
|
|
245
|
+
static createInterface(): JungleChefInterface;
|
|
246
|
+
static connect(address: string, signerOrProvider: Signer | Provider): JungleChef;
|
|
247
|
+
}
|