Skip to content

Commit

Permalink
Merge pull request #1743 from Ankr-network/stage
Browse files Browse the repository at this point in the history
feat: DOCS-787 RaaS no-code custom gas token
  • Loading branch information
galleon8 authored Nov 11, 2024
2 parents 56237d3 + 196df01 commit 63ff5dc
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions pages/scaling-services-nocode-deployer.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ To deploy a rollup using a Testnet network, follow these steps:
<img src="/docs/scale/rollup-name.png" class="responsive-pic" width="500" />
* **Gas Token**
* **ETH**: Use ETH to pay your network's gas fees.
* **Custom Gas Token** (If DA layer = AnyTrust): For gas fees, use your [custom ERC-20 token](/scaling-services-nocode-deployer/#custom-gas-token) created and deployed on the network.
* **Custom Gas Token** (if `Arbitrum Stack + AnyTrust DA` or `OP Stack + Ethereum DA` combinations selected): For gas fees, use your [custom ERC-20 token](/scaling-services-nocode-deployer/#custom-gas-token) created and deployed on the network.
<img src="/docs/scale/gas-token.png" class="responsive-pic" width="500" />
5. On the **Infrastructure** tab, check the components included in the Starter package, and then click **Confirm**.
<img src="/docs/scale/infra-package.png" class="responsive-pic" width="700" />
Expand Down Expand Up @@ -88,7 +88,7 @@ To deploy a rollup using a Mainnet network, follow these steps:
<img src="/docs/scale/rollup-name.png" class="responsive-pic" width="500" />
* **Gas Token**
* **ETH**: Use ETH to pay your network's gas fees.
* **Custom Gas Token** (If DA layer = AnyTrust): For gas fees, use your [custom ERC-20 token](/scaling-services-nocode-deployer/#custom-gas-token) created and deployed on the network.
* **Custom Gas Token** (if `Arbitrum Stack + AnyTrust DA` or `OP Stack + Ethereum DA` combinations selected): For gas fees, use your [custom ERC-20 token](/scaling-services-nocode-deployer/#custom-gas-token) created and deployed on the network.
<img src="/docs/scale/gas-token.png" class="responsive-pic" width="500" />
6. On the **Infrastructure** tab, check the components included in your package, and then click **Confirm**.
<img src="/docs/scale/mainnet-infra-package.png" class="responsive-pic" width="700" />
Expand All @@ -102,9 +102,11 @@ Congrats — you've just configured and deployed your Mainnet rollup!

## Custom Gas Token

Deploying your AnyTrust Orbit chain, you have the option of using a custom gas token, other than ETH, for gas payments on the network. When choosing this option, there are certain requirements that the token needs to comply with.
Deploying your AnyTrust Orbit chain or OP Stack chain, you have the option of using a custom gas token, other than ETH, for gas payments on the network. When choosing this option, there are certain requirements that the token needs to comply with.

### Requirements
### AnyTrust Orbit chain

**Requirements**

A custom gas token must meet the following requirements:

Expand All @@ -121,6 +123,23 @@ A custom gas token must meet the following requirements:
* The token must not have a callback on transfer.
* Users must not be able to make a transfer to themselves that results in a revert.

### OP Stack chain

**Requirements**

The custom gas token must adhere to the following constraints:

* 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.

## Arbitrum Bridge Setup

You might be interested in how-tos for the following scenarios:
Expand Down

0 comments on commit 63ff5dc

Please sign in to comment.