#!/usr/bin/env pyston3 import argparse import json import logging import os import os.path import sys import traceback from decimal import Decimal sys.path.insert(0, os.path.abspath( os.path.join(os.path.dirname(__file__), '..'))) import mango # nopep8 # We explicitly want argument parsing to be outside the main try-except block because some arguments # (like --help) will cause an exit, which our except: block traps. parser = argparse.ArgumentParser( description="Balance the value of tokens in a Mango Markets group to specific values or percentages.") parser.add_argument("--cluster", type=str, default=mango.default_cluster, help="Solana RPC cluster name") parser.add_argument("--cluster-url", type=str, default=mango.default_cluster_url, help="Solana RPC cluster URL") parser.add_argument("--program-id", type=str, default=mango.default_program_id, help="Mango program ID/address") parser.add_argument("--dex-program-id", type=str, default=mango.default_dex_program_id, help="DEX program ID/address") parser.add_argument("--group-name", type=str, default=mango.default_group_name, help="Mango group name") parser.add_argument("--group-id", type=str, default=mango.default_group_id, help="Mango group ID/address") parser.add_argument("--token-data-file", type=str, default="solana.tokenlist.json", help="data file that contains token symbols, names, mints and decimals (format is same as https://raw.githubusercontent.com/solana-labs/token-list/main/src/tokens/solana.tokenlist.json)") parser.add_argument("--id-file", type=str, default="id.json", help="file containing the JSON-formatted wallet private key") parser.add_argument("--log-level", default=logging.WARNING, type=lambda level: getattr(logging, level), help="level of verbosity to log (possible values: DEBUG, INFO, WARNING, ERROR, CRITICAL)") parser.add_argument("--target", type=str, action="append", required=True, help="token symbol plus target value or percentage, separated by a colon (e.g. 'ETH:2.5' or 'ETH:33%')") parser.add_argument("--action-threshold", type=Decimal, default=Decimal("0.01"), help="fraction of total wallet value a trade must be above to be carried out") parser.add_argument("--adjustment-factor", type=Decimal, default=Decimal("0.05"), help="factor by which to adjust the SELL price (akin to maximum slippage)") parser.add_argument("--dry-run", action="store_true", default=False, help="runs as read-only and does not perform any transactions") args = parser.parse_args() logging.getLogger().setLevel(args.log_level) logging.warning(mango.WARNING_DISCLAIMER_TEXT) try: id_filename = args.id_file if not os.path.isfile(id_filename): logging.error(f"Wallet file '{id_filename}' is not present.") sys.exit(1) wallet = mango.Wallet.load(id_filename) action_threshold = args.action_threshold adjustment_factor = args.adjustment_factor context = mango.Context.from_command_line(args.cluster, args.cluster_url, args.program_id, args.dex_program_id, args.group_name, args.group_id) logging.info(f"Context: {context}") logging.info(f"Wallet address: {wallet.address}") group = mango.Group.load(context) tokens = [basket_token.token for basket_token in group.basket_tokens] balance_parser = mango.TargetBalanceParser(tokens) targets = list(map(balance_parser.parse, args.target)) logging.info(f"Targets: {targets}") prices = group.fetch_token_prices(context) logging.info(f"Prices: {prices}") if args.dry_run: trade_executor: mango.TradeExecutor = mango.NullTradeExecutor(print) else: with open(args.token_data_file) as json_file: token_data = json.load(json_file) spot_market_lookup = mango.SpotMarketLookup(token_data) trade_executor = mango.SerumImmediateTradeExecutor( context, wallet, spot_market_lookup, adjustment_factor, print) wallet_balancer = mango.LiveWalletBalancer(context, wallet, trade_executor, action_threshold, tokens, targets) wallet_balancer.balance(prices) logging.info("Balancing completed.") except Exception as exception: logging.critical(f"Balancing stopped because of exception: {exception} - {traceback.format_exc()}") except: logging.critical(f"Balancing stopped because of uncatchable error: {traceback.format_exc()}")