├── .env.example ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── public ├── _redirects ├── fonts │ ├── CERA-PRO-BOLD.OTF │ └── CERA-PRO-REGULAR.OTF ├── images │ ├── DownVector.svg │ ├── Pancakeswap.png │ ├── Quickswap.png │ ├── Smartswap.png │ ├── Sushiswap.png │ ├── android-chrome-192x192.png │ ├── binance.svg │ ├── cirlce.png │ ├── favicon-150x150.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-white.png │ ├── favicon.ico │ ├── favicon.png │ ├── lydia.png │ ├── slides │ │ ├── slide1.png │ │ ├── slide10.png │ │ ├── slide2.png │ │ ├── slide3.png │ │ ├── slide4.png │ │ ├── slide5.png │ │ ├── slide6.png │ │ ├── slide7.png │ │ ├── slide8.png │ │ └── slide9.png │ └── tradejoe.png ├── index.html ├── manifest.json └── robots.txt ├── src ├── Providers.tsx ├── assets │ ├── AVAX.svg │ ├── Ape-King.png │ ├── Autoperiod.svg │ ├── BNB.svg │ ├── Chainpolygon1.svg │ ├── Dapps.svg │ ├── GiftBox.svg │ ├── Groupbinance.svg │ ├── Groupethereum.svg │ ├── Launchpad.svg │ ├── Matic.svg │ ├── NFTIcon.svg │ ├── Null-24.svg │ ├── Oasis.svg │ ├── Platformpolygon.svg │ ├── SmartbidIcon.svg │ ├── SwapMagician.png │ ├── TrustWallet.svg │ ├── VectorFIre.svg │ ├── Vectordiscord.svg │ ├── Vectorfacebook.svg │ ├── Vectorgithub.svg │ ├── Vectorlinkedin.svg │ ├── Vectormedium.svg │ ├── Vectortelegram.svg │ ├── Vectortwitter.svg │ ├── art-slider.png │ ├── binance.svg │ ├── binance1.svg │ ├── bridgeIcon.svg │ ├── busd.svg │ ├── closeSquare.svg │ ├── eth.svg │ ├── ethereum.svg │ ├── exchange.svg │ ├── external.svg │ ├── farmingIcon.svg │ ├── fees.gif │ ├── fonts │ │ ├── ClashDisplay-Bold.woff │ │ ├── ClashDisplay-Medium.woff │ │ ├── DMSans-Bold.woff │ │ ├── DMSans-Medium.woff │ │ └── DMSans-Regular.woff │ ├── gamescreen.png │ ├── giftDapp.svg │ ├── hot.png │ ├── lightWarning.svg │ ├── liquidity.svg │ ├── logo │ │ ├── ChristmasRigelLogo.svg │ │ ├── ChristmasSmartSwapDarkLogo.svg │ │ ├── ChristmasSmartSwapLightLogo.svg │ │ ├── LogoRGPImage.svg │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ └── logo.svg │ ├── logo2.svg │ ├── logoRGP.png │ ├── maticlogo.png │ ├── metamask.svg │ ├── metamaskLogo.png │ ├── oasis.png │ ├── oasispng.png │ ├── oasissvg.svg │ ├── polygon-logo.svg │ ├── polygon.svg │ ├── pool.png │ ├── rent.png │ ├── rgp-logo.png │ ├── rgp-logo.svg │ ├── rgp.svg │ ├── rgpdarklogo.svg │ ├── rigel-crypto.svg │ ├── roundedlogo.svg │ ├── router1.svg │ ├── routesquare-dark.svg │ ├── routesquare-light.svg │ ├── safepal-sfp.svg │ ├── security_2.gif │ ├── sfp.svg │ ├── smartBidI.svg │ ├── smartbid │ │ ├── bidRGP.svg │ │ ├── bidcard1.png │ │ ├── bidslider.svg │ │ ├── cardbid2.svg │ │ ├── cardbid3.svg │ │ ├── cardbid4.svg │ │ ├── cardbid5.svg │ │ └── nftbid.svg │ ├── smartswap-dark.svg │ ├── social │ │ ├── arrow-down.svg │ │ ├── facebook.svg │ │ ├── github.svg │ │ ├── linkedin.svg │ │ ├── medium.svg │ │ ├── telegram.svg │ │ └── twitter.svg │ ├── speed_2.gif │ ├── spherium1.svg │ ├── swap.svg │ ├── swapIcon.svg │ ├── swapIcon1.svg │ ├── tiles.png │ ├── tokens │ │ ├── RGP.svg │ │ └── USDT.svg │ ├── walletconnect-logo.svg │ ├── warning.svg │ ├── work.png │ └── yieldfarm.svg ├── components │ ├── AppWrapper │ │ └── index.tsx │ ├── ColorModeSwitcher │ │ └── index.tsx │ ├── ErrorBoundary │ │ ├── ErrorPage.tsx │ │ └── index.tsx │ ├── Farming │ │ └── Modals │ │ │ └── Filter.tsx │ ├── G-analytics │ │ ├── gFarming.ts │ │ ├── gIndex.ts │ │ ├── gLiquidity.ts │ │ └── gNFTs.ts │ ├── Logo │ │ ├── ListLogo.tsx │ │ └── index.tsx │ ├── MarketDropDown.tsx │ ├── MarketFreeDropdown.tsx │ ├── Modals │ │ ├── TransactionsModal │ │ │ ├── Test.tsx │ │ │ └── TransactionStateModal.tsx │ │ └── confirmationModal.tsx │ ├── Navbar │ │ ├── DappsDropdown.tsx │ │ ├── EarnDropdown.tsx │ │ ├── MobileNavDrawer.tsx │ │ ├── SocialMedia.tsx │ │ ├── StatusIcon.tsx │ │ ├── SwapDropdown.tsx │ │ ├── UnsupportNetwork.tsx │ │ ├── WalletConnection.tsx │ │ ├── WalletOptions.tsx │ │ ├── index.tsx │ │ └── modals │ │ │ ├── RGPModal.tsx │ │ │ ├── networkModal.tsx │ │ │ └── walletModal.tsx │ ├── NetworkConnector │ │ ├── Icons.tsx │ │ └── index.tsx │ ├── Onboarding │ │ ├── AddLiquidityStep.tsx │ │ ├── FarmingSteps.tsx │ │ ├── LiquiditySteps.tsx │ │ ├── SwapSteps.tsx │ │ ├── WelcomeModal.tsx │ │ ├── YieldSteps.tsx │ │ └── components │ │ │ ├── BackBtn.tsx │ │ │ ├── CloseBtn.tsx │ │ │ ├── ContentBox.tsx │ │ │ ├── DoneBtn.tsx │ │ │ ├── NextBtn.tsx │ │ │ ├── SkipBtn.tsx │ │ │ └── TitleBox.tsx │ ├── Slider.tsx │ ├── Toast │ │ ├── index.tsx │ │ ├── toast.css │ │ └── toastSlice.ts │ ├── Tokens │ │ ├── CurrencyList.tsx │ │ ├── ImportList.tsx │ │ ├── ImportRow.tsx │ │ ├── Manage.tsx │ │ ├── SelectToken.tsx │ │ ├── filtering.ts │ │ ├── input.tsx │ │ ├── manageLists.tsx │ │ ├── manageTokens.tsx │ │ ├── newToken.tsx │ │ └── tooltip.css │ ├── TransactionSettings │ │ └── index.tsx │ └── currencyLogo │ │ └── index.tsx ├── connectors │ ├── NetworkConnector.ts │ └── index.ts ├── constants │ ├── chains.ts │ └── index.ts ├── hooks │ ├── Tokens.ts │ ├── useContract.ts │ ├── useDebounce.ts │ ├── useIntersectionObserver.ts │ ├── useMint.ts │ ├── useNFT.ts │ ├── useParsedQueryString.ts │ ├── usePathname.ts │ ├── usePriceImpact.ts │ ├── useSmartBid.ts │ ├── useSwap.ts │ └── useWrapCallback.ts ├── index.css ├── index.tsx ├── pages │ ├── AddLiquidity │ │ ├── AddLquidityInputs │ │ │ ├── InputCurrency.tsx │ │ │ └── OutputCurrecy.tsx │ │ ├── index.tsx │ │ └── modals │ │ │ └── ConfirmModal.tsx │ ├── App.tsx │ ├── FarmingV1 │ │ └── index.tsx │ ├── FarmingV2 │ │ ├── FarmHeader.tsx │ │ ├── FarmTab.tsx │ │ ├── Icon.tsx │ │ ├── ProductFarm.tsx │ │ ├── ProductFarmModal.tsx │ │ ├── ShowNewFarm.tsx │ │ ├── ShowProductFarmDetails.tsx │ │ ├── ShowYieldFarmDetails.tsx │ │ ├── YieldFarm.tsx │ │ ├── index.tsx │ │ └── mock.ts │ ├── Nft │ │ ├── Components │ │ │ ├── Carousel │ │ │ │ ├── Slider.tsx │ │ │ │ └── index.tsx │ │ │ ├── FeaturedNft.tsx │ │ │ │ └── index.tsx │ │ │ ├── Nft │ │ │ │ └── index.tsx │ │ │ └── NftList │ │ │ │ └── index.tsx │ │ ├── Modals │ │ │ ├── ClaimNFTModal.tsx │ │ │ └── ComfirmPurchase.tsx │ │ ├── ViewNFT.tsx │ │ ├── index.tsx │ │ └── mockData.tsx │ ├── Pool │ │ ├── FindPool.tsx │ │ ├── FindPoolInputs │ │ │ ├── From.tsx │ │ │ ├── Selector.tsx │ │ │ └── To.tsx │ │ ├── Icons.tsx │ │ ├── index.tsx │ │ ├── liquidities.tsx │ │ └── liquidityDetails.tsx │ ├── RemoveLiquidity │ │ ├── Remove.tsx │ │ └── index.tsx │ ├── SmartBid │ │ ├── BidDetails.tsx │ │ ├── Components │ │ │ ├── BidCarousel │ │ │ │ ├── BidSlider.tsx │ │ │ │ └── index.tsx │ │ │ ├── BidHeader.tsx │ │ │ ├── BidModal.tsx │ │ │ ├── BidTabs.tsx │ │ │ ├── Card.tsx │ │ │ ├── FaqBox.tsx │ │ │ ├── History.tsx │ │ │ ├── HistoryHeader.tsx │ │ │ ├── TableItem.tsx │ │ │ └── cardData.tsx │ │ ├── Faq.tsx │ │ ├── Notifications.tsx │ │ └── index.tsx │ ├── Swap │ │ ├── AutoTime.tsx │ │ ├── Bridge │ │ │ ├── RouterBridge.tsx │ │ │ └── SpheriumBridge.tsx │ │ ├── InstantSwap.tsx │ │ ├── SetPrice.tsx │ │ ├── components │ │ │ ├── bridgeCard │ │ │ │ └── index.tsx │ │ │ ├── details │ │ │ │ ├── DetailBox.tsx │ │ │ │ └── ShowDetails.tsx │ │ │ ├── history │ │ │ │ ├── History.tsx │ │ │ │ ├── MarketHistory.tsx │ │ │ │ └── TransactionHistory.tsx │ │ │ └── sendToken │ │ │ │ ├── From.tsx │ │ │ │ ├── Input.tsx │ │ │ │ ├── InputSelector.tsx │ │ │ │ ├── SwapSettings.tsx │ │ │ │ ├── To.tsx │ │ │ │ └── index.tsx │ │ ├── index.tsx │ │ └── modals │ │ │ ├── autoTimeModal.tsx │ │ │ ├── confirmModal.tsx │ │ │ └── setPriceModal.tsx │ └── index │ │ ├── index.tsx │ │ └── landingpage.css ├── react-app-env.d.ts ├── state │ ├── LPFarm │ │ ├── actions.ts │ │ ├── hooks.ts │ │ └── reducer.ts │ ├── application │ │ └── reducer.ts │ ├── block │ │ ├── hooks.ts │ │ └── index.ts │ ├── chainId │ │ ├── actions.ts │ │ └── reducer.ts │ ├── farm │ │ ├── actions.ts │ │ ├── hooks.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ └── types.ts │ ├── farming │ │ ├── action.ts │ │ ├── hooks.ts │ │ └── reducer.ts │ ├── gas │ │ ├── action.ts │ │ ├── hooks.ts │ │ └── reducer.ts │ ├── global │ │ └── actions.tsx │ ├── hooks.ts │ ├── index.ts │ ├── lists │ │ ├── WrappedTokenInfo.ts │ │ ├── actions.ts │ │ ├── hooks.ts │ │ ├── reducer.ts │ │ └── updater.ts │ ├── mint │ │ ├── actions.ts │ │ ├── hooks.ts │ │ └── reducer.ts │ ├── newFarming │ │ ├── action.ts │ │ ├── hooks.ts │ │ └── reducer.ts │ ├── newfarm │ │ ├── actions.ts │ │ ├── hooks.ts │ │ └── reducer.ts │ ├── nft │ │ ├── actions.ts │ │ ├── bidTest.ts │ │ ├── hooks.ts │ │ └── reducer.ts │ ├── smartbid │ │ └── hooks.ts │ ├── swap │ │ ├── actions.ts │ │ ├── hooks.ts │ │ └── reducer.ts │ ├── transaction │ │ ├── actions.ts │ │ ├── hooks.ts │ │ └── reducer.ts │ ├── types.ts │ ├── user │ │ ├── actions.tsx │ │ ├── hooks │ │ │ └── index.tsx │ │ └── reducer.tsx │ └── wallet │ │ └── hooks.ts ├── theme │ ├── components │ │ ├── Icons.tsx │ │ └── button.ts │ ├── fonts │ │ └── index.tsx │ ├── foundations │ │ └── borders.ts │ ├── index.ts │ └── styles.ts └── utils │ ├── Contracts.ts │ ├── ENS │ ├── parseENSaddress.ts │ └── resolveENSContentHash.ts │ ├── abis │ ├── LPToken.json │ ├── LPToken1.json │ ├── LPToken2.json │ ├── LPToken3.json │ ├── MasterChef.json │ ├── Multicall.json │ ├── ProductStaking.json │ ├── RigelToken.json │ ├── SmartSwapFactoryForSwap.json │ ├── SmartSwapLPTokenThree.json │ ├── SmartSwapRouterV2.json │ ├── WETH9.json │ ├── autoswap.json │ ├── erc20.json │ ├── masterChefV2.json │ ├── masterchefNewLP.json │ ├── nft.json │ ├── nftTwo.json │ ├── smartBid.json │ ├── smartBidTwo.json │ ├── smartSwapLPToken.json │ ├── specialPool.json │ ├── specialPool2.json │ ├── swapAbiForDecoder.json │ └── testnet │ │ ├── LPToken.json │ │ ├── LPToken1.json │ │ └── LPTokenContract.json │ ├── addresses.ts │ ├── calculateSlippageAmount.ts │ ├── constants │ ├── chains.ts │ ├── farms.ts │ ├── index.ts │ ├── lists.ts │ ├── tokenList │ │ ├── rigelprotocol-default.tokenList.json │ │ ├── rigelprotocol-main-tokenlist.json │ │ └── rigelprotocol-unsupported.tokenlist.json │ ├── tokens.ts │ └── types.ts │ ├── contenthashtouri.ts │ ├── currencyId.ts │ ├── functions │ └── uriToHttp.ts │ ├── getAmountsOut.ts │ ├── getExplorerLink.ts │ ├── getLibrary.ts │ ├── getTokenList.ts │ ├── helpers │ ├── farmHelpers.ts │ └── token.ts │ ├── hooks │ ├── useAccountHistory.ts │ ├── useActiveWeb3React.ts │ ├── useAuth.ts │ ├── useBalances.ts │ ├── useConnectWallet.ts │ ├── useDetails.ts │ ├── useFetchListCallback.ts │ ├── useGenerateRouterProtocolLink.ts │ ├── useGetFarmData.ts │ ├── useGetNewFarms.ts │ ├── useHttpLocations.ts │ ├── useInterval.ts │ ├── useMarketHistory.ts │ ├── useOpenOrders.ts │ ├── usePools.ts │ ├── useRGPPrice.ts │ ├── useToggle.ts │ └── useUpdateBalances.ts │ ├── index.ts │ ├── main-token.json │ ├── maxAmountSpend.ts │ ├── multicall.ts │ ├── token-details │ ├── bsc-testnet.json │ ├── bsc.json │ ├── mainnet.json │ ├── matic-testnet.json │ ├── matic.json │ └── ropsten.json │ └── utilsFunctions.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | REACT_APP_NETWORK_URL="https://data-seed-prebsc-1-s1.binance.org:8545" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 2 | -------------------------------------------------------------------------------- /public/fonts/CERA-PRO-BOLD.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/fonts/CERA-PRO-BOLD.OTF -------------------------------------------------------------------------------- /public/fonts/CERA-PRO-REGULAR.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/fonts/CERA-PRO-REGULAR.OTF -------------------------------------------------------------------------------- /public/images/DownVector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/DownVector.svg -------------------------------------------------------------------------------- /public/images/Pancakeswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/Pancakeswap.png -------------------------------------------------------------------------------- /public/images/Quickswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/Quickswap.png -------------------------------------------------------------------------------- /public/images/Smartswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/Smartswap.png -------------------------------------------------------------------------------- /public/images/Sushiswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/Sushiswap.png -------------------------------------------------------------------------------- /public/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/images/binance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/binance.svg -------------------------------------------------------------------------------- /public/images/cirlce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/cirlce.png -------------------------------------------------------------------------------- /public/images/favicon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/favicon-150x150.png -------------------------------------------------------------------------------- /public/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/favicon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/favicon-white.png -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/lydia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/lydia.png -------------------------------------------------------------------------------- /public/images/slides/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/slides/slide1.png -------------------------------------------------------------------------------- /public/images/slides/slide10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/slides/slide10.png -------------------------------------------------------------------------------- /public/images/slides/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/slides/slide2.png -------------------------------------------------------------------------------- /public/images/slides/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/slides/slide3.png -------------------------------------------------------------------------------- /public/images/slides/slide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/slides/slide4.png -------------------------------------------------------------------------------- /public/images/slides/slide5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/slides/slide5.png -------------------------------------------------------------------------------- /public/images/slides/slide6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/slides/slide6.png -------------------------------------------------------------------------------- /public/images/slides/slide7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/slides/slide7.png -------------------------------------------------------------------------------- /public/images/slides/slide8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/slides/slide8.png -------------------------------------------------------------------------------- /public/images/slides/slide9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/slides/slide9.png -------------------------------------------------------------------------------- /public/images/tradejoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/images/tradejoe.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/Providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/Providers.tsx -------------------------------------------------------------------------------- /src/assets/AVAX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/AVAX.svg -------------------------------------------------------------------------------- /src/assets/Ape-King.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Ape-King.png -------------------------------------------------------------------------------- /src/assets/Autoperiod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Autoperiod.svg -------------------------------------------------------------------------------- /src/assets/BNB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/BNB.svg -------------------------------------------------------------------------------- /src/assets/Chainpolygon1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Chainpolygon1.svg -------------------------------------------------------------------------------- /src/assets/Dapps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Dapps.svg -------------------------------------------------------------------------------- /src/assets/GiftBox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/GiftBox.svg -------------------------------------------------------------------------------- /src/assets/Groupbinance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Groupbinance.svg -------------------------------------------------------------------------------- /src/assets/Groupethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Groupethereum.svg -------------------------------------------------------------------------------- /src/assets/Launchpad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Launchpad.svg -------------------------------------------------------------------------------- /src/assets/Matic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Matic.svg -------------------------------------------------------------------------------- /src/assets/NFTIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/NFTIcon.svg -------------------------------------------------------------------------------- /src/assets/Null-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Null-24.svg -------------------------------------------------------------------------------- /src/assets/Oasis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Oasis.svg -------------------------------------------------------------------------------- /src/assets/Platformpolygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Platformpolygon.svg -------------------------------------------------------------------------------- /src/assets/SmartbidIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/SmartbidIcon.svg -------------------------------------------------------------------------------- /src/assets/SwapMagician.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/SwapMagician.png -------------------------------------------------------------------------------- /src/assets/TrustWallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/TrustWallet.svg -------------------------------------------------------------------------------- /src/assets/VectorFIre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/VectorFIre.svg -------------------------------------------------------------------------------- /src/assets/Vectordiscord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Vectordiscord.svg -------------------------------------------------------------------------------- /src/assets/Vectorfacebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Vectorfacebook.svg -------------------------------------------------------------------------------- /src/assets/Vectorgithub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Vectorgithub.svg -------------------------------------------------------------------------------- /src/assets/Vectorlinkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Vectorlinkedin.svg -------------------------------------------------------------------------------- /src/assets/Vectormedium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Vectormedium.svg -------------------------------------------------------------------------------- /src/assets/Vectortelegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Vectortelegram.svg -------------------------------------------------------------------------------- /src/assets/Vectortwitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/Vectortwitter.svg -------------------------------------------------------------------------------- /src/assets/art-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/art-slider.png -------------------------------------------------------------------------------- /src/assets/binance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/binance.svg -------------------------------------------------------------------------------- /src/assets/binance1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/binance1.svg -------------------------------------------------------------------------------- /src/assets/bridgeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/bridgeIcon.svg -------------------------------------------------------------------------------- /src/assets/busd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/busd.svg -------------------------------------------------------------------------------- /src/assets/closeSquare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/closeSquare.svg -------------------------------------------------------------------------------- /src/assets/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/eth.svg -------------------------------------------------------------------------------- /src/assets/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/ethereum.svg -------------------------------------------------------------------------------- /src/assets/exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/exchange.svg -------------------------------------------------------------------------------- /src/assets/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/external.svg -------------------------------------------------------------------------------- /src/assets/farmingIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/farmingIcon.svg -------------------------------------------------------------------------------- /src/assets/fees.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/fees.gif -------------------------------------------------------------------------------- /src/assets/fonts/ClashDisplay-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/fonts/ClashDisplay-Bold.woff -------------------------------------------------------------------------------- /src/assets/fonts/ClashDisplay-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/fonts/ClashDisplay-Medium.woff -------------------------------------------------------------------------------- /src/assets/fonts/DMSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/fonts/DMSans-Bold.woff -------------------------------------------------------------------------------- /src/assets/fonts/DMSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/fonts/DMSans-Medium.woff -------------------------------------------------------------------------------- /src/assets/fonts/DMSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/fonts/DMSans-Regular.woff -------------------------------------------------------------------------------- /src/assets/gamescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/gamescreen.png -------------------------------------------------------------------------------- /src/assets/giftDapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/giftDapp.svg -------------------------------------------------------------------------------- /src/assets/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/hot.png -------------------------------------------------------------------------------- /src/assets/lightWarning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/lightWarning.svg -------------------------------------------------------------------------------- /src/assets/liquidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/liquidity.svg -------------------------------------------------------------------------------- /src/assets/logo/ChristmasRigelLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/logo/ChristmasRigelLogo.svg -------------------------------------------------------------------------------- /src/assets/logo/ChristmasSmartSwapDarkLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/logo/ChristmasSmartSwapDarkLogo.svg -------------------------------------------------------------------------------- /src/assets/logo/ChristmasSmartSwapLightLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/logo/ChristmasSmartSwapLightLogo.svg -------------------------------------------------------------------------------- /src/assets/logo/LogoRGPImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/logo/LogoRGPImage.svg -------------------------------------------------------------------------------- /src/assets/logo/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/logo/logo-dark.svg -------------------------------------------------------------------------------- /src/assets/logo/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/logo/logo-light.svg -------------------------------------------------------------------------------- /src/assets/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/logo/logo.svg -------------------------------------------------------------------------------- /src/assets/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/logo2.svg -------------------------------------------------------------------------------- /src/assets/logoRGP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/logoRGP.png -------------------------------------------------------------------------------- /src/assets/maticlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/maticlogo.png -------------------------------------------------------------------------------- /src/assets/metamask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/metamask.svg -------------------------------------------------------------------------------- /src/assets/metamaskLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/metamaskLogo.png -------------------------------------------------------------------------------- /src/assets/oasis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/oasis.png -------------------------------------------------------------------------------- /src/assets/oasispng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/oasispng.png -------------------------------------------------------------------------------- /src/assets/oasissvg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/oasissvg.svg -------------------------------------------------------------------------------- /src/assets/polygon-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/polygon-logo.svg -------------------------------------------------------------------------------- /src/assets/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/polygon.svg -------------------------------------------------------------------------------- /src/assets/pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/pool.png -------------------------------------------------------------------------------- /src/assets/rent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/rent.png -------------------------------------------------------------------------------- /src/assets/rgp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/rgp-logo.png -------------------------------------------------------------------------------- /src/assets/rgp-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/rgp-logo.svg -------------------------------------------------------------------------------- /src/assets/rgp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/rgp.svg -------------------------------------------------------------------------------- /src/assets/rgpdarklogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/rgpdarklogo.svg -------------------------------------------------------------------------------- /src/assets/rigel-crypto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/rigel-crypto.svg -------------------------------------------------------------------------------- /src/assets/roundedlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/roundedlogo.svg -------------------------------------------------------------------------------- /src/assets/router1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/router1.svg -------------------------------------------------------------------------------- /src/assets/routesquare-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/routesquare-dark.svg -------------------------------------------------------------------------------- /src/assets/routesquare-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/routesquare-light.svg -------------------------------------------------------------------------------- /src/assets/safepal-sfp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/safepal-sfp.svg -------------------------------------------------------------------------------- /src/assets/security_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/security_2.gif -------------------------------------------------------------------------------- /src/assets/sfp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/sfp.svg -------------------------------------------------------------------------------- /src/assets/smartBidI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/smartBidI.svg -------------------------------------------------------------------------------- /src/assets/smartbid/bidRGP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/smartbid/bidRGP.svg -------------------------------------------------------------------------------- /src/assets/smartbid/bidcard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/smartbid/bidcard1.png -------------------------------------------------------------------------------- /src/assets/smartbid/bidslider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/smartbid/bidslider.svg -------------------------------------------------------------------------------- /src/assets/smartbid/cardbid2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/smartbid/cardbid2.svg -------------------------------------------------------------------------------- /src/assets/smartbid/cardbid3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/smartbid/cardbid3.svg -------------------------------------------------------------------------------- /src/assets/smartbid/cardbid4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/smartbid/cardbid4.svg -------------------------------------------------------------------------------- /src/assets/smartbid/cardbid5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/smartbid/cardbid5.svg -------------------------------------------------------------------------------- /src/assets/smartbid/nftbid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/smartbid/nftbid.svg -------------------------------------------------------------------------------- /src/assets/smartswap-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/smartswap-dark.svg -------------------------------------------------------------------------------- /src/assets/social/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/social/arrow-down.svg -------------------------------------------------------------------------------- /src/assets/social/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/social/facebook.svg -------------------------------------------------------------------------------- /src/assets/social/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/social/github.svg -------------------------------------------------------------------------------- /src/assets/social/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/social/linkedin.svg -------------------------------------------------------------------------------- /src/assets/social/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/social/medium.svg -------------------------------------------------------------------------------- /src/assets/social/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/social/telegram.svg -------------------------------------------------------------------------------- /src/assets/social/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/social/twitter.svg -------------------------------------------------------------------------------- /src/assets/speed_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/speed_2.gif -------------------------------------------------------------------------------- /src/assets/spherium1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/spherium1.svg -------------------------------------------------------------------------------- /src/assets/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/swap.svg -------------------------------------------------------------------------------- /src/assets/swapIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/swapIcon.svg -------------------------------------------------------------------------------- /src/assets/swapIcon1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/swapIcon1.svg -------------------------------------------------------------------------------- /src/assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/tiles.png -------------------------------------------------------------------------------- /src/assets/tokens/RGP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/tokens/RGP.svg -------------------------------------------------------------------------------- /src/assets/tokens/USDT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/tokens/USDT.svg -------------------------------------------------------------------------------- /src/assets/walletconnect-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/walletconnect-logo.svg -------------------------------------------------------------------------------- /src/assets/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/warning.svg -------------------------------------------------------------------------------- /src/assets/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/work.png -------------------------------------------------------------------------------- /src/assets/yieldfarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/assets/yieldfarm.svg -------------------------------------------------------------------------------- /src/components/AppWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/AppWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/ColorModeSwitcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/ColorModeSwitcher/index.tsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/ErrorBoundary/ErrorPage.tsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/ErrorBoundary/index.tsx -------------------------------------------------------------------------------- /src/components/Farming/Modals/Filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Farming/Modals/Filter.tsx -------------------------------------------------------------------------------- /src/components/G-analytics/gFarming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/G-analytics/gFarming.ts -------------------------------------------------------------------------------- /src/components/G-analytics/gIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/G-analytics/gIndex.ts -------------------------------------------------------------------------------- /src/components/G-analytics/gLiquidity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/G-analytics/gLiquidity.ts -------------------------------------------------------------------------------- /src/components/G-analytics/gNFTs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/G-analytics/gNFTs.ts -------------------------------------------------------------------------------- /src/components/Logo/ListLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Logo/ListLogo.tsx -------------------------------------------------------------------------------- /src/components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Logo/index.tsx -------------------------------------------------------------------------------- /src/components/MarketDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/MarketDropDown.tsx -------------------------------------------------------------------------------- /src/components/MarketFreeDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/MarketFreeDropdown.tsx -------------------------------------------------------------------------------- /src/components/Modals/TransactionsModal/Test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Modals/TransactionsModal/Test.tsx -------------------------------------------------------------------------------- /src/components/Modals/TransactionsModal/TransactionStateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Modals/TransactionsModal/TransactionStateModal.tsx -------------------------------------------------------------------------------- /src/components/Modals/confirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Modals/confirmationModal.tsx -------------------------------------------------------------------------------- /src/components/Navbar/DappsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/DappsDropdown.tsx -------------------------------------------------------------------------------- /src/components/Navbar/EarnDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/EarnDropdown.tsx -------------------------------------------------------------------------------- /src/components/Navbar/MobileNavDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/MobileNavDrawer.tsx -------------------------------------------------------------------------------- /src/components/Navbar/SocialMedia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/SocialMedia.tsx -------------------------------------------------------------------------------- /src/components/Navbar/StatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/StatusIcon.tsx -------------------------------------------------------------------------------- /src/components/Navbar/SwapDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/SwapDropdown.tsx -------------------------------------------------------------------------------- /src/components/Navbar/UnsupportNetwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/UnsupportNetwork.tsx -------------------------------------------------------------------------------- /src/components/Navbar/WalletConnection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/WalletConnection.tsx -------------------------------------------------------------------------------- /src/components/Navbar/WalletOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/WalletOptions.tsx -------------------------------------------------------------------------------- /src/components/Navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/index.tsx -------------------------------------------------------------------------------- /src/components/Navbar/modals/RGPModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/modals/RGPModal.tsx -------------------------------------------------------------------------------- /src/components/Navbar/modals/networkModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/modals/networkModal.tsx -------------------------------------------------------------------------------- /src/components/Navbar/modals/walletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Navbar/modals/walletModal.tsx -------------------------------------------------------------------------------- /src/components/NetworkConnector/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/NetworkConnector/Icons.tsx -------------------------------------------------------------------------------- /src/components/NetworkConnector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/NetworkConnector/index.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/AddLiquidityStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/AddLiquidityStep.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/FarmingSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/FarmingSteps.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/LiquiditySteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/LiquiditySteps.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/SwapSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/SwapSteps.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/WelcomeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/WelcomeModal.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/YieldSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/YieldSteps.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/components/BackBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/components/BackBtn.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/components/CloseBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/components/CloseBtn.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/components/ContentBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/components/ContentBox.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/components/DoneBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/components/DoneBtn.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/components/NextBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/components/NextBtn.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/components/SkipBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/components/SkipBtn.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/components/TitleBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Onboarding/components/TitleBox.tsx -------------------------------------------------------------------------------- /src/components/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Slider.tsx -------------------------------------------------------------------------------- /src/components/Toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Toast/index.tsx -------------------------------------------------------------------------------- /src/components/Toast/toast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Toast/toast.css -------------------------------------------------------------------------------- /src/components/Toast/toastSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Toast/toastSlice.ts -------------------------------------------------------------------------------- /src/components/Tokens/CurrencyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/CurrencyList.tsx -------------------------------------------------------------------------------- /src/components/Tokens/ImportList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/ImportList.tsx -------------------------------------------------------------------------------- /src/components/Tokens/ImportRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/ImportRow.tsx -------------------------------------------------------------------------------- /src/components/Tokens/Manage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/Manage.tsx -------------------------------------------------------------------------------- /src/components/Tokens/SelectToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/SelectToken.tsx -------------------------------------------------------------------------------- /src/components/Tokens/filtering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/filtering.ts -------------------------------------------------------------------------------- /src/components/Tokens/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/input.tsx -------------------------------------------------------------------------------- /src/components/Tokens/manageLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/manageLists.tsx -------------------------------------------------------------------------------- /src/components/Tokens/manageTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/manageTokens.tsx -------------------------------------------------------------------------------- /src/components/Tokens/newToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/newToken.tsx -------------------------------------------------------------------------------- /src/components/Tokens/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/Tokens/tooltip.css -------------------------------------------------------------------------------- /src/components/TransactionSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/TransactionSettings/index.tsx -------------------------------------------------------------------------------- /src/components/currencyLogo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/components/currencyLogo/index.tsx -------------------------------------------------------------------------------- /src/connectors/NetworkConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/connectors/NetworkConnector.ts -------------------------------------------------------------------------------- /src/connectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/connectors/index.ts -------------------------------------------------------------------------------- /src/constants/chains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/constants/chains.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/hooks/Tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/hooks/Tokens.ts -------------------------------------------------------------------------------- /src/hooks/useContract.ts: -------------------------------------------------------------------------------- 1 | import {useEffect} from 'react'; 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/hooks/useIntersectionObserver.ts: -------------------------------------------------------------------------------- 1 | // 2 | 3 | 4 | export {} -------------------------------------------------------------------------------- /src/hooks/useMint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/hooks/useMint.ts -------------------------------------------------------------------------------- /src/hooks/useNFT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/hooks/useNFT.ts -------------------------------------------------------------------------------- /src/hooks/useParsedQueryString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/hooks/useParsedQueryString.ts -------------------------------------------------------------------------------- /src/hooks/usePathname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/hooks/usePathname.ts -------------------------------------------------------------------------------- /src/hooks/usePriceImpact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/hooks/usePriceImpact.ts -------------------------------------------------------------------------------- /src/hooks/useSmartBid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/hooks/useSmartBid.ts -------------------------------------------------------------------------------- /src/hooks/useSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/hooks/useSwap.ts -------------------------------------------------------------------------------- /src/hooks/useWrapCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/hooks/useWrapCallback.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/AddLiquidity/AddLquidityInputs/InputCurrency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/AddLiquidity/AddLquidityInputs/InputCurrency.tsx -------------------------------------------------------------------------------- /src/pages/AddLiquidity/AddLquidityInputs/OutputCurrecy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/AddLiquidity/AddLquidityInputs/OutputCurrecy.tsx -------------------------------------------------------------------------------- /src/pages/AddLiquidity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/AddLiquidity/index.tsx -------------------------------------------------------------------------------- /src/pages/AddLiquidity/modals/ConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/AddLiquidity/modals/ConfirmModal.tsx -------------------------------------------------------------------------------- /src/pages/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/App.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV1/index.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/FarmHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/FarmHeader.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/FarmTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/FarmTab.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/Icon.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/ProductFarm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/ProductFarm.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/ProductFarmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/ProductFarmModal.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/ShowNewFarm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/ShowNewFarm.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/ShowProductFarmDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/ShowProductFarmDetails.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/ShowYieldFarmDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/ShowYieldFarmDetails.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/YieldFarm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/YieldFarm.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/index.tsx -------------------------------------------------------------------------------- /src/pages/FarmingV2/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/FarmingV2/mock.ts -------------------------------------------------------------------------------- /src/pages/Nft/Components/Carousel/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Nft/Components/Carousel/Slider.tsx -------------------------------------------------------------------------------- /src/pages/Nft/Components/Carousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Nft/Components/Carousel/index.tsx -------------------------------------------------------------------------------- /src/pages/Nft/Components/FeaturedNft.tsx/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Nft/Components/FeaturedNft.tsx/index.tsx -------------------------------------------------------------------------------- /src/pages/Nft/Components/Nft/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Nft/Components/Nft/index.tsx -------------------------------------------------------------------------------- /src/pages/Nft/Components/NftList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Nft/Components/NftList/index.tsx -------------------------------------------------------------------------------- /src/pages/Nft/Modals/ClaimNFTModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Nft/Modals/ClaimNFTModal.tsx -------------------------------------------------------------------------------- /src/pages/Nft/Modals/ComfirmPurchase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Nft/Modals/ComfirmPurchase.tsx -------------------------------------------------------------------------------- /src/pages/Nft/ViewNFT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Nft/ViewNFT.tsx -------------------------------------------------------------------------------- /src/pages/Nft/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Nft/index.tsx -------------------------------------------------------------------------------- /src/pages/Nft/mockData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Nft/mockData.tsx -------------------------------------------------------------------------------- /src/pages/Pool/FindPool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Pool/FindPool.tsx -------------------------------------------------------------------------------- /src/pages/Pool/FindPoolInputs/From.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Pool/FindPoolInputs/From.tsx -------------------------------------------------------------------------------- /src/pages/Pool/FindPoolInputs/Selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Pool/FindPoolInputs/Selector.tsx -------------------------------------------------------------------------------- /src/pages/Pool/FindPoolInputs/To.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Pool/FindPoolInputs/To.tsx -------------------------------------------------------------------------------- /src/pages/Pool/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Pool/Icons.tsx -------------------------------------------------------------------------------- /src/pages/Pool/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Pool/index.tsx -------------------------------------------------------------------------------- /src/pages/Pool/liquidities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Pool/liquidities.tsx -------------------------------------------------------------------------------- /src/pages/Pool/liquidityDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Pool/liquidityDetails.tsx -------------------------------------------------------------------------------- /src/pages/RemoveLiquidity/Remove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/RemoveLiquidity/Remove.tsx -------------------------------------------------------------------------------- /src/pages/RemoveLiquidity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/RemoveLiquidity/index.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/BidDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/BidDetails.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/BidCarousel/BidSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/BidCarousel/BidSlider.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/BidCarousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/BidCarousel/index.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/BidHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/BidHeader.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/BidModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/BidModal.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/BidTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/BidTabs.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/Card.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/FaqBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/FaqBox.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/History.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/HistoryHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/HistoryHeader.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/TableItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/TableItem.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Components/cardData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Components/cardData.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Faq.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/Notifications.tsx -------------------------------------------------------------------------------- /src/pages/SmartBid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/SmartBid/index.tsx -------------------------------------------------------------------------------- /src/pages/Swap/AutoTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/AutoTime.tsx -------------------------------------------------------------------------------- /src/pages/Swap/Bridge/RouterBridge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/Bridge/RouterBridge.tsx -------------------------------------------------------------------------------- /src/pages/Swap/Bridge/SpheriumBridge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/Bridge/SpheriumBridge.tsx -------------------------------------------------------------------------------- /src/pages/Swap/InstantSwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/InstantSwap.tsx -------------------------------------------------------------------------------- /src/pages/Swap/SetPrice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/SetPrice.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/bridgeCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/bridgeCard/index.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/details/DetailBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/details/DetailBox.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/details/ShowDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/details/ShowDetails.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/history/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/history/History.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/history/MarketHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/history/MarketHistory.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/history/TransactionHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/history/TransactionHistory.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/sendToken/From.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/sendToken/From.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/sendToken/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/sendToken/Input.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/sendToken/InputSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/sendToken/InputSelector.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/sendToken/SwapSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/sendToken/SwapSettings.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/sendToken/To.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/sendToken/To.tsx -------------------------------------------------------------------------------- /src/pages/Swap/components/sendToken/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/components/sendToken/index.tsx -------------------------------------------------------------------------------- /src/pages/Swap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/index.tsx -------------------------------------------------------------------------------- /src/pages/Swap/modals/autoTimeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/modals/autoTimeModal.tsx -------------------------------------------------------------------------------- /src/pages/Swap/modals/confirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/modals/confirmModal.tsx -------------------------------------------------------------------------------- /src/pages/Swap/modals/setPriceModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/Swap/modals/setPriceModal.tsx -------------------------------------------------------------------------------- /src/pages/index/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/index/index.tsx -------------------------------------------------------------------------------- /src/pages/index/landingpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/pages/index/landingpage.css -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/state/LPFarm/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/LPFarm/actions.ts -------------------------------------------------------------------------------- /src/state/LPFarm/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/LPFarm/hooks.ts -------------------------------------------------------------------------------- /src/state/LPFarm/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/LPFarm/reducer.ts -------------------------------------------------------------------------------- /src/state/application/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/application/reducer.ts -------------------------------------------------------------------------------- /src/state/block/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/block/hooks.ts -------------------------------------------------------------------------------- /src/state/block/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/block/index.ts -------------------------------------------------------------------------------- /src/state/chainId/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/chainId/actions.ts -------------------------------------------------------------------------------- /src/state/chainId/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/chainId/reducer.ts -------------------------------------------------------------------------------- /src/state/farm/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/farm/actions.ts -------------------------------------------------------------------------------- /src/state/farm/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/farm/hooks.ts -------------------------------------------------------------------------------- /src/state/farm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/farm/index.ts -------------------------------------------------------------------------------- /src/state/farm/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/farm/reducer.ts -------------------------------------------------------------------------------- /src/state/farm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/farm/types.ts -------------------------------------------------------------------------------- /src/state/farming/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/farming/action.ts -------------------------------------------------------------------------------- /src/state/farming/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/farming/hooks.ts -------------------------------------------------------------------------------- /src/state/farming/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/farming/reducer.ts -------------------------------------------------------------------------------- /src/state/gas/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/gas/action.ts -------------------------------------------------------------------------------- /src/state/gas/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/gas/hooks.ts -------------------------------------------------------------------------------- /src/state/gas/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/gas/reducer.ts -------------------------------------------------------------------------------- /src/state/global/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/global/actions.tsx -------------------------------------------------------------------------------- /src/state/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/hooks.ts -------------------------------------------------------------------------------- /src/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/index.ts -------------------------------------------------------------------------------- /src/state/lists/WrappedTokenInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/lists/WrappedTokenInfo.ts -------------------------------------------------------------------------------- /src/state/lists/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/lists/actions.ts -------------------------------------------------------------------------------- /src/state/lists/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/lists/hooks.ts -------------------------------------------------------------------------------- /src/state/lists/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/lists/reducer.ts -------------------------------------------------------------------------------- /src/state/lists/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/lists/updater.ts -------------------------------------------------------------------------------- /src/state/mint/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/mint/actions.ts -------------------------------------------------------------------------------- /src/state/mint/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/mint/hooks.ts -------------------------------------------------------------------------------- /src/state/mint/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/mint/reducer.ts -------------------------------------------------------------------------------- /src/state/newFarming/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/newFarming/action.ts -------------------------------------------------------------------------------- /src/state/newFarming/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/newFarming/hooks.ts -------------------------------------------------------------------------------- /src/state/newFarming/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/newFarming/reducer.ts -------------------------------------------------------------------------------- /src/state/newfarm/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/newfarm/actions.ts -------------------------------------------------------------------------------- /src/state/newfarm/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/newfarm/hooks.ts -------------------------------------------------------------------------------- /src/state/newfarm/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/newfarm/reducer.ts -------------------------------------------------------------------------------- /src/state/nft/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/nft/actions.ts -------------------------------------------------------------------------------- /src/state/nft/bidTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/nft/bidTest.ts -------------------------------------------------------------------------------- /src/state/nft/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/nft/hooks.ts -------------------------------------------------------------------------------- /src/state/nft/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/nft/reducer.ts -------------------------------------------------------------------------------- /src/state/smartbid/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/smartbid/hooks.ts -------------------------------------------------------------------------------- /src/state/swap/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/swap/actions.ts -------------------------------------------------------------------------------- /src/state/swap/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/swap/hooks.ts -------------------------------------------------------------------------------- /src/state/swap/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/swap/reducer.ts -------------------------------------------------------------------------------- /src/state/transaction/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/transaction/actions.ts -------------------------------------------------------------------------------- /src/state/transaction/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/transaction/hooks.ts -------------------------------------------------------------------------------- /src/state/transaction/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/transaction/reducer.ts -------------------------------------------------------------------------------- /src/state/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/types.ts -------------------------------------------------------------------------------- /src/state/user/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/user/actions.tsx -------------------------------------------------------------------------------- /src/state/user/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/user/hooks/index.tsx -------------------------------------------------------------------------------- /src/state/user/reducer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/user/reducer.tsx -------------------------------------------------------------------------------- /src/state/wallet/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/state/wallet/hooks.ts -------------------------------------------------------------------------------- /src/theme/components/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/theme/components/Icons.tsx -------------------------------------------------------------------------------- /src/theme/components/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/theme/components/button.ts -------------------------------------------------------------------------------- /src/theme/fonts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/theme/fonts/index.tsx -------------------------------------------------------------------------------- /src/theme/foundations/borders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/theme/foundations/borders.ts -------------------------------------------------------------------------------- /src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/theme/index.ts -------------------------------------------------------------------------------- /src/theme/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/theme/styles.ts -------------------------------------------------------------------------------- /src/utils/Contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/Contracts.ts -------------------------------------------------------------------------------- /src/utils/ENS/parseENSaddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/ENS/parseENSaddress.ts -------------------------------------------------------------------------------- /src/utils/ENS/resolveENSContentHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/ENS/resolveENSContentHash.ts -------------------------------------------------------------------------------- /src/utils/abis/LPToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/LPToken.json -------------------------------------------------------------------------------- /src/utils/abis/LPToken1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/LPToken1.json -------------------------------------------------------------------------------- /src/utils/abis/LPToken2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/LPToken2.json -------------------------------------------------------------------------------- /src/utils/abis/LPToken3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/LPToken3.json -------------------------------------------------------------------------------- /src/utils/abis/MasterChef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/MasterChef.json -------------------------------------------------------------------------------- /src/utils/abis/Multicall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/Multicall.json -------------------------------------------------------------------------------- /src/utils/abis/ProductStaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/ProductStaking.json -------------------------------------------------------------------------------- /src/utils/abis/RigelToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/RigelToken.json -------------------------------------------------------------------------------- /src/utils/abis/SmartSwapFactoryForSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/SmartSwapFactoryForSwap.json -------------------------------------------------------------------------------- /src/utils/abis/SmartSwapLPTokenThree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/SmartSwapLPTokenThree.json -------------------------------------------------------------------------------- /src/utils/abis/SmartSwapRouterV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/SmartSwapRouterV2.json -------------------------------------------------------------------------------- /src/utils/abis/WETH9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/WETH9.json -------------------------------------------------------------------------------- /src/utils/abis/autoswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/autoswap.json -------------------------------------------------------------------------------- /src/utils/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/erc20.json -------------------------------------------------------------------------------- /src/utils/abis/masterChefV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/masterChefV2.json -------------------------------------------------------------------------------- /src/utils/abis/masterchefNewLP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/masterchefNewLP.json -------------------------------------------------------------------------------- /src/utils/abis/nft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/nft.json -------------------------------------------------------------------------------- /src/utils/abis/nftTwo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/nftTwo.json -------------------------------------------------------------------------------- /src/utils/abis/smartBid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/smartBid.json -------------------------------------------------------------------------------- /src/utils/abis/smartBidTwo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/smartBidTwo.json -------------------------------------------------------------------------------- /src/utils/abis/smartSwapLPToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/smartSwapLPToken.json -------------------------------------------------------------------------------- /src/utils/abis/specialPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/specialPool.json -------------------------------------------------------------------------------- /src/utils/abis/specialPool2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/specialPool2.json -------------------------------------------------------------------------------- /src/utils/abis/swapAbiForDecoder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/swapAbiForDecoder.json -------------------------------------------------------------------------------- /src/utils/abis/testnet/LPToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/testnet/LPToken.json -------------------------------------------------------------------------------- /src/utils/abis/testnet/LPToken1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/testnet/LPToken1.json -------------------------------------------------------------------------------- /src/utils/abis/testnet/LPTokenContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/abis/testnet/LPTokenContract.json -------------------------------------------------------------------------------- /src/utils/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/addresses.ts -------------------------------------------------------------------------------- /src/utils/calculateSlippageAmount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/calculateSlippageAmount.ts -------------------------------------------------------------------------------- /src/utils/constants/chains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/constants/chains.ts -------------------------------------------------------------------------------- /src/utils/constants/farms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/constants/farms.ts -------------------------------------------------------------------------------- /src/utils/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/constants/index.ts -------------------------------------------------------------------------------- /src/utils/constants/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/constants/lists.ts -------------------------------------------------------------------------------- /src/utils/constants/tokenList/rigelprotocol-default.tokenList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/constants/tokenList/rigelprotocol-default.tokenList.json -------------------------------------------------------------------------------- /src/utils/constants/tokenList/rigelprotocol-main-tokenlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/constants/tokenList/rigelprotocol-main-tokenlist.json -------------------------------------------------------------------------------- /src/utils/constants/tokenList/rigelprotocol-unsupported.tokenlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/constants/tokenList/rigelprotocol-unsupported.tokenlist.json -------------------------------------------------------------------------------- /src/utils/constants/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/constants/tokens.ts -------------------------------------------------------------------------------- /src/utils/constants/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/constants/types.ts -------------------------------------------------------------------------------- /src/utils/contenthashtouri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/contenthashtouri.ts -------------------------------------------------------------------------------- /src/utils/currencyId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/currencyId.ts -------------------------------------------------------------------------------- /src/utils/functions/uriToHttp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/functions/uriToHttp.ts -------------------------------------------------------------------------------- /src/utils/getAmountsOut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/getAmountsOut.ts -------------------------------------------------------------------------------- /src/utils/getExplorerLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/getExplorerLink.ts -------------------------------------------------------------------------------- /src/utils/getLibrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/getLibrary.ts -------------------------------------------------------------------------------- /src/utils/getTokenList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/getTokenList.ts -------------------------------------------------------------------------------- /src/utils/helpers/farmHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/helpers/farmHelpers.ts -------------------------------------------------------------------------------- /src/utils/helpers/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/helpers/token.ts -------------------------------------------------------------------------------- /src/utils/hooks/useAccountHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useAccountHistory.ts -------------------------------------------------------------------------------- /src/utils/hooks/useActiveWeb3React.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useActiveWeb3React.ts -------------------------------------------------------------------------------- /src/utils/hooks/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useAuth.ts -------------------------------------------------------------------------------- /src/utils/hooks/useBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useBalances.ts -------------------------------------------------------------------------------- /src/utils/hooks/useConnectWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useConnectWallet.ts -------------------------------------------------------------------------------- /src/utils/hooks/useDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useDetails.ts -------------------------------------------------------------------------------- /src/utils/hooks/useFetchListCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useFetchListCallback.ts -------------------------------------------------------------------------------- /src/utils/hooks/useGenerateRouterProtocolLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useGenerateRouterProtocolLink.ts -------------------------------------------------------------------------------- /src/utils/hooks/useGetFarmData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useGetFarmData.ts -------------------------------------------------------------------------------- /src/utils/hooks/useGetNewFarms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useGetNewFarms.ts -------------------------------------------------------------------------------- /src/utils/hooks/useHttpLocations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useHttpLocations.ts -------------------------------------------------------------------------------- /src/utils/hooks/useInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useInterval.ts -------------------------------------------------------------------------------- /src/utils/hooks/useMarketHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useMarketHistory.ts -------------------------------------------------------------------------------- /src/utils/hooks/useOpenOrders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useOpenOrders.ts -------------------------------------------------------------------------------- /src/utils/hooks/usePools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/usePools.ts -------------------------------------------------------------------------------- /src/utils/hooks/useRGPPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useRGPPrice.ts -------------------------------------------------------------------------------- /src/utils/hooks/useToggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useToggle.ts -------------------------------------------------------------------------------- /src/utils/hooks/useUpdateBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/hooks/useUpdateBalances.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/main-token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/main-token.json -------------------------------------------------------------------------------- /src/utils/maxAmountSpend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/maxAmountSpend.ts -------------------------------------------------------------------------------- /src/utils/multicall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/multicall.ts -------------------------------------------------------------------------------- /src/utils/token-details/bsc-testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/token-details/bsc-testnet.json -------------------------------------------------------------------------------- /src/utils/token-details/bsc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/token-details/bsc.json -------------------------------------------------------------------------------- /src/utils/token-details/mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/token-details/mainnet.json -------------------------------------------------------------------------------- /src/utils/token-details/matic-testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/token-details/matic-testnet.json -------------------------------------------------------------------------------- /src/utils/token-details/matic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/token-details/matic.json -------------------------------------------------------------------------------- /src/utils/token-details/ropsten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/token-details/ropsten.json -------------------------------------------------------------------------------- /src/utils/utilsFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/src/utils/utilsFunctions.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigelprotocol/SmartswapDappV2/HEAD/yarn.lock --------------------------------------------------------------------------------