https://github.com/apiorno/eth-nfts-browser
Simple eth nfts browser using flutter
https://github.com/apiorno/eth-nfts-browser
Last synced: 2 months ago
JSON representation
Simple eth nfts browser using flutter
- Host: GitHub
- URL: https://github.com/apiorno/eth-nfts-browser
- Owner: apiorno
- License: mit
- Created: 2022-09-23T22:32:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-27T13:28:31.000Z (over 2 years ago)
- Last Synced: 2025-02-11T12:21:19.762Z (4 months ago)
- Language: Dart
- Size: 104 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eth-nfts-browser
Simple eth nfts browser using flutter following CLEAN Architecture with BLoC state management
## Cache / Local storage
Shared Preferences choosen by simplicity, may be changed to Sembast in future.
## Testing
Developed with TDD technique. Used simple tests with mockito for whole project but blocs, used bloc_test instead.
## Extra libs
Used
- `Dartz` to enable funcional programming techniques like Either error handling.
- `build_runner` for mocks building
- `internet_connection_checker` to avoid useless api calls when no connection is available## Pending
● Better UI
● Adjust message in error handling
● UI Test/ Integration Tests### Bonus
● The input address format should be validated (length and characters is enough). [DONE]
● An Ethereum address can be an EOA (i.e. a regular user wallet) or a smart contract. We
should only allow EOAs (not smart contract addresses) to search for their NFTs. [PENDING]
● Allow the user to search NFTs with certain text.[PENDING]
● Allow the user to filter the POAPs by some useful attribute(s).[PENDING]## Running app
### Downlaod deps & Generate mocks and stuff
```
flutter pub get && flutter pub run build_runner build --delete-conflicting-outputs
```