├── .gitignore ├── LICENSE ├── README.md ├── conf └── configs_template ├── contracts └── UpgradebleStormSender_flat.sol ├── core ├── batch_manager.py ├── batch_mint_manager.py ├── tool_helper.py ├── wallet_manager.py └── xen_manager.py ├── georli_runner.py ├── libs ├── common.py ├── global_config.py └── singleton.py ├── main.py ├── mint_tool_demo_runner.py ├── scroll_testnet_runner.py ├── space_id_airdrop_requester.py ├── wallets.template └── zksync_testnet_runner.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/README.md -------------------------------------------------------------------------------- /conf/configs_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/conf/configs_template -------------------------------------------------------------------------------- /contracts/UpgradebleStormSender_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/contracts/UpgradebleStormSender_flat.sol -------------------------------------------------------------------------------- /core/batch_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/core/batch_manager.py -------------------------------------------------------------------------------- /core/batch_mint_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/core/batch_mint_manager.py -------------------------------------------------------------------------------- /core/tool_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/core/tool_helper.py -------------------------------------------------------------------------------- /core/wallet_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/core/wallet_manager.py -------------------------------------------------------------------------------- /core/xen_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/core/xen_manager.py -------------------------------------------------------------------------------- /georli_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/georli_runner.py -------------------------------------------------------------------------------- /libs/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/libs/common.py -------------------------------------------------------------------------------- /libs/global_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/libs/global_config.py -------------------------------------------------------------------------------- /libs/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/libs/singleton.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/main.py -------------------------------------------------------------------------------- /mint_tool_demo_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/mint_tool_demo_runner.py -------------------------------------------------------------------------------- /scroll_testnet_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/scroll_testnet_runner.py -------------------------------------------------------------------------------- /space_id_airdrop_requester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/space_id_airdrop_requester.py -------------------------------------------------------------------------------- /wallets.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/wallets.template -------------------------------------------------------------------------------- /zksync_testnet_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blusehuang1121/web3_tools/HEAD/zksync_testnet_runner.py --------------------------------------------------------------------------------