├── .env.example ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── Makefile ├── README.md ├── netlify.toml ├── next-env.d.ts ├── package.json ├── public ├── favicon.ico ├── logo.png ├── logo.svg ├── metamask-fox.svg ├── metamask.svg ├── walletconnect-logo.svg └── walletconnect.png ├── src ├── NextjsChakraDapp.sol ├── NextjsChakraDapp.t.sol ├── assets │ ├── DiscordSVG.tsx │ ├── HeadlineSVG.tsx │ ├── MetaMask.ts │ ├── TwitterSVG.tsx │ ├── WalletConnect.ts │ ├── index.ts │ └── trippyimage.png ├── components │ ├── Footer.tsx │ ├── Header.tsx │ ├── Hero.tsx │ ├── Main.tsx │ ├── MainSection.tsx │ ├── account │ │ ├── AccountModal.tsx │ │ ├── Identicon.tsx │ │ └── index.ts │ ├── index.ts │ ├── landingpage │ │ ├── LandingPageMain.tsx │ │ ├── TrippyArt.tsx │ │ └── index.ts │ ├── mintpage │ │ ├── AppPageMain.tsx │ │ ├── NFTFrame.tsx │ │ ├── OpenBidsFrame.tsx │ │ ├── PlaceBidFrame.tsx │ │ └── index.ts │ └── shared │ │ ├── CTA.tsx │ │ ├── ConnectWallet.tsx │ │ ├── Container.tsx │ │ ├── DarkModeSwitch.tsx │ │ ├── FAQ.tsx │ │ ├── FAQModal.tsx │ │ ├── GlitchButton.tsx │ │ ├── GradientContainer.tsx │ │ ├── GrayButton.tsx │ │ ├── LaunchAppButton.tsx │ │ ├── MintButton.tsx │ │ ├── NascentBadge.tsx │ │ ├── Navbar.tsx │ │ ├── NoShadowButton.tsx │ │ ├── Terminal.tsx │ │ └── index.ts ├── contexts │ ├── Web3Context.tsx │ └── index.ts ├── hooks │ ├── AuthedCallback.ts │ ├── SmallScreen.ts │ └── index.ts ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── app.tsx │ └── index.tsx ├── theme.tsx ├── utils │ ├── ChakraUtils.tsx │ ├── ProviderOptions.ts │ ├── Web3Providers.ts │ └── index.ts └── web3context-sdk │ ├── Cache.ts │ ├── Web3ContextClass.ts │ ├── abi │ └── ERC20.json │ ├── index.ts │ ├── node_modules │ ├── .yarn-integrity │ ├── axios │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── UPGRADE_GUIDE.md │ │ ├── dist │ │ │ ├── axios.js │ │ │ ├── axios.map │ │ │ ├── axios.min.js │ │ │ └── axios.min.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── lib │ │ │ ├── adapters │ │ │ │ ├── README.md │ │ │ │ ├── http.js │ │ │ │ └── xhr.js │ │ │ ├── axios.js │ │ │ ├── cancel │ │ │ │ ├── Cancel.js │ │ │ │ ├── CancelToken.js │ │ │ │ └── isCancel.js │ │ │ ├── core │ │ │ │ ├── Axios.js │ │ │ │ ├── InterceptorManager.js │ │ │ │ ├── README.md │ │ │ │ ├── buildFullPath.js │ │ │ │ ├── createError.js │ │ │ │ ├── dispatchRequest.js │ │ │ │ ├── enhanceError.js │ │ │ │ ├── mergeConfig.js │ │ │ │ ├── settle.js │ │ │ │ └── transformData.js │ │ │ ├── defaults.js │ │ │ ├── helpers │ │ │ │ ├── README.md │ │ │ │ ├── bind.js │ │ │ │ ├── buildURL.js │ │ │ │ ├── combineURLs.js │ │ │ │ ├── cookies.js │ │ │ │ ├── deprecatedMethod.js │ │ │ │ ├── isAbsoluteURL.js │ │ │ │ ├── isAxiosError.js │ │ │ │ ├── isURLSameOrigin.js │ │ │ │ ├── normalizeHeaderName.js │ │ │ │ ├── parseHeaders.js │ │ │ │ ├── spread.js │ │ │ │ └── validator.js │ │ │ └── utils.js │ │ └── package.json │ ├── big.js │ │ ├── CHANGELOG.md │ │ ├── LICENCE.md │ │ ├── README.md │ │ ├── big.js │ │ ├── big.mjs │ │ └── package.json │ └── follow-redirects │ │ ├── LICENSE │ │ ├── README.md │ │ ├── debug.js │ │ ├── http.js │ │ ├── https.js │ │ ├── index.js │ │ └── package.json │ ├── package.json │ └── yarn.lock ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "makefile.extensionOutputFolder": "./.vscode" 3 | } -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/netlify.toml -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/metamask-fox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/public/metamask-fox.svg -------------------------------------------------------------------------------- /public/metamask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/public/metamask.svg -------------------------------------------------------------------------------- /public/walletconnect-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/public/walletconnect-logo.svg -------------------------------------------------------------------------------- /public/walletconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/public/walletconnect.png -------------------------------------------------------------------------------- /src/NextjsChakraDapp.sol: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MIT 2 | 3 | pragma solidity ^0.8.6; 4 | 5 | contract NextjsChakraDapp { 6 | } 7 | -------------------------------------------------------------------------------- /src/NextjsChakraDapp.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/NextjsChakraDapp.t.sol -------------------------------------------------------------------------------- /src/assets/DiscordSVG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/assets/DiscordSVG.tsx -------------------------------------------------------------------------------- /src/assets/HeadlineSVG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/assets/HeadlineSVG.tsx -------------------------------------------------------------------------------- /src/assets/MetaMask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/assets/MetaMask.ts -------------------------------------------------------------------------------- /src/assets/TwitterSVG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/assets/TwitterSVG.tsx -------------------------------------------------------------------------------- /src/assets/WalletConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/assets/WalletConnect.ts -------------------------------------------------------------------------------- /src/assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/assets/index.ts -------------------------------------------------------------------------------- /src/assets/trippyimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/assets/trippyimage.png -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/Hero.tsx -------------------------------------------------------------------------------- /src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/Main.tsx -------------------------------------------------------------------------------- /src/components/MainSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/MainSection.tsx -------------------------------------------------------------------------------- /src/components/account/AccountModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/account/AccountModal.tsx -------------------------------------------------------------------------------- /src/components/account/Identicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/account/Identicon.tsx -------------------------------------------------------------------------------- /src/components/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/account/index.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/landingpage/LandingPageMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/landingpage/LandingPageMain.tsx -------------------------------------------------------------------------------- /src/components/landingpage/TrippyArt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/landingpage/TrippyArt.tsx -------------------------------------------------------------------------------- /src/components/landingpage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/landingpage/index.ts -------------------------------------------------------------------------------- /src/components/mintpage/AppPageMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/mintpage/AppPageMain.tsx -------------------------------------------------------------------------------- /src/components/mintpage/NFTFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/mintpage/NFTFrame.tsx -------------------------------------------------------------------------------- /src/components/mintpage/OpenBidsFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/mintpage/OpenBidsFrame.tsx -------------------------------------------------------------------------------- /src/components/mintpage/PlaceBidFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/mintpage/PlaceBidFrame.tsx -------------------------------------------------------------------------------- /src/components/mintpage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/mintpage/index.ts -------------------------------------------------------------------------------- /src/components/shared/CTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/CTA.tsx -------------------------------------------------------------------------------- /src/components/shared/ConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/ConnectWallet.tsx -------------------------------------------------------------------------------- /src/components/shared/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/Container.tsx -------------------------------------------------------------------------------- /src/components/shared/DarkModeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/DarkModeSwitch.tsx -------------------------------------------------------------------------------- /src/components/shared/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/FAQ.tsx -------------------------------------------------------------------------------- /src/components/shared/FAQModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/FAQModal.tsx -------------------------------------------------------------------------------- /src/components/shared/GlitchButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/GlitchButton.tsx -------------------------------------------------------------------------------- /src/components/shared/GradientContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/GradientContainer.tsx -------------------------------------------------------------------------------- /src/components/shared/GrayButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/GrayButton.tsx -------------------------------------------------------------------------------- /src/components/shared/LaunchAppButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/LaunchAppButton.tsx -------------------------------------------------------------------------------- /src/components/shared/MintButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/MintButton.tsx -------------------------------------------------------------------------------- /src/components/shared/NascentBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/NascentBadge.tsx -------------------------------------------------------------------------------- /src/components/shared/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/Navbar.tsx -------------------------------------------------------------------------------- /src/components/shared/NoShadowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/NoShadowButton.tsx -------------------------------------------------------------------------------- /src/components/shared/Terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/Terminal.tsx -------------------------------------------------------------------------------- /src/components/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/components/shared/index.ts -------------------------------------------------------------------------------- /src/contexts/Web3Context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/contexts/Web3Context.tsx -------------------------------------------------------------------------------- /src/contexts/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Web3Context'; -------------------------------------------------------------------------------- /src/hooks/AuthedCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/hooks/AuthedCallback.ts -------------------------------------------------------------------------------- /src/hooks/SmallScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/hooks/SmallScreen.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/pages/app.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/theme.tsx -------------------------------------------------------------------------------- /src/utils/ChakraUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/utils/ChakraUtils.tsx -------------------------------------------------------------------------------- /src/utils/ProviderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/utils/ProviderOptions.ts -------------------------------------------------------------------------------- /src/utils/Web3Providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/utils/Web3Providers.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/web3context-sdk/Cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/Cache.ts -------------------------------------------------------------------------------- /src/web3context-sdk/Web3ContextClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/Web3ContextClass.ts -------------------------------------------------------------------------------- /src/web3context-sdk/abi/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/abi/ERC20.json -------------------------------------------------------------------------------- /src/web3context-sdk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/index.ts -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/.yarn-integrity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/.yarn-integrity -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/CHANGELOG.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/LICENSE -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/README.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/SECURITY.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/UPGRADE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/UPGRADE_GUIDE.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/dist/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/dist/axios.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/dist/axios.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/dist/axios.map -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/dist/axios.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/dist/axios.min.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/dist/axios.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/dist/axios.min.map -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/index.d.ts -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/axios'); -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/adapters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/adapters/README.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/adapters/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/adapters/http.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/adapters/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/adapters/xhr.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/axios.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/cancel/Cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/cancel/Cancel.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/cancel/CancelToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/cancel/CancelToken.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/cancel/isCancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/cancel/isCancel.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/core/Axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/core/Axios.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/core/InterceptorManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/core/InterceptorManager.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/core/README.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/core/buildFullPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/core/buildFullPath.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/core/createError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/core/createError.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/core/dispatchRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/core/dispatchRequest.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/core/enhanceError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/core/enhanceError.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/core/mergeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/core/mergeConfig.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/core/settle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/core/settle.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/core/transformData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/core/transformData.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/defaults.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/README.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/bind.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/buildURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/buildURL.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/combineURLs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/combineURLs.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/cookies.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/deprecatedMethod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/deprecatedMethod.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/isAbsoluteURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/isAbsoluteURL.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/isAxiosError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/isAxiosError.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/isURLSameOrigin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/isURLSameOrigin.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/normalizeHeaderName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/normalizeHeaderName.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/parseHeaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/parseHeaders.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/spread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/spread.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/helpers/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/helpers/validator.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/lib/utils.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/axios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/axios/package.json -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/big.js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/big.js/CHANGELOG.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/big.js/LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/big.js/LICENCE.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/big.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/big.js/README.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/big.js/big.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/big.js/big.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/big.js/big.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/big.js/big.mjs -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/big.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/big.js/package.json -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/follow-redirects/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/follow-redirects/LICENSE -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/follow-redirects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/follow-redirects/README.md -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/follow-redirects/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/follow-redirects/debug.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/follow-redirects/http.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./").http; 2 | -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/follow-redirects/https.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./").https; 2 | -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/follow-redirects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/follow-redirects/index.js -------------------------------------------------------------------------------- /src/web3context-sdk/node_modules/follow-redirects/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/node_modules/follow-redirects/package.json -------------------------------------------------------------------------------- /src/web3context-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/package.json -------------------------------------------------------------------------------- /src/web3context-sdk/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/src/web3context-sdk/yarn.lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refcell/nextjs-chakra-dapp/HEAD/yarn.lock --------------------------------------------------------------------------------