mango-explorer/bin/send-sols

73 lines
2.9 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env pyston3
import argparse
import logging
import os
import os.path
import sys
import traceback
from decimal import Decimal
from solana.publickey import PublicKey
from solana.system_program import TransferParams, transfer
from solana.transaction import Transaction
sys.path.insert(0, os.path.abspath(
2021-06-25 02:33:40 -07:00
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="Sends SOL to a different address.")
mango.Context.add_command_line_parameters(parser)
mango.Wallet.add_command_line_parameters(parser)
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(mango.WARNING_DISCLAIMER_TEXT)
try:
context = mango.Context.from_command_line_parameters(args)
wallet = mango.Wallet.from_command_line_parameters_or_raise(args)
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
lamports = int(args.quantity * mango.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, opts=context.transaction_options)
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()}")