Builders
Chain Operators
Chain Features
Run a Custom Gas Token Chain

How to Run a Custom Gas Token Chain

⚠️

The Custom Gas Token feature is a Beta feature of the MIT licensed OP Stack. While it has received initial review from core contributors, it is still undergoing testing, and may have bugs or other issues.

This guide provides a walkthrough for chain operators who want to run a custom gas token chain. See the Custom Gas Token Explainer for a general overview of this OP Stack feature. An OP Stack chain that uses the custom gas token feature enables an end user to deposit an L1 native ERC20 token into L2 where that asset is minted as the native L2 asset and can be used to pay for gas on L2.

Deploying Your Contracts

🚫

Be sure to check out this tag or you will not deploy a chain that uses custom gas token!

  • Update the deploy config in contracts-bedrock/deploy-config with new fields: useCustomGasToken and customGasTokenAddress

  • Set useCustomGasToken to true. If you set useCustomGasToken to false (it defaults this way), then it will use ETH as the gas paying token.

  • Set customGasTokenAddress to the contract address of an L1 ERC20 token you wish to use as the gas token on your L2. The ERC20 should already be deployed before trying to spin up the custom gas token chain.

The custom gas token being set must meet the following criteria:

  • must be a valid ERC-20 token
  • the number of decimals on the token MUST be exactly 18
  • the name of the token MUST be less than or equal to 32 bytes
  • symbol MUST be less than or equal to 32 bytes.
  • must not be yield-bearing
  • cannot be rebasing or have a transfer fee
  • must be transferrable only via a call to the token address itself
  • must only be able to set allowance via a call to the token address itself
  • must not have a callback on transfer, and more generally a user must not be able to make a transfer to themselves revert
  • a user must not be able to make a transfer have unexpected side effects
⚠️

You will NOT be able to change the address of the custom gas token after it is set during deployment.

DEPLOYMENT_OUTFILE=deployments/artifact.json \
DEPLOY_CONFIG_PATH=<PATH_TO_MY_DEPLOY_CONFIG> \
  forge script scripts/Deploy.s.sol:Deploy \
  --broadcast --private-key $PRIVATE_KEY \
  --rpc-url $ETH_RPC_URL
  • DEPLOYMENT_OUTFILE is the path to the file at which the L1 contract deployment artifacts are written to after deployment. Foundry has filesystem restrictions for security, so make this file a child of the deployments directory. This file will contain key/value pairs of the names and addresses of the deployed contracts.
  • DEPLOY_CONFIG_PATH is the path to the file for the deploy config used to deploy

Generating L2 Allocs

Be sure to use the same tag that you used to deploy the L1 contracts.

A forge script is used to generate the L2 genesis. It is a requirement that the L1 contracts have been deployed before generating the L2 genesis, since some L1 contract addresses are embedded into the L2 genesis.

CONTRACT_ADDRESSES_PATH=deployments/artifact.json \
DEPLOY_CONFIG_PATH=<PATH_TO_MY_DEPLOY_CONFIG> \
STATE_DUMP_PATH=<PATH_TO_WRITE_L2_ALLOCS> \
  forge script scripts/L2Genesis.s.sol:L2Genesis \
  --sig 'runWithStateDump()' --chain-id $L2_CHAIN_ID

To generate L2 Allocs, it is assumed that:

  • You have the L1 contracts artifact, specified with DEPLOYMENT_OUTFILE
  • CONTRACT_ADDRESSES_PATH is the path to the deployment artifact from deploying the L1 contracts in the first step, aka DEPLOYMENT_OUTFILE
  • DEPLOY_CONFIG_PATH is the path to the file for the deploy config used to deploy
  • STATE_DUMP_PATH is a path to the generated L2 allocs file, this is the genesis state and is required for the next step.

Generating L2 Genesis

The op-node is used to generate the final L2 genesis file. It takes the allocs created by the forge script as input for the --l2-allocs flag.

op-node genesis l2 \
  --l1-rpc $ETH_RPC_URL \
  --deploy-config <PATH_TO_MY_DEPLOY_CONFIG> \
  --l2-allocs <PATH_TO_L2_ALLOCS> \
  --l1-deployments <PATH_TO_L1_DEPLOY_ARTIFACT> \
  --outfile.l2 <PATH_TO_WRITE_L2_GENESIS> \
  --outfile.rollup <PATH_TO_WRITE_OP_NODE_CONFIG>

Spinning Up Your Infrastructure

Ensure that the end to end system is running.

Validating your deployment

This calls the WETH predeploy which should be considered wrapped native asset in the context of custom gas token. It should return the name of the token prefixed by "Wrapped "

cast call --rpc-url $L2_ETH_RPC_URL 0x4200000000000000000000000000000000000006 'name()(string)'

This calls the L1Block predeploy should return true.

cast call --rpc-url $L2_ETH_RPC_URL 0x4200000000000000000000000000000000000015 'isCustomGasToken()(bool)

This calls the L1 SystemConfig contract and should return true.

cast call --rpc-url $L1_ETH_RPC_URL <SYSTEM_CONFIG_ADDRESS> 'isCustomGasToken()(bool)

Depositing Custom Gas Token into the Chain

  • To deposit the custom gas token into the chain, users must use the OptimismPortalProxy.depositERC20Transaction method
  • Users MUST first approve() the OptimismPortal before they can deposit tokens using depositERC20Transaction.
function depositERC20Transaction(
    address _to,
    uint256 _mint,
    uint256 _value,
    uint64 _gasLimit,
    bool _isCreation,
    bytes memory _data
) public;

Withdrawing Custom Gas Tokens out of the Chain

  • To withdraw your native custom gas token from the chain, users must use the L2ToL1MessagePasser.initiateWithdrawal method. Proving and finalizing withdrawals is identical to the process on chains that use ETH as the native gas token.
function initiateWithdrawal(
    address _target,
    uint256 _gasLimit,
    bytes memory _data
) public payable;

Next Steps