cic-stack/apps/contract-migration/scripts
Louis Holbrook 5f01135b04 Rehabilitate CLI and API after nonce changes 2021-03-07 18:01:44 +00:00
..
cmd Refactor import scripts 2021-02-21 15:41:37 +00:00
common Refactor import scripts 2021-02-21 15:41:37 +00:00
config Refactor import scripts 2021-02-21 15:41:37 +00:00
false Refactor import scripts 2021-02-21 15:41:37 +00:00
local Rehabilitate import scripts after leak fixes 2021-02-22 20:00:18 +00:00
README.md Rehabilitate import scripts after leak fixes 2021-02-22 20:00:18 +00:00
create_import_users.py Rehabilitate CLI and API after nonce changes 2021-03-07 18:01:44 +00:00
import_balance.py cic-eth: Introduce transfer authorization contract 2021-03-04 15:06:14 +00:00
import_balance.sh Refactor import scripts 2021-02-21 15:41:37 +00:00
import_meta.js Rehabilitate CLI and API after nonce changes 2021-03-07 18:01:44 +00:00
import_users.py Rehabilitate CLI and API after nonce changes 2021-03-07 18:01:44 +00:00
import_users.sh Refactor import scripts 2021-02-21 15:41:37 +00:00
package-lock.json Refactor import scripts 2021-02-21 15:41:37 +00:00
requirements.txt Rehabilitate CLI and API after nonce changes 2021-03-07 18:01:44 +00:00
traffic.py Refactor import scripts 2021-02-21 15:41:37 +00:00
verify.py cic-eth: Make nonce separate task 2021-03-06 17:55:51 +00:00

README.md

DATA GENERATION TOOLS

This folder contains tools to generate and import test data.

DATA CREATION

Does not need the cluster to run.

Vanilla:

python create_import_users.py [--dir <datadir>] <number_of_users>

If you want to use the import_balance.py script to add to the user's balance from an external address, add:

python create_import_users.py --gift-threshold <max_units_to_send> [--dir <datadir>] <number_of_users>

IMPORT

Make sure the following is running in the cluster: * eth * postgres * redis * cic-eth-tasker * cic-eth-dispatcher * cic-eth-manager-head

You will want to run these in sequence:

1. Metadata

node import_meta.js <datadir> <number_of_users>

Monitors a folder for output from the import_users.py script, adding the metadata found to the cic-meta service.

2. Balances

(Only if you used the --gift-threshold option above)

python -c config -i <newchain:id> -r <cic_registry_address> -p <eth_provider> --head -y ../keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c <datadir>

This will monitor new mined blocks and send balances to the newly created accounts.

3. Users

Without any modifications to the cluster and config files:

python import_users.py -c config --redis-host-callback redis <datadir>

** A note on the The callback**: The script uses a redis callback to retrieve the newly generated custodial address. This is the redis server from the perspective of the cic-eth component.

VERIFY

python verify.py -c config -i <newchain:id> -r <cic_registry_address> -p <eth_provider> <datadir>

Checks * Private key is in cic-eth keystore * Address is in accounts index * Address has balance matching the gift threshold * Metadata can be retrieved and has exact match

Should exit with code 0 if all input data is found in the respective services.

KNOWN ISSUES

If the faucet disbursement is set to a non-zero amount, the balances will be off. The verify script needs to be improved to check the faucet amount.