cic-docs/misc-commands.md

96 lines
4.8 KiB
Markdown
Raw Normal View History

2021-07-16 10:55:01 +02:00
# Environment
2021-07-16 12:42:19 +02:00
git clone https://gitlab.com/grassrootseconomics/cic-internal-integration/
2021-07-16 14:48:31 +02:00
sudo RUN_MASK=3 COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 DEV_FAUCET_AMOUNT=100000000 TOKEN_TYPE=erc20_demurrage_token CIC_DEFAULT_TOKEN_SYMBOL=SARAFU docker-compose up --build
2021-07-16 12:42:19 +02:00
that should set you up, and then you need to determine when the setup is done by running:
docker container ls -a
then choosing the name of the contract migration container:
docker logs -f <docker_container_name_of_contract_migration>
when that logs exits, you're good
2021-07-16 10:55:01 +02:00
## no containers or volumes leftover from previous attempts
cd apps/data-seeding
python -m venv ~/code/cic/venv/
source ~/code/cic/venv/bin/activate
python -m pip install --upgrade pip
## setup modified requirements.txt for Mac (make sure to pull through latest changes into cic-base)
pip install requirements-magic==0.0.1a2
python ~/code/gitlab/grassrootseconomics/python-requirements-magic/requirements_magic/runnable/update.py ~/code/cic/requirements.txt ~/code/gitlab/grassrootseconomics/cic-internal-integration/apps/data-seeding/requirements.txt ~/code/gitlab/grassrootseconomics/cic-base/full_graph_requirements.txt ~/code/gitlab/grassrootseconomics/cic-base/full_requirements.txt ~/code/gitlab/grassrootseconomics/cic-base/requirements.txt > ~/code/cic/requirements-new.txt
## install dependencies
pip install -r ~/code/cic/requirements-new.txt --extra-index-url https://pip.grassrootseconomics.net:8433 --index https://pypi.org/simple
## Step 1 - Data creation
python create_import_users.py --gift-threshold 10000 --dir ~/code/cic/out 50
## Step 2 - Services
### open new terminal window
cd ../..
### docker-compose down -v
docker-compose up eth postgres redis
RUN_MASK=1 docker-compose up --build contract-migration
### (wait until complete)
docker-compose up --build cic-eth-tasker
RUN_MASK=2 docker-compose up contract-migration
### (wait until complete)
docker-compose up --build cic-eth-tracker cic-eth-dispatcher
docker-compose up --build cic-cache-tracker
docker-compose up --build cic-cache-tasker cic-cache-server cic-eth-retrier cic-meta-server cic-notify-tasker cic-user-ussd-server cic-user-tasker
2021-07-16 14:48:31 +02:00
## Step 3 - User Imports
### custodial engine import scripts
### run in sequence, in first terminal
2021-07-16 10:55:01 +02:00
python cic_eth/import_balance.py -v -c config -p http://localhost:63545 -r 0xea6225212005e86a4490018ded4bf37f3e772161 -y ../contract-migration/keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c --head ~/code/cic/out
2021-07-16 14:48:31 +02:00
### in another terminal with venv
2021-07-16 10:55:01 +02:00
python cic_eth/import_users.py -v -c config --redis-host-callback redis ~/code/cic/out
2021-07-16 14:48:31 +02:00
### check the cic-cache DB's tx table
2021-07-16 10:55:01 +02:00
## Step 4 - Metadata import
nvm use 14.17.0
2021-07-16 14:48:31 +02:00
### temporary: lock "cic-client-meta": "0.0.7-alpha.6" in package.json
2021-07-16 10:55:01 +02:00
npm install
node cic_meta/import_meta.js ~/code/cic/out 50
node cic_meta/import_meta_phone.js ~/code/cic/out 50
## Step 5 - Verify
2021-07-16 14:48:31 +02:00
python verify.py -v -c config -r 0xea6225212005e86a4490018ded4bf37f3e772161 -p http://localhost:63545 --token-symbol GFT --exclude ussd --skip-custodial ~/code/cic/out
2021-07-16 10:55:01 +02:00
python verify.py -v -c config -r 0xea6225212005e86a4490018ded4bf37f3e772161 -p http://localhost:63545 --token-symbol GFT --exclude ussd --exclude metadata --exclude metadata_phone --exclude ussd_pins --skip-custodial ~/code/cic/out
# Token Creation
2020-04-17 09:26:34 +02:00
git clone https://gitlab.com/nolash/grassroots-app
2021-06-18 08:35:07 +02:00
2021-07-16 10:55:01 +02:00
## Setup:
2021-06-18 08:35:07 +02:00
sudo docker-compose down -v
sudo RUN_MASK=3 docker-compose up build
<cic-internal-integration>/apps/data-seeding:
2021-07-16 10:55:01 +02:00
## Deploy token
2021-06-18 08:35:07 +02:00
erc20-demurrage-token-deploy help
(venv) wor@gecon:~/src/ge/erc20-demurrage-token/python$ PYTHONPATH=. python erc20_demurrage_token/runnable/deploy.py -p http://localhost:63545 -y /home/wor/src/ge/cic-internal-integration/apps/contract-migration/keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c -i evm:bloxberg:8996 --name "Chama Token" --symbol "CHM" -vv -ww -c config --supply-limit 1000000
(venv) wor@gecon:~/src/ge/erc20-demurrage-token/python$ eth-get -p http://localhost:63545 0xcf38135da34784a9db226772dcf740089f466241ba82ab4a2f4b5265fcb23a4d
giftable-token-gift -p http://localhost:63545 -y ./keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c -i evm:bloxberg:8996 -vv -w -a <token_address> --recipient <recipient_address> <amount>
giftable-token-gift -p http://localhost:63545 -y /home/wor/src/ge/cic-internal-integration/apps/contract-migration/keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c -i evm:bloxberg:8996 -vv -w -a 0x6ca3cb14aa6f761712e1c18646afba4d5ae249e8 100
(venv) wor@gecon:~/src/ge/erc20-demurrage-token/python$ erc20-balance -p http://localhost:63545 -a 0x6Ca3cB14aA6F761712E1C18646AfBA4d5Ae249E8 0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C
Chama Token (CHM): 0.000100