├── README.md ├── config.py ├── data ├── accounts_data.xlsx ├── bad_wallets.json └── services │ ├── cex_withdraw_list.json │ ├── contact_data.json │ ├── google_progress.json │ ├── maximum_gwei.json │ ├── orbiter_maker1.json │ ├── orbiter_maker2.json │ ├── service_account.json │ ├── stark_data.json │ └── wallets_progress.json ├── functions.py ├── general_settings.py ├── main.py ├── modules ├── __init__.py ├── __pycache__ │ └── client.cpython-310.pyc ├── blockchains │ ├── __init__.py │ ├── evm.py │ └── starknet.py ├── bridges │ ├── __init__.py │ ├── layerswap.py │ ├── orbiter.py │ └── rhino.py ├── cexs │ ├── __init__.py │ ├── binance.py │ ├── bingx.py │ └── okx.py ├── client.py ├── custom_modules.py ├── interfaces.py ├── landings │ ├── __init__.py │ ├── nostra.py │ └── zkLend.py ├── others │ ├── __init__.py │ ├── dmail.py │ ├── starknetid.py │ └── starkstars.py ├── stark_client.py └── swaps │ ├── __init__.py │ ├── avnu.py │ ├── jediswap.py │ ├── myswap.py │ ├── protoss.py │ ├── rango.py │ ├── sithswap.py │ └── tenkswap.py ├── requirements.txt ├── settings.py └── utils ├── modules_runner.py ├── networks.py ├── route_generator.py ├── stark_signature ├── eth_coder.py ├── math_utils.py ├── pedersen_params.json ├── stark_deployer.py └── stark_singature.py └── tools.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/config.py -------------------------------------------------------------------------------- /data/accounts_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/data/accounts_data.xlsx -------------------------------------------------------------------------------- /data/bad_wallets.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/services/cex_withdraw_list.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/services/contact_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/data/services/contact_data.json -------------------------------------------------------------------------------- /data/services/google_progress.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/services/maximum_gwei.json: -------------------------------------------------------------------------------- 1 | { 2 | "maximum_gwei": 30 3 | } -------------------------------------------------------------------------------- /data/services/orbiter_maker1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/data/services/orbiter_maker1.json -------------------------------------------------------------------------------- /data/services/orbiter_maker2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/data/services/orbiter_maker2.json -------------------------------------------------------------------------------- /data/services/service_account.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/services/stark_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/services/wallets_progress.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/functions.py -------------------------------------------------------------------------------- /general_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/general_settings.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/main.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/__pycache__/client.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/__pycache__/client.cpython-310.pyc -------------------------------------------------------------------------------- /modules/blockchains/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/blockchains/__init__.py -------------------------------------------------------------------------------- /modules/blockchains/evm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/blockchains/evm.py -------------------------------------------------------------------------------- /modules/blockchains/starknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/blockchains/starknet.py -------------------------------------------------------------------------------- /modules/bridges/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/bridges/__init__.py -------------------------------------------------------------------------------- /modules/bridges/layerswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/bridges/layerswap.py -------------------------------------------------------------------------------- /modules/bridges/orbiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/bridges/orbiter.py -------------------------------------------------------------------------------- /modules/bridges/rhino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/bridges/rhino.py -------------------------------------------------------------------------------- /modules/cexs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/cexs/__init__.py -------------------------------------------------------------------------------- /modules/cexs/binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/cexs/binance.py -------------------------------------------------------------------------------- /modules/cexs/bingx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/cexs/bingx.py -------------------------------------------------------------------------------- /modules/cexs/okx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/cexs/okx.py -------------------------------------------------------------------------------- /modules/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/client.py -------------------------------------------------------------------------------- /modules/custom_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/custom_modules.py -------------------------------------------------------------------------------- /modules/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/interfaces.py -------------------------------------------------------------------------------- /modules/landings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/landings/__init__.py -------------------------------------------------------------------------------- /modules/landings/nostra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/landings/nostra.py -------------------------------------------------------------------------------- /modules/landings/zkLend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/landings/zkLend.py -------------------------------------------------------------------------------- /modules/others/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/others/__init__.py -------------------------------------------------------------------------------- /modules/others/dmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/others/dmail.py -------------------------------------------------------------------------------- /modules/others/starknetid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/others/starknetid.py -------------------------------------------------------------------------------- /modules/others/starkstars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/others/starkstars.py -------------------------------------------------------------------------------- /modules/stark_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/stark_client.py -------------------------------------------------------------------------------- /modules/swaps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/swaps/__init__.py -------------------------------------------------------------------------------- /modules/swaps/avnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/swaps/avnu.py -------------------------------------------------------------------------------- /modules/swaps/jediswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/swaps/jediswap.py -------------------------------------------------------------------------------- /modules/swaps/myswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/swaps/myswap.py -------------------------------------------------------------------------------- /modules/swaps/protoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/swaps/protoss.py -------------------------------------------------------------------------------- /modules/swaps/rango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/swaps/rango.py -------------------------------------------------------------------------------- /modules/swaps/sithswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/swaps/sithswap.py -------------------------------------------------------------------------------- /modules/swaps/tenkswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/modules/swaps/tenkswap.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/settings.py -------------------------------------------------------------------------------- /utils/modules_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/utils/modules_runner.py -------------------------------------------------------------------------------- /utils/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/utils/networks.py -------------------------------------------------------------------------------- /utils/route_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/utils/route_generator.py -------------------------------------------------------------------------------- /utils/stark_signature/eth_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/utils/stark_signature/eth_coder.py -------------------------------------------------------------------------------- /utils/stark_signature/math_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/utils/stark_signature/math_utils.py -------------------------------------------------------------------------------- /utils/stark_signature/pedersen_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/utils/stark_signature/pedersen_params.json -------------------------------------------------------------------------------- /utils/stark_signature/stark_deployer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/utils/stark_signature/stark_deployer.py -------------------------------------------------------------------------------- /utils/stark_signature/stark_singature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/utils/stark_signature/stark_singature.py -------------------------------------------------------------------------------- /utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realaskaer/StarkMachine/HEAD/utils/tools.py --------------------------------------------------------------------------------