Skip to content

Update README.md #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions builders/depin/ioid-step-by-step-tutorial/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,6 @@ Take note of your `Project ID` and set it as an environment variable:
export PROJECT_ID=YOUR_PROJECT_ID
```

Bind the Device NFT to your Project ID

```
ioctl ioid device $DEVICE_NFT -p $PROJECT_ID
```

Reserve a few ioID for your project (10 in the example command below):

```
Expand Down
7 changes: 3 additions & 4 deletions builders/web3-development/set-up-your-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Setting up your development environment for IoTeX involves choosing the right Web3 tools and frameworks to streamline your workflow. 

Popular options include [Hardhat](https://hardhat.org/), [Truffle](https://www.trufflesuite.com/), and [Brownie](https://eth-brownie.readthedocs.io/en/stable/). These frameworks offer robust Dapp testing, deployment, and debugging capabilities. Once you are ready to deploy your smart contracts to the testnet or mainnet, you simply need to change the RPC endpoint in your tools configuration. 
Popular options include [Hardhat](https://hardhat.org/), [Foundry (Forge)](https://getfoundry.sh/), and [ApeFramework](https://www.apeworx.io/framework/). These frameworks offer robust Dapp testing, deployment, and debugging capabilities. Once you are ready to deploy your smart contracts to the testnet or mainnet, you simply need to change the RPC endpoint in your tools configuration. 

[→ See IoTeX RPC Endpoints (full-node)](rpc-endpoints.md)

Expand All @@ -19,9 +19,8 @@ For detailed tutorials and guides on building and deploying smart contracts on I
## Development Frameworks

1. [**Hardhat**](https://hardhat.org/): A flexible and extensible framework that helps developers compile, deploy, test, and debug their Ethereum software.
2. [**Truffle**](https://www.trufflesuite.com/): A development environment, testing framework, and asset pipeline for Ethereum, aimed at making life as an Ethereum developer easier.
3. [**Brownie**](https://eth-brownie.readthedocs.io/en/stable/): A Python-based development and testing framework for smart contracts targeting the Ethereum Virtual Machine (EVM).
4. [**Foundry (Forge)**](https://getfoundry.sh/): A fast, portable, and modular toolkit for Ethereum application development. Forge is the command-line tool for Foundry, providing robust smart contract development and testing capabilities.
2. [**ApeFramework**](https://www.apeworx.io/framework/): Ape Framework is an easy-to-use Web3 development tool. Users can compile, test, and interact with smart contracts all in one command line session. Ape supports multiple contract languages and chains.
3. [**Foundry (Forge)**](https://getfoundry.sh/): A fast, portable, and modular toolkit for Ethereum application development. Forge is the command-line tool for Foundry, providing robust smart contract development and testing capabilities.

## Integrated Development Environments (IDEs)

Expand Down