mango-explorer/bin/send-sols

111 lines
4.8 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env pyston3
import os
import sys
from pathlib import Path
# Get the full path to this script.
script_path = Path(os.path.realpath(__file__))
# The parent of the script is the bin directory.
# The parent of the bin directory is the notebook directory.
# It's this notebook directory we want.
notebook_directory = script_path.parent.parent
# Add the notebook directory to our import path.
sys.path.append(str(notebook_directory))
# Add the startup directory to our import path.
startup_directory = notebook_directory / "meta" / "startup"
sys.path.append(str(startup_directory))
import argparse
import logging
import os.path
import projectsetup # noqa: F401
import traceback
from decimal import Decimal
from solana.publickey import PublicKey
from solana.system_program import TransferParams, transfer
from solana.transaction import Transaction
2021-06-02 12:03:46 -07:00
from Constants import SOL_DECIMAL_DIVISOR, WARNING_DISCLAIMER_TEXT
from Context import Context, default_cluster, default_cluster_url, default_program_id, default_dex_program_id, default_group_name, default_group_id
from Wallet import Wallet
# 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="Sends SOL to a different address.")
parser.add_argument("--cluster", type=str, default=default_cluster,
help="Solana RPC cluster name")
parser.add_argument("--cluster-url", type=str, default=default_cluster_url,
help="Solana RPC cluster URL")
parser.add_argument("--program-id", type=str, default=default_program_id,
help="Mango program ID/address")
parser.add_argument("--dex-program-id", type=str, default=default_dex_program_id,
help="DEX program ID/address")
parser.add_argument("--group-name", type=str, default=default_group_name,
help="Mango group name")
parser.add_argument("--group-id", type=str, default=default_group_id,
help="Mango group ID/address")
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("--address", type=PublicKey,
help="Destination address for the SPL token - can be either the actual token address or the address of the owner of the token address")
parser.add_argument("--quantity", type=Decimal, required=True, help="quantity of token to send")
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(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 = Wallet.load(id_filename)
context = 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}")
sol_balance = context.fetch_sol_balance(wallet.address)
print(f"Balance: {sol_balance} SOL")
# "A lamport has a value of 0.000000001 SOL." from https://docs.solana.com/introduction
2021-06-02 12:03:46 -07:00
lamports = int(args.quantity * SOL_DECIMAL_DIVISOR)
source = wallet.address
destination = args.address
text_amount = f"{lamports} lamports (SOL @ 9 decimal places)"
print(f"Sending {text_amount}")
print(f" From: {source}")
print(f" To: {destination}")
if args.dry_run:
print("Skipping actual transfer - dry run.")
else:
transaction = Transaction()
params = TransferParams(from_pubkey=source, to_pubkey=destination, lamports=lamports)
transaction.add(transfer(params))
transfer_response = context.client.send_transaction(transaction, wallet.account)
transaction_id = context.unwrap_transaction_id_or_raise_exception(transfer_response)
print(f"Waiting on transaction ID: {transaction_id}")
context.wait_for_confirmation(transaction_id)
updated_balance = context.fetch_sol_balance(wallet.address)
print(f"{text_amount} sent. Balance now: {updated_balance} SOL")
except Exception as exception:
logging.critical(f"send-sols stopped because of exception: {exception} - {traceback.format_exc()}")
except:
logging.critical(f"send-sols stopped because of uncatchable error: {traceback.format_exc()}")