2021-05-08 06:56:02 +02:00
|
|
|
|
#!python3
|
|
|
|
|
|
|
|
|
|
"""Token transfer script
|
|
|
|
|
|
|
|
|
|
.. moduleauthor:: Louis Holbrook <dev@holbrook.no>
|
|
|
|
|
.. pgp:: 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
|
|
# standard imports
|
|
|
|
|
import os
|
|
|
|
|
import io
|
|
|
|
|
import json
|
|
|
|
|
import argparse
|
|
|
|
|
import logging
|
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
# external imports
|
2021-05-08 06:56:02 +02:00
|
|
|
|
from hexathon import (
|
|
|
|
|
add_0x,
|
|
|
|
|
strip_0x,
|
|
|
|
|
)
|
|
|
|
|
from chainlib.eth.connection import EthHTTPConnection
|
|
|
|
|
from chainlib.chain import ChainSpec
|
|
|
|
|
from chainlib.eth.runnable.util import decode_for_puny_humans
|
2021-07-29 20:25:10 +02:00
|
|
|
|
from chainlib.eth.address import to_checksum_address
|
|
|
|
|
import chainlib.eth.cli
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
|
|
|
|
# local imports
|
|
|
|
|
from eth_erc20 import ERC20
|
|
|
|
|
|
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
|
|
|
logg = logging.getLogger()
|
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
arg_flags = chainlib.eth.cli.argflag_std_write | chainlib.eth.cli.Flag.EXEC | chainlib.eth.cli.Flag.WALLET
|
|
|
|
|
argparser = chainlib.eth.cli.ArgumentParser(arg_flags)
|
|
|
|
|
argparser.add_positional('amount', type=int, help='Token amount to send')
|
2021-05-08 06:56:02 +02:00
|
|
|
|
args = argparser.parse_args()
|
2021-07-29 20:25:10 +02:00
|
|
|
|
extra_args = {
|
|
|
|
|
'amount': None,
|
|
|
|
|
}
|
|
|
|
|
config = chainlib.eth.cli.Config.from_args(args, arg_flags, extra_args=extra_args, default_fee_limit=100000)
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
block_all = args.ww
|
2021-05-08 06:56:02 +02:00
|
|
|
|
block_last = args.w or block_all
|
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
wallet = chainlib.eth.cli.Wallet()
|
|
|
|
|
wallet.from_config(config)
|
2021-06-26 10:30:17 +02:00
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
rpc = chainlib.eth.cli.Rpc(wallet=wallet)
|
|
|
|
|
conn = rpc.connect_by_config(config)
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
chain_spec = ChainSpec.from_chain_str(config.get('CHAIN_SPEC'))
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
value = config.get('_AMOUNT')
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
send = config.true('_RPC_SEND')
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
def balance(generator, token_address, address, id_generator=None):
|
|
|
|
|
o = generator.balance(token_address, address, id_generator=id_generator)
|
|
|
|
|
r = conn.do(o)
|
|
|
|
|
token_balance = generator.parse_balance(r)
|
|
|
|
|
return token_balance
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
def main():
|
|
|
|
|
signer = rpc.get_signer()
|
|
|
|
|
signer_address = rpc.get_sender_address()
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
gas_oracle = rpc.get_gas_oracle()
|
|
|
|
|
nonce_oracle = rpc.get_nonce_oracle()
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
g = ERC20(chain_spec, signer=signer, gas_oracle=gas_oracle, nonce_oracle=nonce_oracle)
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
recipient = to_checksum_address(config.get('_RECIPIENT'))
|
|
|
|
|
if not config.true('_UNSAFE') and recipient != add_0x(config.get('_RECIPIENT')):
|
|
|
|
|
raise ValueError('invalid checksum address for recipient')
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
token_address = to_checksum_address(config.get('_EXEC_ADDRESS'))
|
|
|
|
|
if not config.true('_UNSAFE') and token_address != add_0x(config.get('_EXEC_ADDRESS')):
|
|
|
|
|
raise ValueError('invalid checksum address for contract')
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
|
|
|
|
if logg.isEnabledFor(logging.DEBUG):
|
2021-07-29 20:25:10 +02:00
|
|
|
|
sender_balance = balance(g, token_address, signer_address, id_generator=rpc.id_generator)
|
|
|
|
|
recipient_balance = balance(g, token_address, recipient, id_generator=rpc.id_generator)
|
|
|
|
|
logg.debug('sender {} balance before: {}'.format(signer_address, sender_balance))
|
|
|
|
|
logg.debug('recipient {} balance before: {}'.format(recipient, recipient_balance))
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
2021-07-29 20:25:10 +02:00
|
|
|
|
(tx_hash_hex, o) = g.transfer(token_address, signer_address, recipient, value, id_generator=rpc.id_generator)
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
|
|
|
|
if send:
|
|
|
|
|
conn.do(o)
|
|
|
|
|
if block_last:
|
|
|
|
|
r = conn.wait(tx_hash_hex)
|
|
|
|
|
if logg.isEnabledFor(logging.DEBUG):
|
2021-07-29 20:25:10 +02:00
|
|
|
|
sender_balance = balance(g, token_address, signer_address, id_generator=rpc.id_generator)
|
|
|
|
|
recipient_balance = balance(g, token_address, recipient, id_generator=rpc.id_generator)
|
2021-06-26 10:30:17 +02:00
|
|
|
|
logg.debug('sender {} balance after: {}'.format(signer_address, sender_balance))
|
|
|
|
|
logg.debug('recipient {} balance after: {}'.format(recipient, recipient_balance))
|
2021-05-08 06:56:02 +02:00
|
|
|
|
if r['status'] == 0:
|
|
|
|
|
logg.critical('VM revert. Wish I could tell you more')
|
|
|
|
|
sys.exit(1)
|
|
|
|
|
print(tx_hash_hex)
|
|
|
|
|
|
|
|
|
|
else:
|
2021-07-29 20:25:10 +02:00
|
|
|
|
print(o['params'][0])
|
2021-05-08 06:56:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
main()
|