cic-internal-integration/apps/contract-migration/README.md

48 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

# CIC-stack system bootstrap scripts
2021-01-24 21:16:22 +01:00
## 1. Deploy global contracts.
2021-01-24 21:16:22 +01:00
Global contracts are contracts that may or may not be used to contribute to a data store intended for consumption across instances.
2021-01-24 21:16:22 +01:00
In the current version of the scripts, the only contract deployed is the `AddressDeclarator`. Also, in the current version, the `AddressDeclarator` is required as a storage backend for some of the instance contracts.
2021-01-24 21:16:22 +01:00
## 2. Deploy instance contracts.
2021-01-24 21:16:22 +01:00
Instance contracts are contracts whose contents are limited to the context of a single custodial engine system.
2021-01-24 21:16:22 +01:00
This includes a registry of contracts used by the engine, as well as registry contracts for user accounts and tokens.
2021-01-24 21:16:22 +01:00
## 3. Deploy token.
2021-01-24 21:16:22 +01:00
Deploys a CIC token, adding it to the token registry.
2021-01-24 21:16:22 +01:00
The first token deployed becomes the default token of the instance.
2021-01-24 21:16:22 +01:00
In the current version of the scripts, two token types may be deployed; [`giftable_erc20_token`](https://gitlab.com/cicnet/eth-erc20) and [`erc20_demurrage_token`](https://gitlab.com/cicnet/erc20-demurrage-token).
2021-01-24 21:16:22 +01:00
This step may be run multiple times, as long as the token symbol is different from all previously deployed tokens.
2021-01-24 21:16:22 +01:00
## 4. Initialize custodial engine.
Adds system accounts to the custodial engine, and unlocks the initialization seal. After this step, the custodial system is ready to use.
## Services dependency graph
1. evm
2. bootstrap runlevel 1 - deploy global contracts (RUN_MASK=1 docker-compose up bootstrap)
3. bootstrap runlevel 2 - deploy instance contracts (RUN_MASK=2 docker-compose up bootstrap)
4. bootstrap runlevel 4 - deploy token (RUN_MASK=4 docker-compose up bootstrap)
5. redis
6. postgres
7. cic-eth-tasker
8. boostrap runlevel 8 - deploy custodial contracts (RUN_MASK=8 docker-compose up bootstrap)
9. boostrap runlevel 16 - data seeding for development (RUN_MASK=16 docker-compose up bootstrap)
10. bring up the remainig services (docker-compose up -d)