> For the complete documentation index, see [llms.txt](https://docs.load.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.load.network/using-load-network/miscellaneous/deploying-an-erc20.md).

# Deploying an ERC20

### **Add Load Network Alphanet to MetaMask**

Before deploying, make sure the Load Network network is configured in your MetaMask wallet. [Check the Network Configurations](/using-load-network/network-configurations.md).

### ERC20 Contract

For this example, we will use the ERC20 token template provided by the [OpenZeppelin's](https://docs.openzeppelin.com/contracts/4.x/erc20) smart contract library.

```solidity
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/// @title Useless Testing Token
/// @notice Just a testing shitcoin
/// @dev SupLoad gmgm
/// @author pepe frog
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract WeaveGM is ERC20 {
    constructor(uint256 initialSupply) ERC20("supLoad", "LOAD") {
        _mint(msg.sender, initialSupply);
    }
}
```

### Deployment

Now that you have your contract source code ready, compile the contract and hit deploy with an initial supply.

<figure><img src="/files/xUmvOdhKddC0C4QBL0Ud" alt=""><figcaption><p>69420 LOADs because why not</p></figcaption></figure>

After deploying the contract successfully, check your EOA balance!

<figure><img src="/files/YSnfiFxtGecP67T8jQsW" alt=""><figcaption><p>Success!</p></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.load.network/using-load-network/miscellaneous/deploying-an-erc20.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
