Skip to content

Instantly share code, notes, and snippets.

View Streeterxs's full-sized avatar
🍉
Chill & code

Afonso Araújo Neto Streeterxs

🍉
Chill & code
View GitHub Profile
module.exports = {
// ...
resolve: {
alias: {
'react-router': path.resolve(__dirname, './node_modules/react-router'),
},
},
}
@sibelius
sibelius / learning-path-web3.md
Last active June 18, 2024 17:52
Learning Path Web3
  • learn blockchain concepts
  • learn ethereum
  • learn how to use metamask
  • learn how to use hardhat (https://hardhat.org/)
  • learn how to deploy and interact with a smart contract
  • learn common smart contract standards like ERC20 (token), ERC721 (nft), ERC1155 (opensea)
  • learn ipfs
  • learn how to read blockchain explorers like https://etherscan.io/
  • learn how to use web3 and etherjs
  • learn solidity
const [formValidation, setFormValidation] = useState<UserFormValidation>({
emailIsValid: false,
cpfIsValid: false,
nomeIsValid: false,
cepIsValid: false,
ruaIsValid: false,
numeroIsValid: false,
bairroIsValid: false,
cidadeIsValid: false,
showErrors: false