Skip to content

Commit

Permalink
fix: non-eth chain
Browse files Browse the repository at this point in the history
Signed-off-by: james-a-morris <[email protected]>
  • Loading branch information
james-a-morris committed Nov 16, 2024
1 parent 6f15caf commit 5705900
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,11 @@ export function getChainInfo(chainId: number): ChainInfo {
}

// For destination chains with no native ETH support, we will send WETH even if the receiver is an EOA
// TODO: add Aleph Zero here
export const nonEthChains = [ChainId.POLYGON, ChainId.POLYGON_AMOY];
export const nonEthChains = [
ChainId.POLYGON,
ChainId.POLYGON_AMOY,
ChainId.ALEPH_ZERO,
];

export const tokenTable = Object.fromEntries(
tokenList.map((token) => {
Expand Down

0 comments on commit 5705900

Please sign in to comment.