Rehabilitate import scripts after adjustments for traffic generator
This commit is contained in:
parent
fdb16130a2
commit
5108d84635
@ -51,7 +51,7 @@ argparser.add_argument('-c', type=str, default=config_dir, help='config root to
|
|||||||
argparser.add_argument('--old-chain-spec', type=str, dest='old_chain_spec', default='oldchain:1', help='chain spec')
|
argparser.add_argument('--old-chain-spec', type=str, dest='old_chain_spec', default='oldchain:1', help='chain spec')
|
||||||
argparser.add_argument('-i', '--chain-spec', type=str, dest='i', help='chain spec')
|
argparser.add_argument('-i', '--chain-spec', type=str, dest='i', help='chain spec')
|
||||||
argparser.add_argument('-r', '--registry-address', type=str, dest='r', help='CIC Registry address')
|
argparser.add_argument('-r', '--registry-address', type=str, dest='r', help='CIC Registry address')
|
||||||
argparser.add_argument('--token-symbol', default='SRF', type=str, dest='r', help='Token symbol to use for trnsactions')
|
argparser.add_argument('--token-symbol', default='SRF', type=str, dest='token_symbol', help='Token symbol to use for trnsactions')
|
||||||
argparser.add_argument('--head', action='store_true', help='start at current block height (overrides --offset)')
|
argparser.add_argument('--head', action='store_true', help='start at current block height (overrides --offset)')
|
||||||
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')
|
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')
|
||||||
argparser.add_argument('-q', type=str, default='cic-eth', help='celery queue to submit transaction tasks to')
|
argparser.add_argument('-q', type=str, default='cic-eth', help='celery queue to submit transaction tasks to')
|
||||||
@ -99,7 +99,7 @@ if args.head:
|
|||||||
else:
|
else:
|
||||||
block_offset = args.offset
|
block_offset = args.offset
|
||||||
|
|
||||||
chain_spec = ChainSpec.from_chain_str('evm:' + chain_str)
|
chain_spec = ChainSpec.from_chain_str(chain_str)
|
||||||
old_chain_spec_str = args.old_chain_spec
|
old_chain_spec_str = args.old_chain_spec
|
||||||
|
|
||||||
user_dir = args.user_dir # user_out_dir from import_users.py
|
user_dir = args.user_dir # user_out_dir from import_users.py
|
||||||
@ -123,7 +123,7 @@ class Handler:
|
|||||||
return 'balance_handler'
|
return 'balance_handler'
|
||||||
|
|
||||||
|
|
||||||
def filter(self, conn, block, tx):
|
def filter(self, conn, block, tx, db_session):
|
||||||
if tx.payload == None or len(tx.payload) == 0:
|
if tx.payload == None or len(tx.payload) == 0:
|
||||||
logg.debug('no payload, skipping {}'.format(tx))
|
logg.debug('no payload, skipping {}'.format(tx))
|
||||||
return
|
return
|
||||||
@ -148,9 +148,13 @@ class Handler:
|
|||||||
u = Person.deserialize(o)
|
u = Person.deserialize(o)
|
||||||
original_address = u.identities['evm'][old_chain_spec_str][0]
|
original_address = u.identities['evm'][old_chain_spec_str][0]
|
||||||
balance = self.balances[original_address]
|
balance = self.balances[original_address]
|
||||||
logg.info('registered {} originally {} ({}) tx hash {} balance {}'.format(recipient, original_address, u, tx.hash, balance))
|
|
||||||
|
|
||||||
(tx_hash_hex, o) = self.tx_factory.erc20_transfer(self.token_address, signer_address, recipient, balance)
|
# TODO: store token object in handler ,get decimals from there
|
||||||
|
multiplier = 10**6
|
||||||
|
balance_full = balance * multiplier
|
||||||
|
logg.info('registered {} originally {} ({}) tx hash {} balance {}'.format(recipient, original_address, u, tx.hash, balance_full))
|
||||||
|
|
||||||
|
(tx_hash_hex, o) = self.tx_factory.erc20_transfer(self.token_address, signer_address, recipient, balance_full)
|
||||||
logg.info('submitting erc20 transfer tx {} for recipient {}'.format(tx_hash_hex, recipient))
|
logg.info('submitting erc20 transfer tx {} for recipient {}'.format(tx_hash_hex, recipient))
|
||||||
r = conn.do(o)
|
r = conn.do(o)
|
||||||
# except TypeError as e:
|
# except TypeError as e:
|
||||||
@ -186,7 +190,7 @@ class BlockGetter:
|
|||||||
return b
|
return b
|
||||||
|
|
||||||
|
|
||||||
def progress_callback(s, block_number, tx_index):
|
def progress_callback(block_number, tx_index, s):
|
||||||
sys.stdout.write(s.ljust(200) + "\n")
|
sys.stdout.write(s.ljust(200) + "\n")
|
||||||
|
|
||||||
|
|
||||||
@ -259,9 +263,10 @@ def main():
|
|||||||
# break
|
# break
|
||||||
# f.close()
|
# f.close()
|
||||||
|
|
||||||
|
# TODO get decimals from token
|
||||||
balances = {}
|
balances = {}
|
||||||
f = open('{}/balances.csv'.format(user_dir, 'r'))
|
f = open('{}/balances.csv'.format(user_dir, 'r'))
|
||||||
remove_zeros = 10**12
|
remove_zeros = 10**6
|
||||||
i = 0
|
i = 0
|
||||||
while True:
|
while True:
|
||||||
l = f.readline()
|
l = f.readline()
|
||||||
@ -270,7 +275,7 @@ def main():
|
|||||||
r = l.split(',')
|
r = l.split(',')
|
||||||
try:
|
try:
|
||||||
address = to_checksum(r[0])
|
address = to_checksum(r[0])
|
||||||
sys.stdout.write('loading balance {} {}'.format(i, address).ljust(200) + "\r")
|
sys.stdout.write('loading balance {} {} {}'.format(i, address, r[1]).ljust(200) + "\r")
|
||||||
except ValueError:
|
except ValueError:
|
||||||
break
|
break
|
||||||
balance = int(int(r[1].rstrip()) / remove_zeros)
|
balance = int(int(r[1].rstrip()) / remove_zeros)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
psycopg2==2.8.6
|
psycopg2==2.8.6
|
||||||
chainlib~=0.0.1a15
|
chainlib~=0.0.1a15
|
||||||
chainsyncer~=0.0.1a9
|
chainsyncer~=0.0.1a10
|
||||||
cic-eth~=0.10.0a30
|
cic-eth==0.10.0a30+build.fdb16130
|
||||||
cic-registry~=0.5.3a19
|
cic-registry~=0.5.3a19
|
||||||
confini~=0.3.6rc3
|
confini~=0.3.6rc3
|
||||||
celery==4.4.7
|
celery==4.4.7
|
||||||
|
@ -321,6 +321,7 @@ class Handler:
|
|||||||
|
|
||||||
if e != None:
|
if e != None:
|
||||||
logg.info('failed {}: {}'.format(str(traffic_item), e))
|
logg.info('failed {}: {}'.format(str(traffic_item), e))
|
||||||
|
self.traffic_router.release(traffic_item)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if t == None:
|
if t == None:
|
||||||
|
@ -31,7 +31,7 @@ set -e
|
|||||||
set -a
|
set -a
|
||||||
|
|
||||||
# We need to not install these here...
|
# We need to not install these here...
|
||||||
pip install --extra-index-url $DEV_PIP_EXTRA_INDEX_URL cic-eth==0.10.0a30 chainlib==0.0.1a16
|
pip install --extra-index-url $DEV_PIP_EXTRA_INDEX_URL cic-eth==0.10.0a30+build.fdb16130 chainlib==0.0.1a16
|
||||||
|
|
||||||
>&2 echo "create account for gas gifter"
|
>&2 echo "create account for gas gifter"
|
||||||
old_gas_provider=$DEV_ETH_ACCOUNT_GAS_PROVIDER
|
old_gas_provider=$DEV_ETH_ACCOUNT_GAS_PROVIDER
|
||||||
|
Loading…
Reference in New Issue
Block a user