Skip to content

Commit 39811df

Browse files
committed
add to scaffold readme
1 parent 91446f5 commit 39811df

File tree

2 files changed

+90
-87
lines changed

2 files changed

+90
-87
lines changed

README.md

Lines changed: 2 additions & 87 deletions
Original file line numberDiff line numberDiff line change
@@ -2,91 +2,6 @@
22

33
Experiment project to test how we can use web3 to benefit small-scale organic farmers.
44

5-
# 🏗 Scaffold-ETH 2
5+
# Scaffold-Eth-2
66

7-
<h4 align="center">
8-
<a href="https://docs.scaffoldeth.io">Documentation</a> |
9-
<a href="https://scaffoldeth.io">Website</a>
10-
</h4>
11-
12-
🧪 An open-source, up-to-date toolkit for building decentralized applications (dapps) on the Ethereum blockchain. It's designed to make it easier for developers to create and deploy smart contracts and build user interfaces that interact with those contracts.
13-
14-
⚙️ Built using NextJS, RainbowKit, Foundry/Hardhat, Wagmi, Viem, and Typescript.
15-
16-
-**Contract Hot Reload**: Your frontend auto-adapts to your smart contract as you edit it.
17-
- 🪝 **[Custom hooks](https://docs.scaffoldeth.io/hooks/)**: Collection of React hooks wrapper around [wagmi](https://wagmi.sh/) to simplify interactions with smart contracts with typescript autocompletion.
18-
- 🧱 [**Components**](https://docs.scaffoldeth.io/components/): Collection of common web3 components to quickly build your frontend.
19-
- 🔥 **Burner Wallet & Local Faucet**: Quickly test your application with a burner wallet and local faucet.
20-
- 🔐 **Integration with Wallet Providers**: Connect to different wallet providers and interact with the Ethereum network.
21-
22-
![Debug Contracts tab](https://github.com/scaffold-eth/scaffold-eth-2/assets/55535804/b237af0c-5027-4849-a5c1-2e31495cccb1)
23-
24-
## Requirements
25-
26-
Before you begin, you need to install the following tools:
27-
28-
- [Node (>= v18.18)](https://nodejs.org/en/download/)
29-
- Yarn ([v1](https://classic.yarnpkg.com/en/docs/install/) or [v2+](https://yarnpkg.com/getting-started/install))
30-
- [Git](https://git-scm.com/downloads)
31-
32-
## Quickstart
33-
34-
To get started with Scaffold-ETH 2, follow the steps below:
35-
36-
1. Install the latest version of Scaffold-ETH 2
37-
38-
```
39-
npx create-eth@latest
40-
```
41-
42-
This command will install all the necessary packages and dependencies, so it might take a while.
43-
44-
> [!NOTE]
45-
> You can also initialize your project with one of our extensions to add specific features or starter-kits. Learn more in our [extensions documentation](https://docs.scaffoldeth.io/extensions/).
46-
47-
2. Run a local network in the first terminal:
48-
49-
```
50-
yarn chain
51-
```
52-
53-
This command starts a local Ethereum network that runs on your local machine and can be used for testing and development. Learn how to [customize your network configuration](https://docs.scaffoldeth.io/quick-start/environment#1-initialize-a-local-blockchain).
54-
55-
3. On a second terminal, deploy the test contract:
56-
57-
```
58-
yarn deploy
59-
```
60-
61-
This command deploys a test smart contract to the local network. You can find more information about how to customize your contract and deployment script in our [documentation](https://docs.scaffoldeth.io/quick-start/environment#2-deploy-your-smart-contract).
62-
63-
4. On a third terminal, start your NextJS app:
64-
65-
```
66-
yarn start
67-
```
68-
69-
Visit your app on: `http://localhost:3000`. You can interact with your smart contract using the `Debug Contracts` page. You can tweak the app config in `packages/nextjs/scaffold.config.ts`.
70-
71-
**What's next**:
72-
73-
Visit the [What's next section of our docs](https://docs.scaffoldeth.io/quick-start/environment#whats-next) to learn how to:
74-
75-
- Edit your smart contracts
76-
- Edit your deployment scripts
77-
- Customize your frontend
78-
- Edit the app config
79-
- Writing and running tests
80-
- [Setting up external services and API keys](https://docs.scaffoldeth.io/deploying/deploy-smart-contracts#configuration-of-third-party-services-for-production-grade-apps)
81-
82-
## Documentation
83-
84-
Visit our [docs](https://docs.scaffoldeth.io) to learn all the technical details and guides of Scaffold-ETH 2.
85-
86-
To know more about its features, check out our [website](https://scaffoldeth.io).
87-
88-
## Contributing to Scaffold-ETH 2
89-
90-
We welcome contributions to Scaffold-ETH 2!
91-
92-
Please see [CONTRIBUTING.MD](https://github.com/scaffold-eth/scaffold-eth-2/blob/main/CONTRIBUTING.md) for more information and guidelines for contributing to Scaffold-ETH 2.
7+
The project is generated from scaffold-eth-2. See the docs (here)[] for how to use it.

SCAFFOLD-ETH-2.md

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
# 🏗 Scaffold-ETH 2
2+
3+
<h4 align="center">
4+
<a href="https://docs.scaffoldeth.io">Documentation</a> |
5+
<a href="https://scaffoldeth.io">Website</a>
6+
</h4>
7+
8+
🧪 An open-source, up-to-date toolkit for building decentralized applications (dapps) on the Ethereum blockchain. It's designed to make it easier for developers to create and deploy smart contracts and build user interfaces that interact with those contracts.
9+
10+
⚙️ Built using NextJS, RainbowKit, Foundry/Hardhat, Wagmi, Viem, and Typescript.
11+
12+
-**Contract Hot Reload**: Your frontend auto-adapts to your smart contract as you edit it.
13+
- 🪝 **[Custom hooks](https://docs.scaffoldeth.io/hooks/)**: Collection of React hooks wrapper around [wagmi](https://wagmi.sh/) to simplify interactions with smart contracts with typescript autocompletion.
14+
- 🧱 [**Components**](https://docs.scaffoldeth.io/components/): Collection of common web3 components to quickly build your frontend.
15+
- 🔥 **Burner Wallet & Local Faucet**: Quickly test your application with a burner wallet and local faucet.
16+
- 🔐 **Integration with Wallet Providers**: Connect to different wallet providers and interact with the Ethereum network.
17+
18+
![Debug Contracts tab](https://github.com/scaffold-eth/scaffold-eth-2/assets/55535804/b237af0c-5027-4849-a5c1-2e31495cccb1)
19+
20+
## Requirements
21+
22+
Before you begin, you need to install the following tools:
23+
24+
- [Node (>= v18.18)](https://nodejs.org/en/download/)
25+
- Yarn ([v1](https://classic.yarnpkg.com/en/docs/install/) or [v2+](https://yarnpkg.com/getting-started/install))
26+
- [Git](https://git-scm.com/downloads)
27+
28+
## Quickstart
29+
30+
To get started with Scaffold-ETH 2, follow the steps below:
31+
32+
1. Install the latest version of Scaffold-ETH 2
33+
34+
```
35+
npx create-eth@latest
36+
```
37+
38+
This command will install all the necessary packages and dependencies, so it might take a while.
39+
40+
> [!NOTE]
41+
> You can also initialize your project with one of our extensions to add specific features or starter-kits. Learn more in our [extensions documentation](https://docs.scaffoldeth.io/extensions/).
42+
43+
2. Run a local network in the first terminal:
44+
45+
```
46+
yarn chain
47+
```
48+
49+
This command starts a local Ethereum network that runs on your local machine and can be used for testing and development. Learn how to [customize your network configuration](https://docs.scaffoldeth.io/quick-start/environment#1-initialize-a-local-blockchain).
50+
51+
3. On a second terminal, deploy the test contract:
52+
53+
```
54+
yarn deploy
55+
```
56+
57+
This command deploys a test smart contract to the local network. You can find more information about how to customize your contract and deployment script in our [documentation](https://docs.scaffoldeth.io/quick-start/environment#2-deploy-your-smart-contract).
58+
59+
4. On a third terminal, start your NextJS app:
60+
61+
```
62+
yarn start
63+
```
64+
65+
Visit your app on: `http://localhost:3000`. You can interact with your smart contract using the `Debug Contracts` page. You can tweak the app config in `packages/nextjs/scaffold.config.ts`.
66+
67+
**What's next**:
68+
69+
Visit the [What's next section of our docs](https://docs.scaffoldeth.io/quick-start/environment#whats-next) to learn how to:
70+
71+
- Edit your smart contracts
72+
- Edit your deployment scripts
73+
- Customize your frontend
74+
- Edit the app config
75+
- Writing and running tests
76+
- [Setting up external services and API keys](https://docs.scaffoldeth.io/deploying/deploy-smart-contracts#configuration-of-third-party-services-for-production-grade-apps)
77+
78+
## Documentation
79+
80+
Visit our [docs](https://docs.scaffoldeth.io) to learn all the technical details and guides of Scaffold-ETH 2.
81+
82+
To know more about its features, check out our [website](https://scaffoldeth.io).
83+
84+
## Contributing to Scaffold-ETH 2
85+
86+
We welcome contributions to Scaffold-ETH 2!
87+
88+
Please see [CONTRIBUTING.MD](https://github.com/scaffold-eth/scaffold-eth-2/blob/main/CONTRIBUTING.md) for more information and guidelines for contributing to Scaffold-ETH 2.

0 commit comments

Comments
 (0)