Skip to content

Commit

Permalink
chore: set true erc20 to 0x address temporary
Browse files Browse the repository at this point in the history
  • Loading branch information
vbrvk committed Aug 5, 2024
1 parent e30ad28 commit a0263d7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/deployments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import {Address, NetworkEnum} from '@1inch/fusion-sdk'

export const TRUE_ERC20 = {
// TODO: add correct addresses
[NetworkEnum.ETHEREUM]: Address.fromBigInt(1n),
[NetworkEnum.POLYGON]: Address.fromBigInt(1n),
[NetworkEnum.OPTIMISM]: Address.fromBigInt(1n),
[NetworkEnum.BINANCE]: Address.fromBigInt(1n),
[NetworkEnum.AVALANCHE]: Address.fromBigInt(1n),
[NetworkEnum.COINBASE]: Address.fromBigInt(1n),
[NetworkEnum.FANTOM]: Address.fromBigInt(1n),
[NetworkEnum.GNOSIS]: Address.fromBigInt(1n),
[NetworkEnum.ARBITRUM]: Address.fromBigInt(1n)
[NetworkEnum.ETHEREUM]: Address.fromBigInt(0n),
[NetworkEnum.POLYGON]: Address.fromBigInt(0n),
[NetworkEnum.OPTIMISM]: Address.fromBigInt(0n),
[NetworkEnum.BINANCE]: Address.fromBigInt(0n),
[NetworkEnum.AVALANCHE]: Address.fromBigInt(0n),
[NetworkEnum.COINBASE]: Address.fromBigInt(0n),
[NetworkEnum.FANTOM]: Address.fromBigInt(0n),
[NetworkEnum.GNOSIS]: Address.fromBigInt(0n),
[NetworkEnum.ARBITRUM]: Address.fromBigInt(0n)
}

// todo: update with real contract addresses
Expand Down

0 comments on commit a0263d7

Please sign in to comment.