├── .gitignore ├── README.md ├── accounts.txt ├── config.py ├── data ├── abi │ ├── basilisk │ │ └── abi.json │ ├── bungee │ │ └── abi.json │ ├── dmail │ │ └── abi.json │ ├── era_ns │ │ └── abi.json │ ├── eralend │ │ └── abi.json │ ├── erc20_abi.json │ ├── gnosis │ │ └── abi.json │ ├── l2telegraph │ │ ├── bridge_nft.json │ │ └── send_message.json │ ├── mailzero │ │ └── abi.json │ ├── maverick │ │ ├── position.json │ │ └── router.json │ ├── minter │ │ └── abi.json │ ├── mute │ │ └── router.json │ ├── nft2me │ │ └── abi.json │ ├── omnisea │ │ └── abi.json │ ├── pancake │ │ ├── factory.json │ │ ├── pool.json │ │ ├── quoter.json │ │ └── router.json │ ├── reactorfusion │ │ └── abi.json │ ├── rocketsam │ │ └── abi.json │ ├── spacefi │ │ └── router.json │ ├── stargate │ │ └── router.json │ ├── syncswap │ │ ├── classic_pool.json │ │ ├── classic_pool_data.json │ │ └── router.json │ ├── tavaera │ │ ├── abi.json │ │ └── id.json │ ├── vesync │ │ └── router.json │ ├── woofi │ │ └── router.json │ ├── zerolend │ │ └── abi.json │ ├── zks │ │ └── abi.json │ ├── zksoul │ │ └── abi.json │ ├── zkstars │ │ └── abi.json │ ├── zkswap │ │ └── router.json │ └── zksync │ │ ├── deposit.json │ │ ├── weth.json │ │ └── withdraw.json └── rpc.json ├── main.py ├── modules ├── __init__.py ├── account.py ├── basilisk.py ├── bungee.py ├── dmail.py ├── era_domain.py ├── eralend.py ├── inch.py ├── l2telegraph.py ├── mailzero.py ├── maverick.py ├── minter.py ├── multi_approve.py ├── multiswap.py ├── mute.py ├── odos.py ├── omnisea.py ├── openocean.py ├── orbiter.py ├── pancake.py ├── reactorfusion.py ├── rocketsam.py ├── routes.py ├── safe.py ├── spacefi.py ├── stargate.py ├── swap_tokens.py ├── syncswap.py ├── tavaera.py ├── tx_checker.py ├── vesync.py ├── woofi.py ├── xyswap.py ├── zerolend.py ├── zks_domain.py ├── zkstars.py ├── zkswap.py └── zksync.py ├── modules_settings.py ├── proxy.txt ├── requirements.txt ├── settings.py └── utils ├── __init__.py ├── bungee_data.py ├── gas_checker.py ├── get_proxy.py ├── helpers.py └── sleeping.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/README.md -------------------------------------------------------------------------------- /accounts.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/config.py -------------------------------------------------------------------------------- /data/abi/basilisk/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/basilisk/abi.json -------------------------------------------------------------------------------- /data/abi/bungee/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/bungee/abi.json -------------------------------------------------------------------------------- /data/abi/dmail/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/dmail/abi.json -------------------------------------------------------------------------------- /data/abi/era_ns/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/era_ns/abi.json -------------------------------------------------------------------------------- /data/abi/eralend/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/eralend/abi.json -------------------------------------------------------------------------------- /data/abi/erc20_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/erc20_abi.json -------------------------------------------------------------------------------- /data/abi/gnosis/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/gnosis/abi.json -------------------------------------------------------------------------------- /data/abi/l2telegraph/bridge_nft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/l2telegraph/bridge_nft.json -------------------------------------------------------------------------------- /data/abi/l2telegraph/send_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/l2telegraph/send_message.json -------------------------------------------------------------------------------- /data/abi/mailzero/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/mailzero/abi.json -------------------------------------------------------------------------------- /data/abi/maverick/position.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/maverick/position.json -------------------------------------------------------------------------------- /data/abi/maverick/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/maverick/router.json -------------------------------------------------------------------------------- /data/abi/minter/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/minter/abi.json -------------------------------------------------------------------------------- /data/abi/mute/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/mute/router.json -------------------------------------------------------------------------------- /data/abi/nft2me/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/nft2me/abi.json -------------------------------------------------------------------------------- /data/abi/omnisea/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/omnisea/abi.json -------------------------------------------------------------------------------- /data/abi/pancake/factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/pancake/factory.json -------------------------------------------------------------------------------- /data/abi/pancake/pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/pancake/pool.json -------------------------------------------------------------------------------- /data/abi/pancake/quoter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/pancake/quoter.json -------------------------------------------------------------------------------- /data/abi/pancake/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/pancake/router.json -------------------------------------------------------------------------------- /data/abi/reactorfusion/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/reactorfusion/abi.json -------------------------------------------------------------------------------- /data/abi/rocketsam/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/rocketsam/abi.json -------------------------------------------------------------------------------- /data/abi/spacefi/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/spacefi/router.json -------------------------------------------------------------------------------- /data/abi/stargate/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/stargate/router.json -------------------------------------------------------------------------------- /data/abi/syncswap/classic_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/syncswap/classic_pool.json -------------------------------------------------------------------------------- /data/abi/syncswap/classic_pool_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/syncswap/classic_pool_data.json -------------------------------------------------------------------------------- /data/abi/syncswap/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/syncswap/router.json -------------------------------------------------------------------------------- /data/abi/tavaera/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/tavaera/abi.json -------------------------------------------------------------------------------- /data/abi/tavaera/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/tavaera/id.json -------------------------------------------------------------------------------- /data/abi/vesync/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/vesync/router.json -------------------------------------------------------------------------------- /data/abi/woofi/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/woofi/router.json -------------------------------------------------------------------------------- /data/abi/zerolend/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/zerolend/abi.json -------------------------------------------------------------------------------- /data/abi/zks/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/zks/abi.json -------------------------------------------------------------------------------- /data/abi/zksoul/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/zksoul/abi.json -------------------------------------------------------------------------------- /data/abi/zkstars/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/zkstars/abi.json -------------------------------------------------------------------------------- /data/abi/zkswap/router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/zkswap/router.json -------------------------------------------------------------------------------- /data/abi/zksync/deposit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/zksync/deposit.json -------------------------------------------------------------------------------- /data/abi/zksync/weth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/zksync/weth.json -------------------------------------------------------------------------------- /data/abi/zksync/withdraw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/abi/zksync/withdraw.json -------------------------------------------------------------------------------- /data/rpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/data/rpc.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/main.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/account.py -------------------------------------------------------------------------------- /modules/basilisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/basilisk.py -------------------------------------------------------------------------------- /modules/bungee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/bungee.py -------------------------------------------------------------------------------- /modules/dmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/dmail.py -------------------------------------------------------------------------------- /modules/era_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/era_domain.py -------------------------------------------------------------------------------- /modules/eralend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/eralend.py -------------------------------------------------------------------------------- /modules/inch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/inch.py -------------------------------------------------------------------------------- /modules/l2telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/l2telegraph.py -------------------------------------------------------------------------------- /modules/mailzero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/mailzero.py -------------------------------------------------------------------------------- /modules/maverick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/maverick.py -------------------------------------------------------------------------------- /modules/minter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/minter.py -------------------------------------------------------------------------------- /modules/multi_approve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/multi_approve.py -------------------------------------------------------------------------------- /modules/multiswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/multiswap.py -------------------------------------------------------------------------------- /modules/mute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/mute.py -------------------------------------------------------------------------------- /modules/odos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/odos.py -------------------------------------------------------------------------------- /modules/omnisea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/omnisea.py -------------------------------------------------------------------------------- /modules/openocean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/openocean.py -------------------------------------------------------------------------------- /modules/orbiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/orbiter.py -------------------------------------------------------------------------------- /modules/pancake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/pancake.py -------------------------------------------------------------------------------- /modules/reactorfusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/reactorfusion.py -------------------------------------------------------------------------------- /modules/rocketsam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/rocketsam.py -------------------------------------------------------------------------------- /modules/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/routes.py -------------------------------------------------------------------------------- /modules/safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/safe.py -------------------------------------------------------------------------------- /modules/spacefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/spacefi.py -------------------------------------------------------------------------------- /modules/stargate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/stargate.py -------------------------------------------------------------------------------- /modules/swap_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/swap_tokens.py -------------------------------------------------------------------------------- /modules/syncswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/syncswap.py -------------------------------------------------------------------------------- /modules/tavaera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/tavaera.py -------------------------------------------------------------------------------- /modules/tx_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/tx_checker.py -------------------------------------------------------------------------------- /modules/vesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/vesync.py -------------------------------------------------------------------------------- /modules/woofi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/woofi.py -------------------------------------------------------------------------------- /modules/xyswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/xyswap.py -------------------------------------------------------------------------------- /modules/zerolend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/zerolend.py -------------------------------------------------------------------------------- /modules/zks_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/zks_domain.py -------------------------------------------------------------------------------- /modules/zkstars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/zkstars.py -------------------------------------------------------------------------------- /modules/zkswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/zkswap.py -------------------------------------------------------------------------------- /modules/zksync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules/zksync.py -------------------------------------------------------------------------------- /modules_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/modules_settings.py -------------------------------------------------------------------------------- /proxy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/proxy.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/settings.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/bungee_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/utils/bungee_data.py -------------------------------------------------------------------------------- /utils/gas_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/utils/gas_checker.py -------------------------------------------------------------------------------- /utils/get_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/utils/get_proxy.py -------------------------------------------------------------------------------- /utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/utils/helpers.py -------------------------------------------------------------------------------- /utils/sleeping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/czbag/zksync/HEAD/utils/sleeping.py --------------------------------------------------------------------------------