ultimate-scaffold-dapp
v0.0.8
Published
ultimate custom evm blockchain application scaffold starter dapp
Maintainers
Readme
Ultimate EVM Scaffold
Version 0.0.5
Overview
🧪 Ultimate EVM Scaffold is an open-source, robust framework designed to accelerate the development and deployment of decentralized applications (DApps) on any EVM platform. It equips developers with essential tools and frameworks, making the initial steps of building a DApp straightforward and efficient.
Getting Started
Prerequisites
Before you begin, make sure you have the following installed:
Installation
You can quickly set up a new project using the command below:
npx ultimate-scaffold-dapp@latest create
Or, for pnpm users:
pnpm dlx ultimate-scaffold-dapp@latest create
Or, with yarn:
yarn dlx ultimate-scaffold-dapp@latest createKey Components
The scaffold supports the following frameworks:
- Frontend Framework:
- Next.js
- Wagmi (for wallet connection)
- Viem (for blockchain interactions)
- RainbowKit (for wallet UI)
- Typescript (default)
- Backend Framework:
- Hardhat
- Javascript (default) or TypeScript
Usage
Follow these steps to create and configure your DApp project:
- Run the CLI Tool: Use the create command to scaffold a project:
npx ultimate-scaffold-dapp@latest createSelect Front-End and Smart Contract Frameworks: During the setup, you'll choose from available frameworks:
- Frontend: Next.js (with TypeScript)
- Smart Contracts: Hardhat (JavaScript/TypeScript)
Project Configuration: Provide a namefor your project, which will be used to set up the directory structure.
Install Dependencies: Navigate to the project directory and install dependencies using your preferred package manager:
pnpm installyarn installnpm install- Start the Project: Run the following command to start the development server:
pnpm installyarn installnpm install- Compile and deploy the smart contracts:
pnpm hardhat copilepnpm hardhat run scripts/deploy.jsAdvanced Configuration
Generated projects include a package.json file tailored for your project. You can modify the following as needed:
- Add more scripts for testing, building, or deploying.
- Customize configuration files like hardhat.config.js or tsconfig.json.
CLI Commands
The CLI offers the following commands:
npx ultimate-scaffold-dapp createnpx ultimate-scaffold-dapp deploynpx ultimate-scaffold-dapp --helpSample scripts for Your Project
Here’s an example of scripts that will be included in your package.json:
"scripts": {
"frontend:dev": "yarn workspace @ultimate-scaffold/next-ts dev",
"frontend:build": "yarn workspace @ultimate-scaffold/next-ts build",
"frontend:start": "yarn workspace @ultimate-scaffold/next-ts start",
"hardhat:compile": "yarn workspace @ultimate-scaffold/hardhat-ts compile",
"hardhat:test": "yarn workspace @ultimate-scaffold/hardhat-ts test",
"hardhat:deploy": "yarn workspace @ultimate-scaffold/hardhat-ts run scripts/deploy.js"
}Support and Contribution
For issues, suggestions, or contributions, please visit our GitHub repository.
👉 GitHub Repository
Additional Notes
- If your project setup does not involve web development, modifications like
netlify.tomlmight be unnecessary. - Projects such as those developed with Flutter might not utilize a
package.json.
Maintainers
- @Jordan-type
- @Ronexlemon
- @anthonykimani
License
This project is licensed under the MIT License.
Using the CLI
- additionally you can scaffold a project easily by using the command
npx ultimate-scaffold-dapp@latest createnpx ultimate-scaffold-dapp
Happy Coding! 🎉
Key Updates
- Replaced
liskreferences withultimateto align with the scaffold's branding. - Updated CLI commands and sample
package.jsonscripts. - Added support for multiple package managers (
pnpm,yarn,npm). - Streamlined the sections for improved readability and usability.
Let me know if you'd like further modifications! 🚀
