name = 'timothy'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Lesson 1 - Iterations | |
| - BinaryGap - https://codility.com/demo/results/trainingU2FQPQ-7Y4/ | |
| Lesson 2 - Arrays | |
| - OddOccurrencesInArray - https://codility.com/demo/results/trainingFN5RVT-XQ4/ | |
| - CyclicRotation - https://codility.com/demo/results/trainingSH2W5R-RP5/ | |
| Lesson 3 - Time Complexity | |
| - FrogJmp - https://codility.com/demo/results/training6KKWUD-BXJ/ | |
| - PermMissingElem - https://codility.com/demo/results/training58W4YJ-VHA/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ethereum networks used to transfer money and store data. | |
| blockchain: databasre that stores record of every transaction that has ever tkn place. | |
| network formed by nodes(machine running on ethereum client) | |
| ##interfacing with ethereum | |
| 1.for Developers:web3.js-send monet,deploy contracts,store data etc | |
| 2.for consumers:iMetamask-Chrome |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { useEffect, useState } from 'react'; | |
| import { Flex, Select, Box, Text, Input, Spinner, Icon, Button } from '@chakra-ui/react'; | |
| import { useRouter } from 'next/router'; | |
| import { MdCancel } from 'react-icons/md'; | |
| import Image from 'next/image'; | |
| import { filterData, getFilterValues } from '../utils/filterData'; | |
| import { baseUrl, fetchApi } from '../utils/fetchApi'; | |
| import noresult from '../assets/images/noresult.svg'; |