├── .gitattributes ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── assets ├── AGO1.webp ├── BETIFY1.webp ├── CRK1.webp ├── CROGE1.webp ├── CROISSANT1.webp ├── CROKI1.webp ├── CROLAMBOS1.webp ├── CROMOON1.webp ├── CROTAMA1.webp ├── GAUR1.webp ├── MAD1.webp ├── METF1.webp ├── MIMAS1.webp ├── MMF1.webp ├── MMO1.webp ├── MSHARE1.webp ├── NESS1.webp ├── PES1.webp ├── Phenix1.webp ├── SINGLE1.webp ├── SVN1.webp ├── Sky1.webp └── WCRO1.webp ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `npm start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser. 13 | 14 | The page will reload when you make changes.\ 15 | You may also see any lint errors in the console. 16 | 17 | ### `npm test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `npm run build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `npm run eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can't go back!** 35 | 36 | If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. 39 | 40 | You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | 48 | ### Code Splitting 49 | 50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) 51 | 52 | ### Analyzing the Bundle Size 53 | 54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) 55 | 56 | ### Making a Progressive Web App 57 | 58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) 59 | 60 | ### Advanced Configuration 61 | 62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) 63 | 64 | ### Deployment 65 | 66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) 67 | 68 | ### `npm run build` fails to minify 69 | 70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) 71 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ppp", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.16.4", 7 | "@testing-library/react": "^13.1.1", 8 | "@testing-library/user-event": "^13.5.0", 9 | "bootstrap": "^5.1.3", 10 | "react": "^18.1.0", 11 | "react-bootstrap": "^2.3.1", 12 | "react-dom": "^18.1.0", 13 | "react-scripts": "5.0.1", 14 | "react-icons": "^4.3.1", 15 | "web-vitals": "^2.1.4" 16 | }, 17 | "scripts": { 18 | "start": "react-scripts start", 19 | "build": "react-scripts build", 20 | "test": "react-scripts test", 21 | "eject": "react-scripts eject" 22 | }, 23 | "eslintConfig": { 24 | "extends": [ 25 | "react-app", 26 | "react-app/jest" 27 | ] 28 | }, 29 | "browserslist": { 30 | "production": [ 31 | ">0.2%", 32 | "not dead", 33 | "not op_mini all" 34 | ], 35 | "development": [ 36 | "last 1 chrome version", 37 | "last 1 firefox version", 38 | "last 1 safari version" 39 | ] 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | body{ 2 | height: 100vh; 3 | } 4 | #root{ 5 | height: 100%; 6 | } 7 | .App { 8 | text-align: center; 9 | height: 100%; 10 | } 11 | 12 | .App-logo { 13 | height: 40vmin; 14 | pointer-events: none; 15 | } 16 | 17 | @media (prefers-reduced-motion: no-preference) { 18 | .App-logo { 19 | animation: App-logo-spin infinite 20s linear; 20 | } 21 | } 22 | 23 | .App-header { 24 | background-color: #282c34; 25 | min-height: 100vh; 26 | display: flex; 27 | flex-direction: column; 28 | align-items: center; 29 | justify-content: center; 30 | font-size: calc(10px + 2vmin); 31 | color: white; 32 | } 33 | 34 | .App-link { 35 | color: #61dafb; 36 | } 37 | 38 | @keyframes App-logo-spin { 39 | from { 40 | transform: rotate(0deg); 41 | } 42 | to { 43 | transform: rotate(360deg); 44 | } 45 | } 46 | 47 | .warn-section { 48 | background-color: yellow; 49 | } 50 | 51 | .nav-section { 52 | height: 40px; 53 | background-color: rgb(63, 63, 63); 54 | border: 1px solid rgb(224, 224, 224) !important; 55 | } 56 | 57 | .main-section { 58 | background-color: rgb(0, 0, 0); 59 | height: 100%; 60 | } 61 | 62 | .work-section { 63 | color: white; 64 | background-color: rgb(48, 48, 48); 65 | border-radius: 10px; 66 | width: 30vw !important; 67 | margin: auto; 68 | } 69 | .modal-content{ 70 | background-color: rgb(48, 48, 48)!important; 71 | } 72 | .white-text{ 73 | color: rgb(255, 255, 255)!important; 74 | } 75 | .grey-text{ 76 | color: #a3a3a3; 77 | } 78 | 79 | .divide { 80 | border-top: 1px solid rgb(97, 97, 97) !important; 81 | } 82 | 83 | .from_section { 84 | background-color: #384561; 85 | border-radius: 10px; 86 | } 87 | 88 | .currency_select { 89 | background: transparent !important; 90 | border: none !important; 91 | color: white !important; 92 | } 93 | 94 | option { 95 | background-color: #384561; 96 | } 97 | 98 | .custom_btn { 99 | width: 80% !important; 100 | background-color: rgb(187, 147, 36) !important; 101 | border-color: rgb(187, 147, 36) !important; 102 | border-radius: 100px !important; 103 | } 104 | 105 | .custom_connect_btn { 106 | width: 80% !important; 107 | background-color: rgb(187, 147, 36) !important; 108 | border-color: rgb(187, 147, 36) !important; 109 | border-radius: 10px !important; 110 | } 111 | 112 | .nav_connect_btn { 113 | width: 150px !important; 114 | background-color: rgb(187, 147, 36) !important; 115 | border-color: rgb(187, 147, 36) !important; 116 | border-radius: 100px !important; 117 | } 118 | .modal-header{ 119 | border-bottom : #4f4f4f !important; 120 | } 121 | .modal-dialog{ 122 | max-width: 30vw !important; 123 | } 124 | @media only screen and (max-width: 1500px) { 125 | .work-section { 126 | width: 30vw !important; 127 | } 128 | .modal-dialog{ 129 | max-width: 30vw !important; 130 | } 131 | } 132 | @media only screen and (max-width: 1200px) { 133 | .work-section { 134 | width: 40vw !important; 135 | } 136 | .modal-dialog{ 137 | max-width: 40vw !important; 138 | } 139 | } 140 | @media only screen and (max-width: 800px) { 141 | .work-section { 142 | width: 50vw !important; 143 | } 144 | .modal-dialog{ 145 | max-width: 50vw !important; 146 | } 147 | } 148 | @media only screen and (max-width: 500px) { 149 | .work-section { 150 | width: 70vw !important; 151 | } 152 | .modal-dialog{ 153 | max-width: 70vw !important; 154 | } 155 | } -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import { useState } from 'react'; 2 | import logo from './logo.svg'; 3 | import {Navbar, Nav , Container , Form, FormControl , NavDropdown , Button , Modal} from 'react-bootstrap' 4 | import {IoMdSettings , IoIosArrowDown} from 'react-icons/io' 5 | import {GiBackwardTime} from 'react-icons/gi' 6 | import {AiOutlineArrowDown} from 'react-icons/ai' 7 | import {FcCheckmark} from 'react-icons/fc' 8 | 9 | import './App.css'; 10 | 11 | function App() { 12 | 13 | const [fromCurr, setFromCurr] = useState("Select a currency"); 14 | const [toCurr, setToCurr] = useState("Select a Token"); 15 | const [showModal , setShowModal] = useState(false); 16 | const [matchTokenList , setMatchTokenList] = useState(); 17 | 18 | const tokenList = [ 19 | { 20 | title: 'MMF', 21 | detail: "Mad Meerket Finance Token", 22 | address: "0x97749c9B61F878a880DfE312d2594AE07AEd7656", 23 | icon: "MMF1.webp" 24 | }, 25 | { 26 | title: 'MMO', 27 | detail: "Mad Meerkat Optimizer Token", 28 | address: "0x50c0c5bda591bc7e89a342a3ed672fb59b3c46a7", 29 | }, 30 | { 31 | title: 'METF', 32 | detail: "METF Token", 33 | address: "0xb8df27c687c6af9afe845a2afad2d01e199f4878", 34 | }, 35 | { 36 | title: 'SVN', 37 | detail: 'SVN Token', 38 | address: '0x654bac3ec77d6db497892478f854cf6e8245dca9', 39 | }, 40 | { 41 | title: 'MSHARE', 42 | detail: 'MSHARE Token', 43 | address: '0xf8b9facb7b4410f5703eb29093302f2933d6e1aa', 44 | }, 45 | { 46 | title: 'MAD', 47 | detail: 'MAD Bucks', 48 | address: '0x212331e1435a8df230715db4c02b2a3a0abf8c61', 49 | }, 50 | { 51 | title: 'WCRO', 52 | detail: 'Wrapped CRO', 53 | address: '0x5c7f8a570d578ed84e63fdfa7b1ee72deae1ae23', 54 | }, 55 | { 56 | title: 'AGO', 57 | detail: 'Agora Token', 58 | address: '0x383627CaeC2CE3b36793c34B576B2e97BEDA0466', 59 | }, 60 | { 61 | title: 'BETIFY', 62 | detail: 'Betify Token', 63 | address: '0xD465b6B4937D768075414D413e981Af0b49349Cc', 64 | }, 65 | { 66 | title: 'CRK', 67 | detail: 'Croking Token', 68 | address: '0x065DE42E28E42d90c2052a1B49e7f83806Af0e1F', 69 | }, 70 | { 71 | title: 'CROGE', 72 | detail: 'CROGE Coin', 73 | address: '0xC4a174cCb5fb54a6721e11e0Ca961e42715023F9', 74 | }, 75 | { 76 | title: 'CROISSANT', 77 | detail: 'CROISSANT Token', 78 | address: '0xa0c3c184493f2fae7d2f2bd83f195a1c300fa353', 79 | }, 80 | { 81 | title: 'CROKI', 82 | detail: 'Croki Token', 83 | address: '0x43e90012a3d69AeBdc2750424b41655776c6D598', 84 | }, 85 | { 86 | title: 'CROLAMBOS', 87 | detail: 'CROLAMBOS Token', 88 | address: '0x2a96a67c3bc9063991127d475d0cfcb0e86a2e5c', 89 | }, 90 | { 91 | title: 'CROMOON', 92 | detail: 'Cro Moon Token', 93 | address: '0x7D30c36f845d1dEe79f852abF3A8A402fAdF3b53', 94 | }, 95 | { 96 | title: 'CROTAMA', 97 | detail: 'CROTAMA Token', 98 | address: '0x4c76a10A658d71AdB6431765a0a3cA13B6e2D491', 99 | }, 100 | // { 101 | // title: 'CROW', 102 | // detail: 'CrowCoin', 103 | // address: '0x285c3329930a3fd3C7c14bC041d3E50e165b1517', 104 | // }, 105 | { 106 | title: 'GAUR', 107 | detail: 'Gaur Money Token', 108 | address: '0x046cb616d7a52173e4Da9efF1BFd590550aa3228', 109 | }, 110 | { 111 | title: 'MIMAS', 112 | detail: 'MIMAS Token', 113 | address: '0x10C9284E6094b71D3CE4E38B8bFfc668199da677', 114 | }, 115 | { 116 | title: 'NESS', 117 | detail: 'NESS Coin', 118 | address: '0xE727240728C1a5f95437b8b50AFDd0EA4AE5F0c8', 119 | }, 120 | { 121 | title: 'PES', 122 | detail: 'PES Dollar Token', 123 | address: '0x8EfBaA6080412D7832025b03B9239D0be1e2aa3B', 124 | }, 125 | { 126 | title: 'Phenix', 127 | detail: 'Phenix Finance', 128 | address: '0x57d06bB1e3B60C875cD3A4445a53217F9B44d390', 129 | }, 130 | { 131 | title: 'SINGLE', 132 | detail: 'SINGLE Token', 133 | address: '0x0804702a4e749d39a35fde73d1df0b1f1d6b8347', 134 | }, 135 | { 136 | title: 'Sky', 137 | detail: 'DARKCRYPTO SHARE Token', 138 | address: '0x9d3bbb0e988d9fb2d55d07fe471be2266ad9c81c', 139 | }, 140 | // { 141 | // title: 'SPHERE', 142 | // detail: 'SPHERE Token', 143 | // address: '0xD6597AA36DD90d7fCcBd7B8A228F2d5CdC88eAd0.', 144 | // }, 145 | ] 146 | 147 | const onExchange = () => { 148 | let from = fromCurr; 149 | let to = toCurr; 150 | setFromCurr(to); 151 | setToCurr(from); 152 | } 153 | 154 | const handleClose = () => setShowModal(false); 155 | const handleShow = () => setShowModal(true); 156 | const handleTokenChange = (tokendata) => { 157 | setToCurr(tokendata) 158 | handleClose() 159 | } 160 | 161 | return ( 162 |
163 |
164 |
165 |
PHISHING WARNING Please make sure you are visiting https://mm.finance -check URL carefully
166 | x 167 |
168 |
169 | 170 | 171 | 172 | {' '} 179 | MMF 180 | 181 | 182 | 183 | 194 |
195 | {/* */} 196 | {/* */} 197 | {/*
Audit
*/} 198 | 199 | 200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |

