mango-explorer/bin/show-delegated-accounts

37 lines
1.1 KiB
Python
Executable File

#!/usr/bin/env python3
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 details 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 delegate of the account (defaults to the root address of the wallet)",
)
args: argparse.Namespace = mango.parse_args(parser)
context = mango.ContextBuilder.from_command_line_parameters(args)
delegate = args.address
if delegate is None:
wallet = mango.Wallet.from_command_line_parameters_or_raise(args)
delegate = wallet.address
group = mango.Group.load(context, context.group_address)
mango_accounts = mango.Account.load_all_for_delegate(context, delegate, group)
if len(mango_accounts) == 0:
mango.output(f"Account {delegate} has no accounts delegated to it.")
else:
mango.output(mango_accounts)