You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
async def relay_bridge(account_id, key, proxy):
'''
Make bridge from zksync-era via Relay.link
Available chains: 'Ethereum', 'Optimism', 'Arbitrum', 'Base', 'Zora'
'''
amount = 0.000001
chain = 'Arbitrum'
relay = Relay(account_id, key, proxy)
await relay.bridge(chain, amount)
Add to def get_module() in main.py file this code:
result = questionary.select(
"Select a method to get started",
choices=[
...
Choice("52) MultiApprove", multi_approve),
Choice("53) Make bridge on Relay", relay_bridge),
Choice("54) Check transaction count", "tx_checker"),
Choice("55) Exit", "exit"),
],
...
Enjoy
The text was updated successfully, but these errors were encountered:
modules
folder and paste this code:modules_settingsy
file this code:def get_module()
inmain.py
file this code:The text was updated successfully, but these errors were encountered: