Code Monkey home page Code Monkey logo

blockchain-developer-bootcamp-final-project's People

Contributors

0xdcota avatar

Stargazers

 avatar

Watchers

 avatar  avatar

blockchain-developer-bootcamp-final-project's Issues

Funciones para checar Minting Power en HouseOfCoin.sol

Pregunta:
En el contrato HouseOfCoin.sol tienes dos functiones para checar si el usuario tiene el MintPower suficiente y en los comentarios dice que checkMintingPower es externa y _checkMintingPower es interna, pero la segunda es "publica". No deberia decir internal allí?
=)

Final Project feedback

Hi @daigarocota – Congratulations, your Final Project passed!

image

We'll be approving it on the course itself in a week or two, but here's your feedback in the meanwhile:
When we tried to compile and test your contract locally, we got some errors which were easy to fix, so we preferred to fix them as a sign of appreciation for your hard work and here's some fixes that we got and blocked us from compileing and testing your work locally :

  • replace secrets.json withsample.secrets.json
  • in node_modules/redstone-flash-storage/lib/contracts/message-based/PriceAware.sol , there was a ParserError: Source "hardhat/console.sol" not found --> redstone-flash-storage/lib/contracts/message-based/PriceAware.sol:7:1: | 7 | import "hardhat/console.sol"; you need to check the version or develop post-install script to fix this issue or maybe manually fix it
  • /contracts/interfaces/IAssetsAccountantState.sol" not found , you need to fix its extension as the current one is IAssetsAccountantState.Sol" it's case senstive
    Screenshot from 2021-12-08 17-19-43

Front end & UX :
Thank you for your hard work. Below are some recommendations to make your work better:

  • Don't force your user to inject meta mask once they open your website, let them connect whenever they want/need. Don't block your user from accessing your site
  • Guide your users to connect to the correct network when they are on the wrong network
  • Handle errors and display user-friendly messages rather than throwing the error to the user

Smart contract:
awesome code organization and documentation, few tips and tricks if you would love to make your work incredibly amazing

  • store the value of keccak256("MINTER_ROLE") in constant vlaue to reduce gas cost when calling mintCoin in HouseOfCoin contract

  • _checkMaxWithdrawal visibility should be private since no child contract calls it to reduce cost

  • It's recommended to define any function that is not called inside your contract as external rather than public to reduce gas cost e.g setURI -

  • Storage Layout & Ordering: Ordering of storage variables and struct members affect how they can be packed tightly. For example, declaring your storage variables in the order of uint128, uint128, uint256 instead of uint128, uint256, uint128, as the former will only take up two slots of storage whereas the latter will take up three.
    https://secureum.substack.com/p/solidity-201

  • The best-practices for layout within a contract is the following order: state variables, events, modifiers, constructor and functions to improve contract readability
    https://secureum.substack.com/p/solidity-101

Unit tests
You did a great job with testing. My advice to you is to :

-Check the amazing testing tools like OZ testing environment https://docs.openzeppelin.com/test-environment/0.1/ and waffle https://ethereum-waffle.readthedocs.io/en/latest/index.html as they would give you lots of amazing tools that help you develop more efficient unit tests. also if you would love to check the test coverage, tools like firefly https://fireflyblockchain.com/ would help you

General feedback:
What you have done is amazing and I do encourage you to continue your work on this amazing idea

image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.