Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ Certain Orbit configurations and customizations require special handling of AEP

If you are an L3 or higher chain with a custom gas token, your custom gas token contract might be deployed on L2. If this L2 is not an Arbitrum chain, then the L2 token can't be transferred via the AEP Fee Router, as this would first require bridging down to Ethereum (impossible for L2-based tokens). In this instance, we recommend your chain pay fees in `ETH` by manually sending fees to an `ETH`-configured routing system.

If you've agreed with the Arbitrum Foundation to send your Custom Gas Token as payment you can use the following formula:

```
AEP_FEES = [ (L2BaseFee) + (L2SurplusFee) + (L1BaseFee * Daily_price_L1_to_L2_gas) + (L1SurplusFee * Daily_price_L1_to_L2_gas) - ((L1BaseFee * Daily_price_L1_to_L2_gas) + (AssertionCosts * Daily_price_L1_to_L2_gas) )] \* 0.1
```

### Non-Ethereum L1

If your Orbit chain is deployed on a non-Ethereum L1 (e.g., Solana, BNB Chain), your fees must be manually transferred to a Foundation-controlled address.
Expand Down