DEV Community

Cover image for Deploying a smart contract to Abstract using Foundry
Taylor Caldwell
Taylor Caldwell

Posted on

Deploying a smart contract to Abstract using Foundry

This article will provide an overview of the Foundry development toolchain, and show you how to deploy a contract to Abstract Sepolia testnet.

Foundry is a powerful suite of tools to develop, test, and debug your smart contracts. It comprises several individual tools:

  • forge: the main workhorse of Foundry — for developing, testing, compiling, and deploying smart contracts
  • cast: a command-line tool for performing Ethereum RPC calls (e.g., interacting with contracts, sending transactions, and getting onchain data)
  • anvil: a local testnet node, for testing contract behavior from a frontend or over RPC
  • chisel: a Solidity REPL, for trying out Solidity snippets on a local or forked network

Foundry offers extremely fast feedback loops (due to the under-the-hood Rust implementation) and less context switching — because you'll be writing your contracts, tests, and deployment scripts All in Solidity!

Info: For production / mainnet deployments the steps below in this tutorial will be almost identical, however, you'll want to ensure that you've configured Abstract (mainnet) as the network rather than Abstract Sepolia (testnet).


Objectives

By the end of this tutorial, you should be able to do the following:

  • Setup Foundry for Abstract
  • Create an NFT smart contract for Abstract
  • Compile a smart contract for Abstract (using forge)
  • Deploy a smart contract to Abstract (also with forge)
  • Interact with a smart contract deployed on Abstract (using cast)

Prerequisites

Foundry

This tutorial requires you have Foundry installed.

  • From the command-line (terminal), run: curl -L https://foundry.paradigm.xyz | bash
  • Then run foundryup, to install the latest (nightly) build of Foundry

For more information, see the Foundry Book installation guide.

Metamask Wallet

In order to deploy a smart contract, you will first need a crypto wallet. You can create a wallet by downloading the Metamask browser extension.

Wallet funds

Deploying contracts to the blockchain requires a gas fee. Therefore, you will need to fund your wallet with ETH to cover those gas fees.

For this tutorial, you will be deploying a contract to the Abstract Sepolia test network. You can fund your wallet with Abstract Sepolia ETH using a bridge or faucet.


Creating a project

Before you can begin deploying smart contracts to Abstract, you need to set up your development environment by creating a Foundry project.

To create a new Foundry project, first create a new directory:

mkdir myproject
Enter fullscreen mode Exit fullscreen mode

Then run:

cd myproject
forge init
Enter fullscreen mode Exit fullscreen mode

This will create a Foundry project, which has the following basic layout:

.
├── foundry.toml
├── script
 │   └── Counter.s.sol
├── src
 │   └── Counter.sol
└── test
    └── Counter.t.sol
Enter fullscreen mode Exit fullscreen mode

Compiling the smart contract

Below is a simple NFT smart contract (ERC-721) written in the Solidity programming language:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;

import "openzeppelin-contracts/contracts/token/ERC721/ERC721.sol";

contract NFT is ERC721 {
    uint256 public currentTokenId;

    constructor() ERC721("NFT Name", "NFT") {}

    function mint(address recipient) public payable returns (uint256) {
        uint256 newItemId = ++currentTokenId;
        _safeMint(recipient, newItemId);
        return newItemId;
    }
}
Enter fullscreen mode Exit fullscreen mode

The Solidity code above defines a smart contract named NFT. The code uses the ERC721 interface provided by the OpenZeppelin Contracts library to create an NFT smart contract. OpenZeppelin allows developers to leverage battle-tested smart contract implementations that adhere to official ERC standards.

To add the OpenZeppelin Contracts library to your project, run:

forge install openzeppelin/openzeppelin-contracts
Enter fullscreen mode Exit fullscreen mode

In your project, delete the src/Counter.sol contract that was generated with the project and add the above code in a new file called src/NFT.sol. (You can also delete the test/Counter.t.sol and script/Counter.s.sol files, but you should add your own tests ASAP!).

To compile our basic NFT contract using Foundry, run:

forge build
Enter fullscreen mode Exit fullscreen mode

Configuring Foundry with Abstract

Next, you will configure your Foundry project to deploy smart contracts to the Abstract network. First you'll store your private key in an encrypted keystore, then you'll add Abstract as a network.

Storing your private key

The following command will import your private key to Foundry's secure keystore. You will be prompted to enter your private key, as well as a password for signing transactions:

cast wallet import deployer --interactive
Enter fullscreen mode Exit fullscreen mode

Caution: For instructions on how to get your private key from Metamask, visit the Metamask Support page. It is critical that you do NOT commit this to a public repo.

Run this command to confirm that the 'deployer' account is setup in Foundry:

cast wallet list
Enter fullscreen mode Exit fullscreen mode

Adding Abstract as a network

When verifying a contract with AbsScan, you need an API key. You can get your AbsScan API key from here after you sign up for an account.

Caution: Although they're made by the same folks, Etherscan API keys will not work on AbsScan!

Now create a .env file in the home directory of your project to add the Abstract network and an API key for verifying your contract on AbsScan:

ABSTRACT_MAINNET_RPC="https://api.mainnet.abs.xyz"
ABSTRACT_TESTNET_RPC="https://api.testnet.abs.xyz"
ETHERSCAN_API_KEY="<YOUR API KEY>"
Enter fullscreen mode Exit fullscreen mode

Note: Even though you're using AbsScan your block explorer, Foundry expects the API key to be defined as ETHERSCAN_API_KEY.

Loading environment variables

Now that you've created the above .env file, run the following command to load the environment variables in the current command line session:

source .env
Enter fullscreen mode Exit fullscreen mode

Deploying the smart contract

With your contract compiled and your environment configured, you are ready to deploy to the Abstract Sepolia test network!

