For the complete documentation index, see llms.txt. This page is also available as Markdown.

Write Your First Token

This guide will walk you through the process of creating and deploying your first token on the Pharos blockchain. By the end of this guide, you will have a fully functional token contract and understand how to interact with it.

Prerequisites

Before you begin, ensure you have the following:

  • Git: Used for code management and obtain examples.

  • Node.js: Install it from nodejs.org.

  • Pharos Devnet/Testnet Access: Access to a Pharos node (local or remote) for interacting with the blockchain.

Setup 1: Install Foundry

Setup 2: Set Up the Project

Clone the example repo:

git clone https://github.com/PharosNetwork/examples
cd examples/token/foundry/contract

Install OpenZeppelin Contracts:

  • Foundry uses forge to manage dependencies. Install OpenZeppelin contracts:

forge install OpenZeppelin/openzeppelin-contracts --no-git

Setup 3: Write the Token Contract

Create a New Solidity File:

  • Create a new file for your token contract:

Write the Token Contract:

  • Open src/Token.sol in your favorite text editor and add the following code:

Compile the Smart Contract:

  • Use forge to compile the contract:

Test the Smart Contract

  • Use forge to test the contract:

Step 4: Deploy the Token Contract

Create a Deployment Script:

  • Create a new file for the deployment script:

Write the Deployment Script:

  • Open script/DeployToken.s.sol and add the following code:

Set the private key:

Deploy the Contract:

  • Use forge to deploy the contract to the Pharos Testnet:

Step 5: Verify the Token Contract

  • For Atlantic Testnet

  • For Testnet

Note: Replace with your token contract address

Step 6: Interact with the Token Contract

Open script/InteractToken.s.sol and add the following code:

Execute the script using forge:

Troubleshooting

  • Contract Deployment Fails: Ensure you have enough testnet tokens to cover the deployment cost.

  • Interaction Issues: Verify that the contract address and ABI are correct.

  • Insufficient Balance: Ensure your wallet has enough tokens to transfer.

Next Steps

Now that you’ve created and deployed your first token using Foundry.

This guide provides a comprehensive introduction to creating and deploying a token on the Pharos blockchain using Foundry. If you encounter any issues, refer to the Troubleshooting section or consult the Foundry documentation. Happy building! 🚀

Last updated

Was this helpful?