Skip to content

Commit

Permalink
Added unichain routes
Browse files Browse the repository at this point in the history
  • Loading branch information
smeshny committed Nov 28, 2024
1 parent ab58e33 commit 44c4642
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions utils/route_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@
swap_uniswap_custom : (swap_uniswap_custom, 2, 'Uniswap swap', 1, [3]),
swap_sushiswap : (swap_sushiswap, 2, 'SushiSwap swap', 1, [2, 3]),
swap_bridged_usdc : (swap_bridged_usdc, 2, 'Swap USDC to Bridged', 0, [0]),
wrap_eth : (wrap_eth, 2, 'Wrap ETH', 0, []),
unwrap_eth : (unwrap_eth, 2, 'Unwrap ETH', 0, []),
random_approve : (random_approve, 2, 'Random approve', 0, []),
smart_random_approve : (smart_random_approve, 2, 'Smart random approve', 0, []),
disable_collateral_basilisk : (disable_collateral_basilisk, 3, 'Disable Basilisk collateral', 1, [11]),
Expand Down Expand Up @@ -153,8 +151,6 @@
send_message_dmail : (send_message_dmail, 2, 'Dmail message', 1, [3, 4, 8, 9, 11]),
send_message_l2telegraph : (send_message_l2telegraph, 2, 'L2Telegraph message', 0, []),
bingx_transfer : (bingx_transfer, 2, 'BingX transfer', 0, []),
transfer_eth : (transfer_eth, 2, 'Transfer ETH', 0, []),
transfer_eth_to_myself : (transfer_eth_to_myself, 2, 'Transfer ETH to myself', 0, []),
withdraw_liquidity_maverick : (withdraw_liquidity_maverick, 3, 'Maverick withdraw', 0, []),
withdraw_liquidity_mute : (withdraw_liquidity_mute, 3, 'Mute withdraw', 0, []),
withdraw_liquidity_syncswap : (withdraw_liquidity_syncswap, 3, 'SyncSwap withdraw', 0, []),
Expand All @@ -175,6 +171,19 @@
bingx_deposit : (bingx_deposit, 5, 'Bingx deposit', 0, []),
binance_deposit : (binance_deposit, 5, 'Binance deposit', 0, []),
bitget_deposit : (bitget_deposit, 5, 'BitGet deposit', 0, []),

# Unichain
testnet_bridge : (testnet_bridge, 5, 'Testnetbridge ARB/OPT to ETH Sepolia', 0, [1, 7]),
bridge_gg_sep_to_uni : (bridge_gg_sep_to_uni, 5, 'Bridge GG Sepolia to Unichain', 0, [101]),
superbridge_sep_to_uni : (superbridge_sep_to_uni, 5, 'Superbridge Sepolia to Unichain', 0, [101]),
transfer_eth : (transfer_eth, 2, 'Transfer ETH', 0, [102]),
transfer_eth_to_myself : (transfer_eth_to_myself, 2, 'Transfer ETH to myself', 0, [102]),
wrap_eth : (wrap_eth, 2, 'Wrap ETH', 0, [102]),
unwrap_eth : (unwrap_eth, 2, 'Unwrap ETH', 0, [102]),
deploy_erc20_contract : (deploy_erc20_contract, 5, 'Deploy Unichain ERC20 contract', 0, [102]),
deploy_erc721_contract : (deploy_erc721_contract, 5, 'Deploy Unichain ERC721 contract', 0, [102]),
interact_erc20 : (interact_erc20, 5, 'Interact with Unichain ERC20', 0, [102]),
interact_erc721 : (interact_erc721, 5, 'Interact with Unichain ERC721', 0, [102]),
}


Expand Down

0 comments on commit 44c4642

Please sign in to comment.