├── client ├── .gitignore ├── images │ ├── animated.svg │ ├── hello.svg │ └── logo.png ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── src │ ├── App.css │ ├── App.tsx │ ├── components │ │ ├── Footer │ │ │ └── Footer.tsx │ │ ├── Loader │ │ │ └── Loader.tsx │ │ ├── Navbar │ │ │ └── Navbar.tsx │ │ ├── Services │ │ │ └── Services.tsx │ │ ├── Transactions │ │ │ └── Transactions.tsx │ │ ├── Welcome │ │ │ └── Welcome.tsx │ │ └── index.tsx │ ├── context │ │ └── TransactionContext.tsx │ ├── favicon.svg │ ├── hooks │ │ └── useFetch.tsx │ ├── index.css │ ├── logo.svg │ ├── main.tsx │ ├── utils │ │ ├── Transactions.json │ │ ├── constants.ts │ │ ├── dummyData.ts │ │ └── shortenAddress.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts └── smart_contract ├── .gitignore ├── README.md ├── contracts └── Transactions.sol ├── hardhat.config.js ├── package-lock.json ├── package.json ├── scripts └── deploy.js └── test └── sample-test.js /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/images/animated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/images/animated.svg -------------------------------------------------------------------------------- /client/images/hello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/images/hello.svg -------------------------------------------------------------------------------- /client/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/images/logo.png -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/index.html -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/App.tsx -------------------------------------------------------------------------------- /client/src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /client/src/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /client/src/components/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/components/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /client/src/components/Services/Services.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/components/Services/Services.tsx -------------------------------------------------------------------------------- /client/src/components/Transactions/Transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/components/Transactions/Transactions.tsx -------------------------------------------------------------------------------- /client/src/components/Welcome/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/components/Welcome/Welcome.tsx -------------------------------------------------------------------------------- /client/src/components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/components/index.tsx -------------------------------------------------------------------------------- /client/src/context/TransactionContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/context/TransactionContext.tsx -------------------------------------------------------------------------------- /client/src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/favicon.svg -------------------------------------------------------------------------------- /client/src/hooks/useFetch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/hooks/useFetch.tsx -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/main.tsx -------------------------------------------------------------------------------- /client/src/utils/Transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/utils/Transactions.json -------------------------------------------------------------------------------- /client/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/utils/constants.ts -------------------------------------------------------------------------------- /client/src/utils/dummyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/utils/dummyData.ts -------------------------------------------------------------------------------- /client/src/utils/shortenAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/src/utils/shortenAddress.ts -------------------------------------------------------------------------------- /client/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/client/vite.config.ts -------------------------------------------------------------------------------- /smart_contract/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/smart_contract/.gitignore -------------------------------------------------------------------------------- /smart_contract/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/smart_contract/README.md -------------------------------------------------------------------------------- /smart_contract/contracts/Transactions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/smart_contract/contracts/Transactions.sol -------------------------------------------------------------------------------- /smart_contract/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/smart_contract/hardhat.config.js -------------------------------------------------------------------------------- /smart_contract/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/smart_contract/package-lock.json -------------------------------------------------------------------------------- /smart_contract/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/smart_contract/package.json -------------------------------------------------------------------------------- /smart_contract/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/smart_contract/scripts/deploy.js -------------------------------------------------------------------------------- /smart_contract/test/sample-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wissen-snake/web3_crypto/HEAD/smart_contract/test/sample-test.js --------------------------------------------------------------------------------