├── .gitignore ├── LICENSE ├── README.md ├── analyse_logs.py ├── claim_staking_rewards.sh ├── contracts └── ServiceRegistryTokenUtility.json ├── images ├── docker.png ├── metamask_import_private_key.png ├── staking_fsm.svg └── trader_fsm_transitions.png ├── rank_traders.py ├── report.py ├── reset_staking.sh ├── run_service.sh ├── scripts ├── __init__.py ├── change_keys_json_password.py ├── check_python.py ├── choose_staking.py ├── claim_staking_rewards.py ├── erc20_balance.py ├── get_agent_bond.py ├── get_available_staking_slots.py ├── get_safe_owners.py ├── is_keys_json_password_valid.py ├── mech_events.py ├── service_hash.py ├── staking.py ├── swap_safe_owner.py └── utils.py ├── stop_service.sh ├── terminate_on_chain_service.sh └── trades.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/README.md -------------------------------------------------------------------------------- /analyse_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/analyse_logs.py -------------------------------------------------------------------------------- /claim_staking_rewards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/claim_staking_rewards.sh -------------------------------------------------------------------------------- /contracts/ServiceRegistryTokenUtility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/contracts/ServiceRegistryTokenUtility.json -------------------------------------------------------------------------------- /images/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/images/docker.png -------------------------------------------------------------------------------- /images/metamask_import_private_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/images/metamask_import_private_key.png -------------------------------------------------------------------------------- /images/staking_fsm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/images/staking_fsm.svg -------------------------------------------------------------------------------- /images/trader_fsm_transitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/images/trader_fsm_transitions.png -------------------------------------------------------------------------------- /rank_traders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/rank_traders.py -------------------------------------------------------------------------------- /report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/report.py -------------------------------------------------------------------------------- /reset_staking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/reset_staking.sh -------------------------------------------------------------------------------- /run_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/run_service.sh -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/__init__.py -------------------------------------------------------------------------------- /scripts/change_keys_json_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/change_keys_json_password.py -------------------------------------------------------------------------------- /scripts/check_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/check_python.py -------------------------------------------------------------------------------- /scripts/choose_staking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/choose_staking.py -------------------------------------------------------------------------------- /scripts/claim_staking_rewards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/claim_staking_rewards.py -------------------------------------------------------------------------------- /scripts/erc20_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/erc20_balance.py -------------------------------------------------------------------------------- /scripts/get_agent_bond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/get_agent_bond.py -------------------------------------------------------------------------------- /scripts/get_available_staking_slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/get_available_staking_slots.py -------------------------------------------------------------------------------- /scripts/get_safe_owners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/get_safe_owners.py -------------------------------------------------------------------------------- /scripts/is_keys_json_password_valid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/is_keys_json_password_valid.py -------------------------------------------------------------------------------- /scripts/mech_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/mech_events.py -------------------------------------------------------------------------------- /scripts/service_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/service_hash.py -------------------------------------------------------------------------------- /scripts/staking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/staking.py -------------------------------------------------------------------------------- /scripts/swap_safe_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/swap_safe_owner.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /stop_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/stop_service.sh -------------------------------------------------------------------------------- /terminate_on_chain_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/terminate_on_chain_service.sh -------------------------------------------------------------------------------- /trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valory-xyz/trader-quickstart/HEAD/trades.py --------------------------------------------------------------------------------