├── .gitignore ├── README.md ├── config.py ├── data ├── abi │ ├── aave │ │ └── abi.json │ ├── bridge │ │ ├── deposit.json │ │ ├── oracle.json │ │ └── withdraw.json │ ├── dmail │ │ └── abi.json │ ├── erc20_abi.json │ ├── gnosis │ │ └── abi.json │ ├── l2pass │ │ └── abi.json │ ├── l2telegraph │ │ ├── bridge_nft.json │ │ └── send_message.json │ ├── layerbank │ │ └── abi.json │ ├── nft-origins │ │ └── abi.json │ ├── nft2me │ │ └── abi.json │ ├── omnisea │ │ └── abi.json │ ├── rubyscore │ │ └── abi.json │ ├── scroll │ │ └── weth.json │ ├── skydrome │ │ └── abi.json │ ├── syncswap │ │ ├── classic_pool.json │ │ ├── classic_pool_data.json │ │ └── router.json │ ├── zebra │ │ └── abi.json │ ├── zerius │ │ └── abi.json │ └── zkstars │ │ └── abi.json ├── deploy │ ├── abi.json │ └── bytecode.txt ├── okx_addresses.example.txt ├── rpc.json └── wallets.example.txt ├── main.py ├── modules ├── __init__.py ├── aave.py ├── account.py ├── automatic.py ├── deploy.py ├── dmail.py ├── l2pass.py ├── l2telegraph.py ├── layerbank.py ├── layerswap.py ├── nftorigins.py ├── nfts2me.py ├── nitro.py ├── okx.py ├── omnisea.py ├── orbiter.py ├── rubyscore.py ├── safe.py ├── scroll.py ├── skydrome.py ├── syncswap.py ├── xyswap.py ├── zebra.py ├── zerius.py └── zkstars.py ├── modules_settings.py ├── requirements.txt ├── settings.py └── utils ├── __init__.py ├── gas_checker.py ├── helpers.py └── sleeping.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/config.py -------------------------------------------------------------------------------- /data/abi/aave/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/aave/abi.json -------------------------------------------------------------------------------- /data/abi/bridge/deposit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/bridge/deposit.json -------------------------------------------------------------------------------- /data/abi/bridge/oracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/bridge/oracle.json -------------------------------------------------------------------------------- /data/abi/bridge/withdraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/bridge/withdraw.json -------------------------------------------------------------------------------- /data/abi/dmail/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/dmail/abi.json -------------------------------------------------------------------------------- /data/abi/erc20_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/erc20_abi.json -------------------------------------------------------------------------------- /data/abi/gnosis/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/gnosis/abi.json -------------------------------------------------------------------------------- /data/abi/l2pass/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/l2pass/abi.json -------------------------------------------------------------------------------- /data/abi/l2telegraph/bridge_nft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/l2telegraph/bridge_nft.json -------------------------------------------------------------------------------- /data/abi/l2telegraph/send_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/l2telegraph/send_message.json -------------------------------------------------------------------------------- /data/abi/layerbank/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/layerbank/abi.json -------------------------------------------------------------------------------- /data/abi/nft-origins/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/nft-origins/abi.json -------------------------------------------------------------------------------- /data/abi/nft2me/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/nft2me/abi.json -------------------------------------------------------------------------------- /data/abi/omnisea/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/omnisea/abi.json -------------------------------------------------------------------------------- /data/abi/rubyscore/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/rubyscore/abi.json -------------------------------------------------------------------------------- /data/abi/scroll/weth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/scroll/weth.json -------------------------------------------------------------------------------- /data/abi/skydrome/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/skydrome/abi.json -------------------------------------------------------------------------------- /data/abi/syncswap/classic_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/syncswap/classic_pool.json -------------------------------------------------------------------------------- /data/abi/syncswap/classic_pool_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/syncswap/classic_pool_data.json -------------------------------------------------------------------------------- /data/abi/syncswap/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/syncswap/router.json -------------------------------------------------------------------------------- /data/abi/zebra/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/zebra/abi.json -------------------------------------------------------------------------------- /data/abi/zerius/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/zerius/abi.json -------------------------------------------------------------------------------- /data/abi/zkstars/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/abi/zkstars/abi.json -------------------------------------------------------------------------------- /data/deploy/abi.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /data/deploy/bytecode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/deploy/bytecode.txt -------------------------------------------------------------------------------- /data/okx_addresses.example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/okx_addresses.example.txt -------------------------------------------------------------------------------- /data/rpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/rpc.json -------------------------------------------------------------------------------- /data/wallets.example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/data/wallets.example.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/main.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/aave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/aave.py -------------------------------------------------------------------------------- /modules/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/account.py -------------------------------------------------------------------------------- /modules/automatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/automatic.py -------------------------------------------------------------------------------- /modules/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/deploy.py -------------------------------------------------------------------------------- /modules/dmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/dmail.py -------------------------------------------------------------------------------- /modules/l2pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/l2pass.py -------------------------------------------------------------------------------- /modules/l2telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/l2telegraph.py -------------------------------------------------------------------------------- /modules/layerbank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/layerbank.py -------------------------------------------------------------------------------- /modules/layerswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/layerswap.py -------------------------------------------------------------------------------- /modules/nftorigins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/nftorigins.py -------------------------------------------------------------------------------- /modules/nfts2me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/nfts2me.py -------------------------------------------------------------------------------- /modules/nitro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/nitro.py -------------------------------------------------------------------------------- /modules/okx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/okx.py -------------------------------------------------------------------------------- /modules/omnisea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/omnisea.py -------------------------------------------------------------------------------- /modules/orbiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/orbiter.py -------------------------------------------------------------------------------- /modules/rubyscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/rubyscore.py -------------------------------------------------------------------------------- /modules/safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/safe.py -------------------------------------------------------------------------------- /modules/scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/scroll.py -------------------------------------------------------------------------------- /modules/skydrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/skydrome.py -------------------------------------------------------------------------------- /modules/syncswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/syncswap.py -------------------------------------------------------------------------------- /modules/xyswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/xyswap.py -------------------------------------------------------------------------------- /modules/zebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/zebra.py -------------------------------------------------------------------------------- /modules/zerius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/zerius.py -------------------------------------------------------------------------------- /modules/zkstars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules/zkstars.py -------------------------------------------------------------------------------- /modules_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/modules_settings.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/settings.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/gas_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/utils/gas_checker.py -------------------------------------------------------------------------------- /utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/utils/helpers.py -------------------------------------------------------------------------------- /utils/sleeping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3asyPe/scroll-automation/HEAD/utils/sleeping.py --------------------------------------------------------------------------------