switched to get information from testing environment database

This commit is contained in:
Alexander Kolotov 2018-03-17 21:32:14 +03:00
parent bf663049d0
commit 6bbc50b5c8
3 changed files with 59 additions and 3 deletions

View File

@ -1,9 +1,19 @@
#!/opt/anaconda3/bin/python
from web3 import Web3
#from web3.utils.transactions import wait_for_transaction_receipt
from toml import load
import sys
web3 = Web3(Web3.IPCProvider('/home/koal/parity/PoA_foreign/jsonrpc.ipc'))
test_env_db = '/home/koal/parity/bridge/test_env_db.toml'
try:
test_env = load(test_env_db)
except:
sys.exit(1)
bridge_config = load(test_env['bridge_config'])
IPC_file = bridge_config['foreign']['ipc']
web3 = Web3(Web3.IPCProvider(IPC_file))
signer = web3.toChecksumAddress("0xf3ee321df87781864f46f6464e764c2827fca73b")
sender = web3.toChecksumAddress("0x37a30534da3d53aa1867adde26e114a3161b2b12")

View File

@ -0,0 +1,40 @@
#!/opt/anaconda3/bin/python
from web3 import Web3
from web3.utils.datastructures import AttributeDict
from toml import load
import json
import sys
import hexbytes
test_env_db = '/home/koal/parity/bridge/test_env_db.toml'
try:
test_env = load(test_env_db)
except:
sys.exit(1)
bridge_config = load(test_env['bridge_config'])
_IPC_file = bridge_config['foreign']['ipc']
web3 = Web3(Web3.IPCProvider(_IPC_file))
#web3 = Web3(Web3.HTTPProvider("http://127.0.0.1:48545"))
if (len(sys.argv) == 2):
txHash = sys.argv[1]
else:
sys.exit(1)
class ReceiptEncoder(json.JSONEncoder):
def default(self, obj):
if type(obj) == hexbytes.HexBytes:
return obj.hex()
elif type(obj) == AttributeDict:
return dict(obj)
# Let the base class default method raise the TypeError
return json.JSONEncoder.default(self, obj)
#print(type(dict(web3.eth.getTransactionReceipt(txHash))['blockHash']))
print(json.dumps(dict(web3.eth.getTransaction(txHash)), cls=ReceiptEncoder, indent=2))
#print(json.dumps(dict(web3.eth.getTransactionReceipt(txHash))))
sys.exit(0)

View File

@ -7,7 +7,13 @@ import json
import sys
import hexbytes
bridge_config = load('/home/koal/parity/bridge/erc20.toml')
test_env_db = '/home/koal/parity/bridge/test_env_db.toml'
try:
test_env = load(test_env_db)
except:
sys.exit(1)
bridge_config = load(test_env['bridge_config'])
_IPC_file = bridge_config['foreign']['ipc']
web3 = Web3(Web3.IPCProvider(_IPC_file))