Today, you'll use the forge create command, which is a straightforward way to deploy a single contract at a time. In the future, you may want to look into forge script, which enables scripting onchain transactions and deploying more complex smart contract projects.

You'll need testnet ETH in your wallet. See the prerequisites if you haven't done that yet. Otherwise, the deployment attempt will fail.

To deploy the contract to the Abstract Sepolia test network, run the following command. You will be prompted to enter the password that you set earlier, when you imported your private key:

forge create ./src/NFT.sol:NFT --rpc-url $ABSTRACT_TESTNET_RPC --account deployer
Enter fullscreen mode Exit fullscreen mode

The contract will be deployed on the Abstract Sepolia test network. You can view the deployment status and contract by using a block explorer and searching for the address returned by your deploy script. If you've deployed an exact copy of the NFT contract above, it will already be verified and you'll be able to read and write to the contract using the web interface.

Info: If you'd like to deploy to mainnet, you'll modify the command like so:

forge create ./src/NFT.sol:NFT --rpc-url $ABSTRACT_MAINNET_RPC --account deployer
Enter fullscreen mode Exit fullscreen mode

Regardless of the network you're deploying to, if you're deploying a new or modified contract, you'll need to verify it.


Verifying the Smart Contract

In web3, it's considered best practice to verify your contracts so that users and other developers can inspect the source code, and be sure that it matches the deployed bytecode on the blockchain.

Further, if you want to allow others to interact with your contract using the block explorer, it first needs to be verified. The above contract has already been verified, so you should be able to view your version on a block explorer already, but we'll still walk through how to verify a contract on Abstract Sepolia testnet.

Info: Remember, you need an API key from AbsScan to verify your contracts. You can get your API key from the AbsScan site after you sign up for an account.

Grab the deployed address and run:

forge verify-contract <DEPLOYED_ADDRESS> ./src/NFT.sol:NFT --chain 11124 --watch
Enter fullscreen mode Exit fullscreen mode

You should see an output similar to:

Start verifying contract `0x1234567890ABCDEF01234567890ABCDEF0123456` deployed on abstract-testnet

Submitting verification for [src/NFT.sol:NFT] 0x1234567890ABCDEF01234567890ABCDEF0123456.
Submitted contract for verification:
        Response: `OK`
        https://sepolia.abscan.org/address/0x1234567890ABCDEF01234567890ABCDEF0123456
Contract verification status:
Response: `NOTOK`
Details: `Pending in queue`
Contract verification status:
Response: `OK`
Details: `Pass - Verified`
Contract successfully verified
Enter fullscreen mode Exit fullscreen mode

Search for your contract on AbsScan to confirm it is verified.

Info: You can't re-verify a contract identical to one that has already been verified. If you attempt to do so, such as verifying the above contract, you'll get an error similar to:

Start verifying contract `0x1234567890ABCDEF01234567890ABCDEF0123456` deployed on abstract-testnet

Contract [src/NFT.sol:NFT] "0x1234567890ABCDEF01234567890ABCDEF0123456" is already verified. Skipping verification.

Interacting with the Smart Contract

If you verified on AbsScan, you can use the Read Contract and Write Contract sections under the Contract tab to interact with the deployed contract. To use Write Contract, you'll need to connect your wallet first, by clicking the Connect to Web3 button (sometimes this can be a little finicky, and you'll need to click Connect twice before it shows your wallet is successfully connected).

To practice using the cast command-line tool which Foundry provides, you'll perform a call without publishing a transaction (a read), then sign and publish a transaction (a write).

Performing a call

A key component of the Foundry toolkit, cast enables us to interact with contracts, send transactions, and get onchain data using Ethereum RPC calls. First you will perform a call from your account, without publishing a transaction.

From the command-line, run:

cast call <DEPLOYED_ADDRESS> --rpc-url $ABSTRACT_TESTNET_RPC "balanceOf(address)" <YOUR_ADDRESS_HERE>
Enter fullscreen mode Exit fullscreen mode

You should receive 0x0000000000000000000000000000000000000000000000000000000000000000 in response, which equals 0 in hexadecimal. And that makes sense — while you've deployed the NFT contract, no NFTs have been minted yet and therefore your account's balance is zero.

Signing and publishing a transaction

Now, sign and publish a transaction, calling the mint(address) function on the NFT contract you just deployed.

Run the following command:

cast send <DEPLOYED_ADDRESS> --rpc-url=$ABSTRACT_TESTNET_RPC "mint(address)" <YOUR_ADDRESS_HERE> --account deployer
Enter fullscreen mode Exit fullscreen mode

Info: Note that in this cast send command, you had to include your private key, but this is not required for cast call, because that's for calling view-only contract functions and therefore you don't need to sign anything.

If successful, Foundry will respond with information about the transaction, including the blockNumber, gasUsed, and transactionHash.

Finally, let's confirm that you did indeed mint yourself one NFT. If you run the first cast call command again, you should see that your balance increased from 0 to 1:

cast call <DEPLOYED_ADDRESS> --rpc-url $ABSTRACT_TESTNET_RPC "balanceOf(address)" <YOUR_ADDRESS_HERE>
Enter fullscreen mode Exit fullscreen mode

And the response: 0x0000000000000000000000000000000000000000000000000000000000000001 (1 in hex) — congratulations, you deployed a contract and minted an NFT with Foundry!


Conclusion

Phew, that was a lot! You learned how to setup a project, deploy to Abstract, and interact with our smart contract using Foundry. The process is the same for real networks, just more expensive — and of course, you'll want to invest time and effort testing your contracts, to reduce the likelihood of user-impacting bugs before deploying.

For all things Foundry, check out the Foundry book, or head to the official Telegram dev chat or support chat.


Top comments (0)