2021-02-21 16:41:37 +01:00
# standard imports
import argparse
2021-05-15 09:40:34 +02:00
import copy
2021-02-21 16:41:37 +01:00
import hashlib
import json
2021-05-15 09:40:34 +02:00
import logging
import os
import sys
2021-02-21 16:41:37 +01:00
import urllib
2021-04-09 15:00:15 +02:00
import urllib . request
2021-05-15 09:40:34 +02:00
import uuid
2021-02-21 16:41:37 +01:00
2021-02-22 21:00:18 +01:00
# external imports
2021-02-21 16:41:37 +01:00
import celery
import confini
2021-05-15 09:40:34 +02:00
import eth_abi
2021-02-22 21:00:18 +01:00
from chainlib . chain import ChainSpec
2021-05-15 09:40:34 +02:00
from chainlib . eth . address import to_checksum_address
2021-03-29 15:27:53 +02:00
from chainlib . eth . connection import EthHTTPConnection
2021-02-21 16:41:37 +01:00
from chainlib . eth . constant import ZERO_ADDRESS
2021-03-29 21:29:29 +02:00
from chainlib . eth . gas import (
2021-05-15 09:40:34 +02:00
OverrideGasOracle ,
balance ,
)
2021-02-21 16:41:37 +01:00
from chainlib . eth . tx import TxFactory
2021-05-15 09:40:34 +02:00
from chainlib . hash import keccak256_string_to_hex
2021-04-16 23:44:14 +02:00
from chainlib . jsonrpc import jsonrpc_template
2021-02-21 16:41:37 +01:00
from cic_types . models . person import (
2021-05-15 09:40:34 +02:00
Person ,
generate_metadata_pointer ,
)
2021-05-05 18:25:21 +02:00
from erc20_faucet import Faucet
from eth_erc20 import ERC20
2021-05-15 09:40:34 +02:00
from hexathon . parse import strip_0x , add_0x
2021-02-21 16:41:37 +01:00
logging . basicConfig ( level = logging . WARNING )
logg = logging . getLogger ( )
config_dir = ' /usr/local/etc/cic-syncer '
2021-04-01 22:55:39 +02:00
custodial_tests = [
' local_key ' ,
' gas ' ,
' faucet ' ,
2021-04-15 19:04:16 +02:00
' ussd '
2021-04-01 22:55:39 +02:00
]
2021-04-09 15:00:15 +02:00
metadata_tests = [
' metadata ' ,
' metadata_phone ' ,
]
eth_tests = [
2021-04-01 22:55:39 +02:00
' accounts_index ' ,
' balance ' ,
]
2021-04-09 15:00:15 +02:00
phone_tests = [
' ussd ' ,
2021-05-15 09:40:34 +02:00
' ussd_pins '
2021-04-09 15:00:15 +02:00
]
all_tests = eth_tests + custodial_tests + metadata_tests + phone_tests
2021-02-21 16:41:37 +01:00
argparser = argparse . ArgumentParser ( description = ' daemon that monitors transactions in new blocks ' )
argparser . add_argument ( ' -p ' , ' --provider ' , dest = ' p ' , type = str , help = ' chain rpc provider address ' )
argparser . add_argument ( ' -c ' , type = str , default = config_dir , help = ' config root to use ' )
2021-02-22 21:00:18 +01:00
argparser . add_argument ( ' --old-chain-spec ' , type = str , dest = ' old_chain_spec ' , default = ' evm:oldchain:1 ' , help = ' chain spec ' )
2021-02-21 16:41:37 +01:00
argparser . add_argument ( ' -i ' , ' --chain-spec ' , type = str , dest = ' i ' , help = ' chain spec ' )
argparser . add_argument ( ' --meta-provider ' , type = str , dest = ' meta_provider ' , default = ' http://localhost:63380 ' , help = ' cic-meta url ' )
2021-04-09 15:00:15 +02:00
argparser . add_argument ( ' --ussd-provider ' , type = str , dest = ' ussd_provider ' , default = ' http://localhost:63315 ' , help = ' cic-ussd url ' )
2021-04-01 22:55:39 +02:00
argparser . add_argument ( ' --skip-custodial ' , dest = ' skip_custodial ' , action = ' store_true ' , help = ' skip all custodial verifications ' )
argparser . add_argument ( ' --exclude ' , action = ' append ' , type = str , default = [ ] , help = ' skip specified verification ' )
argparser . add_argument ( ' --include ' , action = ' append ' , type = str , help = ' include specified verification ' )
2021-02-21 16:41:37 +01:00
argparser . add_argument ( ' -r ' , ' --registry-address ' , type = str , dest = ' r ' , help = ' CIC Registry address ' )
argparser . add_argument ( ' --env-prefix ' , default = os . environ . get ( ' CONFINI_ENV_PREFIX ' ) , dest = ' env_prefix ' , type = str , help = ' environment prefix for variables to overwrite configuration ' )
2021-03-06 18:55:51 +01:00
argparser . add_argument ( ' -x ' , ' --exit-on-error ' , dest = ' x ' , action = ' store_true ' , help = ' Halt exection on error ' )
2021-02-21 16:41:37 +01:00
argparser . add_argument ( ' -v ' , help = ' be verbose ' , action = ' store_true ' )
argparser . add_argument ( ' -vv ' , help = ' be more verbose ' , action = ' store_true ' )
argparser . add_argument ( ' user_dir ' , type = str , help = ' user export directory ' )
args = argparser . parse_args ( sys . argv [ 1 : ] )
if args . v == True :
logging . getLogger ( ) . setLevel ( logging . INFO )
elif args . vv == True :
logging . getLogger ( ) . setLevel ( logging . DEBUG )
config_dir = os . path . join ( args . c )
os . makedirs ( config_dir , 0o777 , True )
config = confini . Config ( config_dir , args . env_prefix )
config . process ( )
# override args
args_override = {
' CIC_CHAIN_SPEC ' : getattr ( args , ' i ' ) ,
' ETH_PROVIDER ' : getattr ( args , ' p ' ) ,
' CIC_REGISTRY_ADDRESS ' : getattr ( args , ' r ' ) ,
}
config . dict_override ( args_override , ' cli flag ' )
config . censor ( ' PASSWORD ' , ' DATABASE ' )
config . censor ( ' PASSWORD ' , ' SSL ' )
2021-04-09 15:00:15 +02:00
config . add ( args . meta_provider , ' _META_PROVIDER ' , True )
config . add ( args . ussd_provider , ' _USSD_PROVIDER ' , True )
2021-02-21 16:41:37 +01:00
logg . debug ( ' config loaded from {} : \n {} ' . format ( config_dir , config ) )
celery_app = celery . Celery ( backend = config . get ( ' CELERY_RESULT_URL ' ) , broker = config . get ( ' CELERY_BROKER_URL ' ) )
chain_spec = ChainSpec . from_chain_str ( config . get ( ' CIC_CHAIN_SPEC ' ) )
chain_str = str ( chain_spec )
old_chain_spec = ChainSpec . from_chain_str ( args . old_chain_spec )
old_chain_str = str ( old_chain_spec )
user_dir = args . user_dir # user_out_dir from import_users.py
2021-03-06 18:55:51 +01:00
exit_on_error = args . x
2021-04-01 22:55:39 +02:00
active_tests = [ ]
exclude = [ ]
include = args . include
if args . include == None :
include = all_tests
for t in args . exclude :
if t not in all_tests :
raise ValueError ( ' Cannot exclude unknown verification " {} " ' . format ( t ) )
exclude . append ( t )
if args . skip_custodial :
logg . info ( ' will skip all custodial verifications ( {} ) ' . format ( ' , ' . join ( custodial_tests ) ) )
for t in custodial_tests :
if t not in exclude :
exclude . append ( t )
for t in include :
if t not in all_tests :
raise ValueError ( ' Cannot include unknown verification " {} " ' . format ( t ) )
if t not in exclude :
active_tests . append ( t )
logg . info ( ' will perform verification " {} " ' . format ( t ) )
api = None
for t in custodial_tests :
if t in active_tests :
from cic_eth . api . api_admin import AdminApi
api = AdminApi ( None )
logg . info ( ' activating custodial module ' . format ( t ) )
break
cols = os . get_terminal_size ( ) . columns
def to_terminalwidth ( s ) :
ss = s . ljust ( int ( cols ) - 1 )
ss + = " \r "
return ss
def default_outfunc ( s ) :
ss = to_terminalwidth ( s )
sys . stdout . write ( ss )
outfunc = default_outfunc
if logg . isEnabledFor ( logging . DEBUG ) :
outfunc = logg . debug
2021-03-06 18:55:51 +01:00
2021-05-15 09:40:34 +02:00
def send_ussd_request ( address , data_dir ) :
upper_address = strip_0x ( address ) . upper ( )
f = open ( os . path . join (
data_dir ,
' new ' ,
upper_address [ : 2 ] ,
upper_address [ 2 : 4 ] ,
upper_address + ' .json ' ,
) , ' r '
)
o = json . load ( f )
f . close ( )
p = Person . deserialize ( o )
phone = p . tel
session = uuid . uuid4 ( ) . hex
data = {
' sessionId ' : session ,
' serviceCode ' : config . get ( ' APP_SERVICE_CODE ' ) ,
' phoneNumber ' : phone ,
' text ' : ' ' ,
}
req = urllib . request . Request ( config . get ( ' _USSD_PROVIDER ' ) )
data_str = json . dumps ( data )
data_bytes = data_str . encode ( ' utf-8 ' )
req . add_header ( ' Content-Type ' , ' application/json ' )
req . data = data_bytes
response = urllib . request . urlopen ( req )
return response . read ( ) . decode ( ' utf-8 ' )
2021-03-06 18:55:51 +01:00
class VerifierState :
2021-04-01 22:55:39 +02:00
def __init__ ( self , item_keys , active_tests = None ) :
2021-03-06 18:55:51 +01:00
self . items = { }
for k in item_keys :
self . items [ k ] = 0
2021-04-01 22:55:39 +02:00
if active_tests == None :
self . active_tests = copy . copy ( item_keys )
else :
self . active_tests = copy . copy ( active_tests )
2021-03-06 18:55:51 +01:00
def poke ( self , item_key ) :
self . items [ item_key ] + = 1
def __str__ ( self ) :
r = ' '
for k in self . items . keys ( ) :
2021-04-01 22:55:39 +02:00
if k in self . active_tests :
r + = ' {} : {} \n ' . format ( k , self . items [ k ] )
else :
r + = ' {} : skipped \n ' . format ( k )
2021-03-06 18:55:51 +01:00
return r
2021-02-21 16:41:37 +01:00
class VerifierError ( Exception ) :
def __init__ ( self , e , c ) :
super ( VerifierError , self ) . __init__ ( e )
self . c = c
def __str__ ( self ) :
super_error = super ( VerifierError , self ) . __str__ ( )
return ' [ {} ] {} ' . format ( self . c , super_error )
class Verifier :
2021-03-06 18:55:51 +01:00
# TODO: what an awful function signature
2021-03-29 21:29:29 +02:00
def __init__ ( self , conn , cic_eth_api , gas_oracle , chain_spec , index_address , token_address , faucet_address , data_dir , exit_on_error = False ) :
2021-02-21 16:41:37 +01:00
self . conn = conn
self . gas_oracle = gas_oracle
self . chain_spec = chain_spec
self . index_address = index_address
self . token_address = token_address
2021-03-29 21:29:29 +02:00
self . faucet_address = faucet_address
2021-04-04 14:40:59 +02:00
self . erc20_tx_factory = ERC20 ( chain_spec , gas_oracle = gas_oracle )
self . tx_factory = TxFactory ( chain_spec , gas_oracle = gas_oracle )
2021-02-21 16:41:37 +01:00
self . api = cic_eth_api
self . data_dir = data_dir
2021-03-06 18:55:51 +01:00
self . exit_on_error = exit_on_error
2021-05-05 18:25:21 +02:00
self . faucet_tx_factory = Faucet ( chain_spec , gas_oracle = gas_oracle )
2021-03-06 18:55:51 +01:00
verifymethods = [ ]
for k in dir ( self ) :
if len ( k ) > 7 and k [ : 7 ] == ' verify_ ' :
2021-04-01 22:55:39 +02:00
logg . debug ( ' verifier has verify method {} ' . format ( k ) )
2021-03-06 18:55:51 +01:00
verifymethods . append ( k [ 7 : ] )
2021-02-21 16:41:37 +01:00
2021-04-01 22:55:39 +02:00
self . state = VerifierState ( verifymethods , active_tests = active_tests )
2021-02-21 16:41:37 +01:00
2021-03-06 18:55:51 +01:00
def verify_accounts_index ( self , address , balance = None ) :
2021-02-21 16:41:37 +01:00
tx = self . tx_factory . template ( ZERO_ADDRESS , self . index_address )
data = keccak256_string_to_hex ( ' have(address) ' ) [ : 8 ]
data + = eth_abi . encode_single ( ' address ' , address ) . hex ( )
tx = self . tx_factory . set_code ( tx , data )
tx = self . tx_factory . normalize ( tx )
o = jsonrpc_template ( )
o [ ' method ' ] = ' eth_call '
o [ ' params ' ] . append ( tx )
r = self . conn . do ( o )
logg . debug ( ' index check for {} : {} ' . format ( address , r ) )
n = eth_abi . decode_single ( ' uint256 ' , bytes . fromhex ( strip_0x ( r ) ) )
if n != 1 :
raise VerifierError ( n , ' accounts index ' )
def verify_balance ( self , address , balance ) :
2021-03-29 15:27:53 +02:00
o = self . erc20_tx_factory . balance ( self . token_address , address )
2021-02-21 16:41:37 +01:00
r = self . conn . do ( o )
actual_balance = int ( strip_0x ( r ) , 16 )
2021-03-01 21:15:17 +01:00
balance = int ( balance / 1000000 ) * 1000000
2021-02-21 16:41:37 +01:00
logg . debug ( ' balance for {} : {} ' . format ( address , balance ) )
if balance != actual_balance :
raise VerifierError ( ( actual_balance , balance ) , ' balance ' )
2021-03-06 18:55:51 +01:00
def verify_local_key ( self , address , balance = None ) :
2021-03-29 15:27:53 +02:00
t = self . api . have_account ( address , self . chain_spec )
r = t . get ( )
2021-02-21 16:41:37 +01:00
logg . debug ( ' verify local key result {} ' . format ( r ) )
if r != address :
raise VerifierError ( ( address , r ) , ' local key ' )
2021-03-29 21:29:29 +02:00
def verify_gas ( self , address , balance_token = None ) :
o = balance ( address )
r = self . conn . do ( o )
2021-04-05 17:07:09 +02:00
logg . debug ( ' wtf {} ' . format ( r ) )
2021-03-29 21:29:29 +02:00
actual_balance = int ( strip_0x ( r ) , 16 )
if actual_balance == 0 :
raise VerifierError ( ( address , actual_balance ) , ' gas ' )
def verify_faucet ( self , address , balance_token = None ) :
o = self . faucet_tx_factory . usable_for ( self . faucet_address , address )
r = self . conn . do ( o )
if self . faucet_tx_factory . parse_usable_for ( r ) :
raise VerifierError ( ( address , r ) , ' faucet ' )
2021-03-06 18:55:51 +01:00
def verify_metadata ( self , address , balance = None ) :
2021-02-21 16:41:37 +01:00
k = generate_metadata_pointer ( bytes . fromhex ( strip_0x ( address ) ) , ' :cic.person ' )
2021-04-09 15:00:15 +02:00
url = os . path . join ( config . get ( ' _META_PROVIDER ' ) , k )
2021-02-21 16:41:37 +01:00
logg . debug ( ' verify metadata url {} ' . format ( url ) )
try :
res = urllib . request . urlopen ( url )
except urllib . error . HTTPError as e :
raise VerifierError (
' ( {} ) {} ' . format ( url , e ) ,
' metadata (person) ' ,
)
b = res . read ( )
o_retrieved = json . loads ( b . decode ( ' utf-8 ' ) )
upper_address = strip_0x ( address ) . upper ( )
f = open ( os . path . join (
self . data_dir ,
' new ' ,
upper_address [ : 2 ] ,
upper_address [ 2 : 4 ] ,
upper_address + ' .json ' ,
) , ' r '
)
o_original = json . load ( f )
f . close ( )
if o_original != o_retrieved :
raise VerifierError ( o_retrieved , ' metadata (person) ' )
2021-04-09 15:00:15 +02:00
def verify_metadata_phone ( self , address , balance = None ) :
upper_address = strip_0x ( address ) . upper ( )
f = open ( os . path . join (
self . data_dir ,
' new ' ,
upper_address [ : 2 ] ,
upper_address [ 2 : 4 ] ,
upper_address + ' .json ' ,
) , ' r '
)
o = json . load ( f )
f . close ( )
p = Person . deserialize ( o )
k = generate_metadata_pointer ( p . tel . encode ( ' utf-8 ' ) , ' :cic.phone ' )
url = os . path . join ( config . get ( ' _META_PROVIDER ' ) , k )
logg . debug ( ' verify metadata phone url {} ' . format ( url ) )
try :
res = urllib . request . urlopen ( url )
except urllib . error . HTTPError as e :
raise VerifierError (
' ( {} ) {} ' . format ( url , e ) ,
' metadata (phone) ' ,
)
b = res . read ( )
address_recovered = json . loads ( b . decode ( ' utf-8 ' ) )
address_recovered = address_recovered . replace ( ' " ' , ' ' )
2021-04-14 10:17:47 +02:00
try :
2021-04-28 11:11:39 +02:00
upper_address_recovered = strip_0x ( address_recovered ) . upper ( )
2021-04-14 10:17:47 +02:00
except ValueError :
raise VerifierError ( address_recovered , ' metadata (phone) address {} address recovered {} ' . format ( address , address_recovered ) )
2021-04-28 11:11:39 +02:00
if upper_address != upper_address_recovered :
2021-04-09 15:00:15 +02:00
raise VerifierError ( address_recovered , ' metadata (phone) ' )
def verify_ussd ( self , address , balance = None ) :
2021-05-15 09:40:34 +02:00
response_data = send_ussd_request ( address , self . data_dir )
2021-04-09 15:00:15 +02:00
state = response_data [ : 3 ]
out = response_data [ 4 : ]
m = ' {} {} ' . format ( state , out [ : 7 ] )
if m != ' CON Welcome ' :
raise VerifierError ( response_data , ' ussd ' )
2021-05-15 09:40:34 +02:00
def verify_ussd_pins ( self , address , balance ) :
response_data = send_ussd_request ( address , self . data_dir )
if response_data [ : 11 ] != ' CON Balance ' :
raise VerifierError ( response_data , ' pins ' )
2021-04-09 15:00:15 +02:00
2021-04-01 22:55:39 +02:00
def verify ( self , address , balance , debug_stem = None ) :
2021-03-06 18:55:51 +01:00
2021-04-01 22:55:39 +02:00
for k in active_tests :
s = ' {} {} ' . format ( debug_stem , k )
outfunc ( s )
2021-03-06 18:55:51 +01:00
try :
m = getattr ( self , ' verify_ {} ' . format ( k ) )
m ( address , balance )
except VerifierError as e :
logline = ' verification {} failed for {} : {} ' . format ( k , address , str ( e ) )
if self . exit_on_error :
logg . critical ( logline )
sys . exit ( 1 )
logg . error ( logline )
self . state . poke ( k )
def __str__ ( self ) :
return str ( self . state )
2021-02-21 16:41:37 +01:00
def main ( ) :
global chain_str , block_offset , user_dir
2021-03-29 15:27:53 +02:00
conn = EthHTTPConnection ( config . get ( ' ETH_PROVIDER ' ) )
gas_oracle = OverrideGasOracle ( conn = conn , limit = 8000000 )
2021-02-21 16:41:37 +01:00
# Get Token registry address
2021-04-04 14:40:59 +02:00
txf = TxFactory ( chain_spec , signer = None , gas_oracle = gas_oracle , nonce_oracle = None )
2021-02-21 16:41:37 +01:00
tx = txf . template ( ZERO_ADDRESS , config . get ( ' CIC_REGISTRY_ADDRESS ' ) )
2021-03-29 21:29:29 +02:00
# TODO: replace with cic-eth-registry
2021-02-21 16:41:37 +01:00
registry_addressof_method = keccak256_string_to_hex ( ' addressOf(bytes32) ' ) [ : 8 ]
data = add_0x ( registry_addressof_method )
data + = eth_abi . encode_single ( ' bytes32 ' , b ' TokenRegistry ' ) . hex ( )
txf . set_code ( tx , data )
o = jsonrpc_template ( )
o [ ' method ' ] = ' eth_call '
o [ ' params ' ] . append ( txf . normalize ( tx ) )
o [ ' params ' ] . append ( ' latest ' )
r = conn . do ( o )
2021-03-29 15:27:53 +02:00
token_index_address = to_checksum_address ( eth_abi . decode_single ( ' address ' , bytes . fromhex ( strip_0x ( r ) ) ) )
2021-02-21 16:41:37 +01:00
logg . info ( ' found token index address {} ' . format ( token_index_address ) )
data = add_0x ( registry_addressof_method )
data + = eth_abi . encode_single ( ' bytes32 ' , b ' AccountRegistry ' ) . hex ( )
txf . set_code ( tx , data )
o = jsonrpc_template ( )
o [ ' method ' ] = ' eth_call '
o [ ' params ' ] . append ( txf . normalize ( tx ) )
o [ ' params ' ] . append ( ' latest ' )
r = conn . do ( o )
2021-03-29 15:27:53 +02:00
account_index_address = to_checksum_address ( eth_abi . decode_single ( ' address ' , bytes . fromhex ( strip_0x ( r ) ) ) )
2021-02-21 16:41:37 +01:00
logg . info ( ' found account index address {} ' . format ( account_index_address ) )
2021-03-29 21:29:29 +02:00
data = add_0x ( registry_addressof_method )
data + = eth_abi . encode_single ( ' bytes32 ' , b ' Faucet ' ) . hex ( )
txf . set_code ( tx , data )
o = jsonrpc_template ( )
o [ ' method ' ] = ' eth_call '
o [ ' params ' ] . append ( txf . normalize ( tx ) )
o [ ' params ' ] . append ( ' latest ' )
r = conn . do ( o )
faucet_address = to_checksum_address ( eth_abi . decode_single ( ' address ' , bytes . fromhex ( strip_0x ( r ) ) ) )
logg . info ( ' found faucet {} ' . format ( faucet_address ) )
2021-02-21 16:41:37 +01:00
2021-04-01 22:55:39 +02:00
2021-02-21 16:41:37 +01:00
# Get Sarafu token address
tx = txf . template ( ZERO_ADDRESS , token_index_address )
data = add_0x ( registry_addressof_method )
h = hashlib . new ( ' sha256 ' )
h . update ( b ' SRF ' )
z = h . digest ( )
data + = eth_abi . encode_single ( ' bytes32 ' , z ) . hex ( )
txf . set_code ( tx , data )
o = jsonrpc_template ( )
o [ ' method ' ] = ' eth_call '
o [ ' params ' ] . append ( txf . normalize ( tx ) )
o [ ' params ' ] . append ( ' latest ' )
r = conn . do ( o )
2021-03-29 15:27:53 +02:00
sarafu_token_address = to_checksum_address ( eth_abi . decode_single ( ' address ' , bytes . fromhex ( strip_0x ( r ) ) ) )
2021-02-21 16:41:37 +01:00
logg . info ( ' found token address {} ' . format ( sarafu_token_address ) )
balances = { }
f = open ( ' {} /balances.csv ' . format ( user_dir , ' r ' ) )
i = 0
while True :
l = f . readline ( )
if l == None :
break
r = l . split ( ' , ' )
try :
2021-03-29 15:27:53 +02:00
address = to_checksum_address ( r [ 0 ] )
2021-03-06 18:55:51 +01:00
#sys.stdout.write('loading balance {} {}'.format(i, address).ljust(200) + "\r")
2021-04-01 22:55:39 +02:00
outfunc ( ' loading balance {} {} ' . format ( i , address ) ) #.ljust(200))
2021-02-21 16:41:37 +01:00
except ValueError :
break
2021-02-22 21:00:18 +01:00
balance = int ( r [ 1 ] . rstrip ( ) )
2021-02-21 16:41:37 +01:00
balances [ address ] = balance
i + = 1
f . close ( )
2021-03-29 21:29:29 +02:00
verifier = Verifier ( conn , api , gas_oracle , chain_spec , account_index_address , sarafu_token_address , faucet_address , user_dir , exit_on_error )
2021-02-21 16:41:37 +01:00
user_new_dir = os . path . join ( user_dir , ' new ' )
2021-04-01 22:55:39 +02:00
i = 0
2021-02-21 16:41:37 +01:00
for x in os . walk ( user_new_dir ) :
for y in x [ 2 ] :
if y [ len ( y ) - 5 : ] != ' .json ' :
continue
filepath = os . path . join ( x [ 0 ] , y )
f = open ( filepath , ' r ' )
try :
o = json . load ( f )
except json . decoder . JSONDecodeError as e :
f . close ( )
logg . error ( ' load error for {} : {} ' . format ( y , e ) )
continue
f . close ( )
u = Person . deserialize ( o )
2021-04-01 22:55:39 +02:00
#logg.debug('data {}'.format(u.identities['evm']))
2021-02-21 16:41:37 +01:00
2021-02-22 21:00:18 +01:00
subchain_str = ' {} : {} ' . format ( chain_spec . common_name ( ) , chain_spec . network_id ( ) )
new_address = u . identities [ ' evm ' ] [ subchain_str ] [ 0 ]
subchain_str = ' {} : {} ' . format ( old_chain_spec . common_name ( ) , old_chain_spec . network_id ( ) )
old_address = u . identities [ ' evm ' ] [ subchain_str ] [ 0 ]
2021-03-06 18:55:51 +01:00
balance = 0
try :
balance = balances [ old_address ]
except KeyError :
logg . info ( ' no old balance found for {} , assuming 0 ' . format ( old_address ) )
2021-02-21 16:41:37 +01:00
2021-04-01 22:55:39 +02:00
s = ' checking {} : {} -> {} = {} ' . format ( i , old_address , new_address , balance )
verifier . verify ( new_address , balance , debug_stem = s )
i + = 1
2021-02-21 16:41:37 +01:00
2021-03-06 18:55:51 +01:00
print ( verifier )
2021-02-21 16:41:37 +01:00
if __name__ == ' __main__ ' :
main ( )