Exchange

210 |

Trade tokens in an instant

211 |
212 |
213 | 214 | 215 |
216 |
217 |
218 |
219 |
220 |

From

221 |
222 |

0.0

223 |
224 |
225 | {fromCurr} 226 |
227 |
228 |
229 |
230 | 231 |
232 |
233 | 234 |
235 |
236 | 237 |
238 |
239 | 240 |
241 |
242 |
243 | 244 |
245 |
246 |

To

247 |
248 |

0.0

249 |
250 |
251 | {toCurr} 252 |
253 | 254 | 255 | Select a Token 256 | 257 | 258 | 263 |
264 | {tokenList.map(token => 265 |
handleTokenChange(token.title)}> 266 |
267 | 268 |
269 |
270 |
{token.title}
271 |

{token.detail}

272 |
273 |
274 | )} 275 |
276 |
277 |
278 |
279 |
280 |
281 | 282 |
283 |
284 |
285 |
286 |
287 |
288 | ); 289 | } 290 | 291 | export default App; 292 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /src/assets/AGO1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/AGO1.webp -------------------------------------------------------------------------------- /src/assets/BETIFY1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/BETIFY1.webp -------------------------------------------------------------------------------- /src/assets/CRK1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/CRK1.webp -------------------------------------------------------------------------------- /src/assets/CROGE1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/CROGE1.webp -------------------------------------------------------------------------------- /src/assets/CROISSANT1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/CROISSANT1.webp -------------------------------------------------------------------------------- /src/assets/CROKI1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/CROKI1.webp -------------------------------------------------------------------------------- /src/assets/CROLAMBOS1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/CROLAMBOS1.webp -------------------------------------------------------------------------------- /src/assets/CROMOON1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/CROMOON1.webp -------------------------------------------------------------------------------- /src/assets/CROTAMA1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/CROTAMA1.webp -------------------------------------------------------------------------------- /src/assets/GAUR1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/GAUR1.webp -------------------------------------------------------------------------------- /src/assets/MAD1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/MAD1.webp -------------------------------------------------------------------------------- /src/assets/METF1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/METF1.webp -------------------------------------------------------------------------------- /src/assets/MIMAS1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/MIMAS1.webp -------------------------------------------------------------------------------- /src/assets/MMF1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/MMF1.webp -------------------------------------------------------------------------------- /src/assets/MMO1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/MMO1.webp -------------------------------------------------------------------------------- /src/assets/MSHARE1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/MSHARE1.webp -------------------------------------------------------------------------------- /src/assets/NESS1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/NESS1.webp -------------------------------------------------------------------------------- /src/assets/PES1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/PES1.webp -------------------------------------------------------------------------------- /src/assets/Phenix1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/Phenix1.webp -------------------------------------------------------------------------------- /src/assets/SINGLE1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/SINGLE1.webp -------------------------------------------------------------------------------- /src/assets/SVN1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/SVN1.webp -------------------------------------------------------------------------------- /src/assets/Sky1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/Sky1.webp -------------------------------------------------------------------------------- /src/assets/WCRO1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dreamfullstacker/ReactUI_TokenList_ConnectWallet/9a7bae7efc4e8f363832e373eb302579c9f9e2c0/src/assets/WCRO1.webp -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import './index.css'; 4 | import App from './App'; 5 | import reportWebVitals from './reportWebVitals'; 6 | import 'bootstrap/dist/css/bootstrap.min.css'; 7 | 8 | const root = ReactDOM.createRoot(document.getElementById('root')); 9 | root.render( 10 | 11 | 12 | 13 | ); 14 | 15 | // If you want to start measuring performance in your app, pass a function 16 | // to log results (for example: reportWebVitals(console.log)) 17 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 18 | reportWebVitals(); 19 | -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | --------------------------------------------------------------------------------