├── .gitignore ├── @types └── global.d.ts ├── README.md ├── abis ├── ERC20.json └── OneSplit.json ├── assets └── animations │ ├── approve.lottie.json │ ├── money.lottie.json │ └── signing.lottie.json ├── codegen.yml ├── components ├── CoinPriceUSD.tsx ├── LoadingText.tsx ├── SelectToken.tsx ├── Swap.tsx ├── SwapModal.tsx ├── SwapStageConfirm.tsx ├── SwapToken.tsx ├── TokenAvatar.tsx ├── TokenSearch.tsx ├── Touchable.tsx ├── WidgetBuilder.tsx ├── layout.js └── layout.module.css ├── contexts └── Store.tsx ├── generated ├── OneInchApi.ts ├── OneInchGraph.ts ├── OneInchSwagger.ts ├── contracts │ ├── ERC20.d.ts │ ├── OneSplit.d.ts │ ├── factories │ │ ├── ERC20__factory.ts │ │ └── OneSplit__factory.ts │ └── index.ts └── openapi │ ├── .openapi-generator-ignore │ ├── .openapi-generator │ └── VERSION │ ├── apis │ ├── ApproveApi.ts │ ├── HealthcheckApi.ts │ ├── ProtocolsApi.ts │ ├── QuoteSwapApi.ts │ ├── TokensApi.ts │ └── index.ts │ ├── index.ts │ ├── models │ ├── ApproveCallData.ts │ ├── Protocols.ts │ ├── Quote.ts │ ├── SelectedProtocol.ts │ ├── SpenderAddress.ts │ ├── Swap.ts │ ├── Token.ts │ ├── Tokens.ts │ ├── Tx.ts │ └── index.ts │ └── runtime.ts ├── helpers ├── abbreviateNumber.ts ├── addRateLimitProtector.ts ├── animateHomePageText.ts ├── calc.ts ├── convertImageUrlToDataUri.ts ├── getGradients.ts ├── getTokenImageUrl.ts ├── gql.ts ├── rateLimitContractsAndOneInch.ts ├── repeatOnFail.ts └── safeParseUnits.ts ├── hooks ├── useAllTokens.ts ├── useAsyncStateInOrder.ts ├── useCoinPriceUSD.ts ├── useDebounce.ts ├── useGasPrice.ts ├── useInfiniteScroll.ts ├── useInfuraProvider.ts ├── useNextTick.ts ├── usePersistedState.ts ├── useProvider.ts ├── useQuote.ts ├── useSwap.tsx ├── useTokenBalances.ts └── useWalletTokens.ts ├── loaders ├── loadAllTokens.ts └── loadClientWeb3Provider.ts ├── next-env.d.ts ├── openapitools.json ├── package.json ├── pages ├── _app.js ├── components.tsx ├── index.module.css ├── index.tsx └── widget.tsx ├── posts ├── pre-rendering.md └── ssg-ssr.md ├── public ├── favicon.ico └── images │ ├── background.png │ ├── bruce-lee-punch.gif │ ├── bruce-lee-signature.png │ ├── bruce.svg │ ├── demo.gif │ ├── one-inch-logo--light.svg │ ├── one-inch-logo.svg │ ├── profile.jpg │ ├── widget-builder-browser-background-invert.png │ ├── widget-builder-browser-background.jpg │ └── widget-builder-browser-background.png ├── styles ├── animations.module.css ├── global.css ├── swap.module.css ├── tokensearch.module.css ├── utils.module.css └── widget.css ├── swagger.json ├── tsconfig.json ├── utils ├── RateLimitProtector.ts ├── flipTransition.ts └── replaceTransition.ts ├── webpack.lib.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/.gitignore -------------------------------------------------------------------------------- /@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/@types/global.d.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/README.md -------------------------------------------------------------------------------- /abis/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/abis/ERC20.json -------------------------------------------------------------------------------- /abis/OneSplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/abis/OneSplit.json -------------------------------------------------------------------------------- /assets/animations/approve.lottie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/assets/animations/approve.lottie.json -------------------------------------------------------------------------------- /assets/animations/money.lottie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/assets/animations/money.lottie.json -------------------------------------------------------------------------------- /assets/animations/signing.lottie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/assets/animations/signing.lottie.json -------------------------------------------------------------------------------- /codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/codegen.yml -------------------------------------------------------------------------------- /components/CoinPriceUSD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/CoinPriceUSD.tsx -------------------------------------------------------------------------------- /components/LoadingText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/LoadingText.tsx -------------------------------------------------------------------------------- /components/SelectToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/SelectToken.tsx -------------------------------------------------------------------------------- /components/Swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/Swap.tsx -------------------------------------------------------------------------------- /components/SwapModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/SwapModal.tsx -------------------------------------------------------------------------------- /components/SwapStageConfirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/SwapStageConfirm.tsx -------------------------------------------------------------------------------- /components/SwapToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/SwapToken.tsx -------------------------------------------------------------------------------- /components/TokenAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/TokenAvatar.tsx -------------------------------------------------------------------------------- /components/TokenSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/TokenSearch.tsx -------------------------------------------------------------------------------- /components/Touchable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/Touchable.tsx -------------------------------------------------------------------------------- /components/WidgetBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/WidgetBuilder.tsx -------------------------------------------------------------------------------- /components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/layout.js -------------------------------------------------------------------------------- /components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/components/layout.module.css -------------------------------------------------------------------------------- /contexts/Store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/contexts/Store.tsx -------------------------------------------------------------------------------- /generated/OneInchApi.ts: -------------------------------------------------------------------------------- 1 | export * as OneInchApi from './openapi/index'; 2 | -------------------------------------------------------------------------------- /generated/OneInchGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/OneInchGraph.ts -------------------------------------------------------------------------------- /generated/OneInchSwagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/OneInchSwagger.ts -------------------------------------------------------------------------------- /generated/contracts/ERC20.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/contracts/ERC20.d.ts -------------------------------------------------------------------------------- /generated/contracts/OneSplit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/contracts/OneSplit.d.ts -------------------------------------------------------------------------------- /generated/contracts/factories/ERC20__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/contracts/factories/ERC20__factory.ts -------------------------------------------------------------------------------- /generated/contracts/factories/OneSplit__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/contracts/factories/OneSplit__factory.ts -------------------------------------------------------------------------------- /generated/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/contracts/index.ts -------------------------------------------------------------------------------- /generated/openapi/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/.openapi-generator-ignore -------------------------------------------------------------------------------- /generated/openapi/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 4.3.1 -------------------------------------------------------------------------------- /generated/openapi/apis/ApproveApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/apis/ApproveApi.ts -------------------------------------------------------------------------------- /generated/openapi/apis/HealthcheckApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/apis/HealthcheckApi.ts -------------------------------------------------------------------------------- /generated/openapi/apis/ProtocolsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/apis/ProtocolsApi.ts -------------------------------------------------------------------------------- /generated/openapi/apis/QuoteSwapApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/apis/QuoteSwapApi.ts -------------------------------------------------------------------------------- /generated/openapi/apis/TokensApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/apis/TokensApi.ts -------------------------------------------------------------------------------- /generated/openapi/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/apis/index.ts -------------------------------------------------------------------------------- /generated/openapi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/index.ts -------------------------------------------------------------------------------- /generated/openapi/models/ApproveCallData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/models/ApproveCallData.ts -------------------------------------------------------------------------------- /generated/openapi/models/Protocols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/models/Protocols.ts -------------------------------------------------------------------------------- /generated/openapi/models/Quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/models/Quote.ts -------------------------------------------------------------------------------- /generated/openapi/models/SelectedProtocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/models/SelectedProtocol.ts -------------------------------------------------------------------------------- /generated/openapi/models/SpenderAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/models/SpenderAddress.ts -------------------------------------------------------------------------------- /generated/openapi/models/Swap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/models/Swap.ts -------------------------------------------------------------------------------- /generated/openapi/models/Token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/models/Token.ts -------------------------------------------------------------------------------- /generated/openapi/models/Tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/models/Tokens.ts -------------------------------------------------------------------------------- /generated/openapi/models/Tx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/models/Tx.ts -------------------------------------------------------------------------------- /generated/openapi/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/models/index.ts -------------------------------------------------------------------------------- /generated/openapi/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/generated/openapi/runtime.ts -------------------------------------------------------------------------------- /helpers/abbreviateNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/abbreviateNumber.ts -------------------------------------------------------------------------------- /helpers/addRateLimitProtector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/addRateLimitProtector.ts -------------------------------------------------------------------------------- /helpers/animateHomePageText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/animateHomePageText.ts -------------------------------------------------------------------------------- /helpers/calc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/calc.ts -------------------------------------------------------------------------------- /helpers/convertImageUrlToDataUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/convertImageUrlToDataUri.ts -------------------------------------------------------------------------------- /helpers/getGradients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/getGradients.ts -------------------------------------------------------------------------------- /helpers/getTokenImageUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/getTokenImageUrl.ts -------------------------------------------------------------------------------- /helpers/gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/gql.ts -------------------------------------------------------------------------------- /helpers/rateLimitContractsAndOneInch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/rateLimitContractsAndOneInch.ts -------------------------------------------------------------------------------- /helpers/repeatOnFail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/repeatOnFail.ts -------------------------------------------------------------------------------- /helpers/safeParseUnits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/helpers/safeParseUnits.ts -------------------------------------------------------------------------------- /hooks/useAllTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useAllTokens.ts -------------------------------------------------------------------------------- /hooks/useAsyncStateInOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useAsyncStateInOrder.ts -------------------------------------------------------------------------------- /hooks/useCoinPriceUSD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useCoinPriceUSD.ts -------------------------------------------------------------------------------- /hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useDebounce.ts -------------------------------------------------------------------------------- /hooks/useGasPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useGasPrice.ts -------------------------------------------------------------------------------- /hooks/useInfiniteScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useInfiniteScroll.ts -------------------------------------------------------------------------------- /hooks/useInfuraProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useInfuraProvider.ts -------------------------------------------------------------------------------- /hooks/useNextTick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useNextTick.ts -------------------------------------------------------------------------------- /hooks/usePersistedState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/usePersistedState.ts -------------------------------------------------------------------------------- /hooks/useProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useProvider.ts -------------------------------------------------------------------------------- /hooks/useQuote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useQuote.ts -------------------------------------------------------------------------------- /hooks/useSwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useSwap.tsx -------------------------------------------------------------------------------- /hooks/useTokenBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useTokenBalances.ts -------------------------------------------------------------------------------- /hooks/useWalletTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/hooks/useWalletTokens.ts -------------------------------------------------------------------------------- /loaders/loadAllTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/loaders/loadAllTokens.ts -------------------------------------------------------------------------------- /loaders/loadClientWeb3Provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/loaders/loadClientWeb3Provider.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/openapitools.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/pages/components.tsx -------------------------------------------------------------------------------- /pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/pages/index.module.css -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/pages/widget.tsx -------------------------------------------------------------------------------- /posts/pre-rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/posts/pre-rendering.md -------------------------------------------------------------------------------- /posts/ssg-ssr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/posts/ssg-ssr.md -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/background.png -------------------------------------------------------------------------------- /public/images/bruce-lee-punch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/bruce-lee-punch.gif -------------------------------------------------------------------------------- /public/images/bruce-lee-signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/bruce-lee-signature.png -------------------------------------------------------------------------------- /public/images/bruce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/bruce.svg -------------------------------------------------------------------------------- /public/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/demo.gif -------------------------------------------------------------------------------- /public/images/one-inch-logo--light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/one-inch-logo--light.svg -------------------------------------------------------------------------------- /public/images/one-inch-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/one-inch-logo.svg -------------------------------------------------------------------------------- /public/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/profile.jpg -------------------------------------------------------------------------------- /public/images/widget-builder-browser-background-invert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/widget-builder-browser-background-invert.png -------------------------------------------------------------------------------- /public/images/widget-builder-browser-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/widget-builder-browser-background.jpg -------------------------------------------------------------------------------- /public/images/widget-builder-browser-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/public/images/widget-builder-browser-background.png -------------------------------------------------------------------------------- /styles/animations.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/styles/animations.module.css -------------------------------------------------------------------------------- /styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/styles/global.css -------------------------------------------------------------------------------- /styles/swap.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/styles/swap.module.css -------------------------------------------------------------------------------- /styles/tokensearch.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/styles/tokensearch.module.css -------------------------------------------------------------------------------- /styles/utils.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/styles/utils.module.css -------------------------------------------------------------------------------- /styles/widget.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | background: transparent !important; 4 | } 5 | -------------------------------------------------------------------------------- /swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/swagger.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/RateLimitProtector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/utils/RateLimitProtector.ts -------------------------------------------------------------------------------- /utils/flipTransition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/utils/flipTransition.ts -------------------------------------------------------------------------------- /utils/replaceTransition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/utils/replaceTransition.ts -------------------------------------------------------------------------------- /webpack.lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/webpack.lib.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccallofthewild/1inch-widget/HEAD/yarn.lock --------------------------------------------------------------------------------