2021-06-28 07:48:36 +02:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
# standard imports
|
|
|
|
import io
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import json
|
|
|
|
import argparse
|
|
|
|
import logging
|
|
|
|
import urllib
|
|
|
|
|
|
|
|
# external imports
|
2021-08-21 09:27:40 +02:00
|
|
|
import chainlib.eth.cli
|
2021-10-18 14:23:54 +02:00
|
|
|
from funga.eth.signer import EIP155Signer
|
|
|
|
from funga.eth.keystore.dict import DictKeystore
|
2021-06-28 07:48:36 +02:00
|
|
|
from hexathon import (
|
|
|
|
add_0x,
|
|
|
|
strip_0x,
|
|
|
|
)
|
|
|
|
|
|
|
|
# local imports
|
|
|
|
from chainlib.eth.address import to_checksum
|
|
|
|
from chainlib.eth.connection import EthHTTPConnection
|
|
|
|
from chainlib.jsonrpc import (
|
|
|
|
JSONRPCRequest,
|
|
|
|
IntSequenceGenerator,
|
|
|
|
)
|
|
|
|
from chainlib.eth.nonce import (
|
|
|
|
RPCNonceOracle,
|
|
|
|
OverrideNonceOracle,
|
|
|
|
)
|
|
|
|
from chainlib.eth.gas import (
|
|
|
|
RPCGasOracle,
|
|
|
|
OverrideGasOracle,
|
|
|
|
)
|
|
|
|
from chainlib.eth.tx import (
|
|
|
|
TxFactory,
|
|
|
|
raw,
|
|
|
|
)
|
2021-08-21 09:27:40 +02:00
|
|
|
from chainlib.error import SignerMissingException
|
2021-06-28 07:48:36 +02:00
|
|
|
from chainlib.chain import ChainSpec
|
|
|
|
from chainlib.eth.runnable.util import decode_for_puny_humans
|
2021-08-21 09:27:40 +02:00
|
|
|
from chainlib.eth.jsonrpc import to_blockheight_param
|
2021-06-28 07:48:36 +02:00
|
|
|
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
|
|
logg = logging.getLogger()
|
|
|
|
|
2021-08-21 09:27:40 +02:00
|
|
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
config_dir = os.path.join(script_dir, '..', 'data', 'config')
|
2021-06-28 07:48:36 +02:00
|
|
|
|
2021-08-21 09:27:40 +02:00
|
|
|
arg_flags = chainlib.eth.cli.argflag_std_write | chainlib.eth.cli.Flag.EXEC
|
|
|
|
argparser = chainlib.eth.cli.ArgumentParser(arg_flags)
|
2021-10-06 06:57:51 +02:00
|
|
|
argparser.add_argument('--deploy', action='store_true', help='Deploy data as contract')
|
2021-08-21 09:27:40 +02:00
|
|
|
argparser.add_positional('data', type=str, help='Transaction data')
|
|
|
|
args = argparser.parse_args()
|
|
|
|
config = chainlib.eth.cli.Config.from_args(args, arg_flags, default_config_dir=config_dir)
|
2021-06-28 07:48:36 +02:00
|
|
|
|
|
|
|
block_all = args.ww
|
|
|
|
block_last = args.w or block_all
|
|
|
|
|
2021-08-21 09:27:40 +02:00
|
|
|
wallet = chainlib.eth.cli.Wallet(EIP155Signer)
|
|
|
|
wallet.from_config(config)
|
2021-06-28 07:48:36 +02:00
|
|
|
|
2021-08-21 09:27:40 +02:00
|
|
|
rpc = chainlib.eth.cli.Rpc(wallet=wallet)
|
|
|
|
conn = rpc.connect_by_config(config)
|
2021-06-28 07:48:36 +02:00
|
|
|
|
2021-08-21 09:27:40 +02:00
|
|
|
send = config.true('_RPC_SEND')
|
2021-06-28 07:48:36 +02:00
|
|
|
|
2021-08-21 09:27:40 +02:00
|
|
|
chain_spec = None
|
|
|
|
try:
|
|
|
|
chain_spec = ChainSpec.from_chain_str(config.get('CHAIN_SPEC'))
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
2021-06-28 07:48:36 +02:00
|
|
|
|
2021-08-21 09:27:40 +02:00
|
|
|
def main():
|
2021-06-28 07:48:36 +02:00
|
|
|
|
2021-08-21 09:27:40 +02:00
|
|
|
signer_address = None
|
|
|
|
try:
|
|
|
|
signer = rpc.get_signer()
|
|
|
|
signer_address = rpc.get_signer_address()
|
|
|
|
except SignerMissingException:
|
|
|
|
pass
|
2021-06-28 07:48:36 +02:00
|
|
|
|
2021-10-06 06:57:51 +02:00
|
|
|
if config.get('_EXEC_ADDRESS') != None or args.deploy:
|
|
|
|
exec_address = None
|
|
|
|
if config.get('_EXEC_ADDRESS') != None:
|
|
|
|
exec_address = add_0x(to_checksum(config.get('_EXEC_ADDRESS')))
|
|
|
|
#if not args.u and exec_address != add_0x(exec_address):
|
|
|
|
if not args.u and exec_address != exec_address:
|
|
|
|
raise ValueError('invalid checksum address')
|
|
|
|
|
|
|
|
if signer_address == None:
|
|
|
|
j = JSONRPCRequest(id_generator=rpc.id_generator)
|
|
|
|
o = j.template()
|
|
|
|
o['method'] = 'eth_call'
|
|
|
|
o['params'].append({
|
|
|
|
'to': exec_address,
|
|
|
|
'from': signer_address,
|
|
|
|
'value': '0x00',
|
|
|
|
'gas': add_0x(int.to_bytes(8000000, 8, byteorder='big').hex()), # TODO: better get of network gas limit
|
|
|
|
'gasPrice': '0x01',
|
|
|
|
'data': add_0x(args.data),
|
|
|
|
})
|
|
|
|
height = to_blockheight_param(config.get('_HEIGHT'))
|
|
|
|
o['params'].append(height)
|
|
|
|
o = j.finalize(o)
|
|
|
|
r = conn.do(o)
|
|
|
|
try:
|
|
|
|
print(strip_0x(r))
|
|
|
|
except ValueError:
|
|
|
|
sys.stderr.write('query returned an empty value ({})\n'.format(r))
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
else:
|
2021-09-01 09:38:09 +02:00
|
|
|
if chain_spec == None:
|
|
|
|
raise ValueError('chain spec must be specified')
|
|
|
|
g = TxFactory(chain_spec, signer=rpc.get_signer(), gas_oracle=rpc.get_gas_oracle(), nonce_oracle=rpc.get_nonce_oracle())
|
|
|
|
tx = g.template(signer_address, exec_address, use_nonce=True)
|
|
|
|
if args.data != None:
|
|
|
|
tx = g.set_code(tx, add_0x(args.data))
|
|
|
|
|
|
|
|
(tx_hash_hex, o) = g.finalize(tx, id_generator=rpc.id_generator)
|
|
|
|
|
|
|
|
if send:
|
|
|
|
r = conn.do(o)
|
|
|
|
print(r)
|
|
|
|
else:
|
2021-10-06 07:30:07 +02:00
|
|
|
if config.get('_RAW'):
|
|
|
|
o = strip_0x(o)
|
2021-09-01 09:38:09 +02:00
|
|
|
print(o)
|
2021-06-28 07:48:36 +02:00
|
|
|
|
|
|
|
else:
|
2021-08-21 09:27:40 +02:00
|
|
|
o = raw(args.data, id_generator=rpc.id_generator)
|
2021-06-28 07:48:36 +02:00
|
|
|
if send:
|
|
|
|
r = conn.do(o)
|
2022-01-09 13:09:23 +01:00
|
|
|
if block_last:
|
|
|
|
r = conn.wait(tx_hash_hex)
|
|
|
|
if r['status'] == 0:
|
|
|
|
logg.critical('VM revert for {}. Wish I could tell you more'.format(tx_hash_hex))
|
|
|
|
sys.exit(1)
|
2021-06-28 07:48:36 +02:00
|
|
|
print(r)
|
|
|
|
else:
|
|
|
|
print(o)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|