create-web3-dapp
create-web3-dapp copied to clipboard
The complete toolbox to create web3 applications.
Just like an owner can fetch his/her own NFTs, we can also add the option to check all the ENS names registered under the owner's wallet address that can be...
 @Eversmile12 is it possible to add a simple animation to this Logo? if possible let me add animation to the logo.
When running `npx create-web3-dapp`, it asked the same question twice and also installed the same package twice. The fix was made by removing the duplicate blocks of code in `index.ts`.
Just finished the week 3 of road to web3 project by using `create-web3-app`. https://github.com/kenryu42/chain-battles-create-web3-dapp Here is a list of the bugs / questions I encountered. ### Bugs 1. Running `npx...
I suggest having GitHub actions for linting when code is pushed or PR is merged on `main` branch. It would be a simple workflow which runs `npm run lint` on...
### Enhancements 1. Remove the quotes from `hardhat.config.js` when generating instead of having users remove it manually. 2. Add `next.config.js` to the template and enable Strict Mode. https://nextjs.org/docs/api-reference/next.config.js/react-strict-mode 3. Implement...
Solves #12. I've added links (which open to separate pages) for the 4 sections. 1. [Learn Alchemy](https://docs.alchemy.com/docs/alchemy-quickstart-guide) 2. [Road to web3](https://docs.alchemy.com/docs/welcome-to-the-road-to-web3) 3. [Faucet](https://goerlifaucet.com//) 4. [Read our docs](https://docs.alchemy.com//)
Added the following custom scripts for `package.json` #18 ``` "clean": "rm -rf dist", "start": "node dist/index.js", "build": "npm run clean && npx tsc" ``` And updated the `contributing.md` accordingly.
GitHub issue templates can help contributors with issue labels, title prefixes (maybe not needed at all because of labelling), npm and node version, the overall issue structure, making sure they've...
Added scripts in the package.json file - This might help developers to quickly compile, test and deploy the contracts right from the root directly rather than switching between both backend...