This App fetches the transaction information of a crypto wallet from the blockchain and displays it on the screen as useful analytical data. The user is able to save multiple wallets that he/she is tracking and also able to view multiple assets (currencies) held in the wallet.
- This app fetches the transaction information of a crypto wallet from the blockchain and displays it on the screen as useful analytical data. The user is able to save multiple wallets that he/she is tracking and also able to view multiple assets (currencies) held in the wallet. Future capability will be for the user to create an account to save the wallets being tracked. User identity is protected since there's no KYC requirement and the user is not connecting or otherwise exposing his/her crypto assets on this site, and all that's required for the site to maintain the saved data is a user profile created with email and password.
- M.V.P
- Color schemes
- I used bootstrap cards
- The colors used are #007bff, #1d1d1d, and #95999c
- Title Crypto Whale Tracker
- Overview
- Languages: React, Redux, CSS, JS, HTML
- Stretch Goals (Future)
- Code Snippets
${walletData.hash}}${walletData.blockNumber}}${walletData.from}}${walletData.to}}${convertedValue(walletData.value)}}The below code shows the conversion for the date and value data received from the blockchain and then returned to the component for rendering.
export const convertedDate = (date) => { date = (date * 1000); let convertedDate = new Date (date); return convertedDate.toString(); }
export const convertedValue = (value) => { let convertedValue = (value); if(convertedValue === undefined){ convertedValue = 0; } else { convertedValue = convertedValue / 1000000000000000000;//this is the Wei value for ethereum } return convertedValue; }
- Screenshots Of The App
- Screenshots Testing The App
- Logo
- Developer Team
- Resources