mango-explorer/bin/show-health

70 lines
2.3 KiB
Python
Executable File

#!/usr/bin/env python3
import mango.calculators.healthcalculator
import argparse
import os
import os.path
import sys
from solana.publickey import PublicKey
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
import mango # nopep8
parser = argparse.ArgumentParser(description="Shows health of a Mango account.")
mango.ContextBuilder.add_command_line_parameters(parser)
mango.Wallet.add_command_line_parameters(parser)
parser.add_argument(
"--address", type=PublicKey, required=False, help="address of the Mango account"
)
args: argparse.Namespace = mango.parse_args(parser)
context: mango.Context = mango.ContextBuilder.from_command_line_parameters(args)
group: mango.Group = mango.Group.load(context, context.group_address)
cache: mango.Cache = mango.Cache.load(context, group.cache)
address: PublicKey = args.address
mango_account: mango.Account
if address is None:
wallet = mango.Wallet.from_command_line_parameters_or_raise(args)
address = wallet.address
mango_accounts = mango.Account.load_all_for_owner(context, address, group)
mango_account = mango_accounts[0]
else:
mango_account = mango.Account.load(context, address, group)
health_calculator = mango.calculators.healthcalculator.HealthCalculator(
context, mango.calculators.healthcalculator.HealthType.INITIAL
)
spot_open_orders_addresses = list(
[
basket_token.spot_open_orders
for basket_token in mango_account.slots
if basket_token.spot_open_orders is not None
]
)
spot_open_orders_account_infos = mango.AccountInfo.load_multiple(
context, spot_open_orders_addresses
)
spot_open_orders_account_infos_by_address = {
str(account_info.address): account_info
for account_info in spot_open_orders_account_infos
}
spot_open_orders = {}
for basket_token in mango_account.slots:
if basket_token.spot_open_orders is not None:
account_info = spot_open_orders_account_infos_by_address[
str(basket_token.spot_open_orders)
]
oo = mango.OpenOrders.parse(
account_info,
basket_token.base_instrument.decimals,
mango_account.shared_quote_token.decimals,
)
spot_open_orders[str(basket_token.spot_open_orders)] = oo
mango.output(
"Health", health_calculator.calculate(mango_account, spot_open_orders, group, cache)
)