3.2 KiB
3.2 KiB
CIC Token Deployment Tool
CIC-CLI provides tooling to generate and publish metadata in relation to token deployments.
pip install --extra-index-url https://pip.grassrootseconomics.net cic[eth]
Setup
Requirements
- Install poetry
Install Kubectl
sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates curl
sudo curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg
echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list
sudo apt-get update
sudo apt-get install -y kubectl
Deploy to the testnet
- Download testnet cluster config from https://cloud.digitalocean.com/kubernetes/clusters
- Move the config to
$HOME/.kube/
- Run
kubectl -n grassroots --kubeconfig=$HOME/.kube/<config_file_name>.yaml get pods
- Copy the name of the meta pod (e.g
cic-meta-server-67dc7c6468-8rhdq
) - Port foward the meta pod to the local machine using
kubectl port-forward pods/<name_of_meta_pod> 6700:8000 -n grassroots --kubeconfig=$HOME/.kube/<config_file_name>.yaml
- Clone this repository to your local machine
- Run
poetry install -E eth
in the repo root - Open
./config/testnet/config.ini
and change- [auth]keyfile_path
- [wallet]key_file
- Open a new terminal and run
poetry run cic wizard -c ./config/testnet ./somewhere
Usage
Using the wizard
# Local
cic wizard ./somewhere -c ./config/docker
# Test Net
cic wizard ./somewhere -c ./config/testnet
Modular
Some of the concepts described below assume familiarity with base concepts of the CIC architecture. Please refer to the appropriate documentation for more information.
To initialize a new token deployment for the EVM:
cic init --target eth --name <token_name> --symbol <token_symbol> --precision <token_value_precision> <settings_folder>
To automatically fill in settings detected in the network for the EVM:
cic ext --registry <contract_registry_address> -d <settings_folder> -i <chain_spec> -p <rpc_endpoint> eth
Structure of the components
CIC-CLI is designed to interface any network type backend. The current state of the package contains interface to EVM only. Thus, the examples below are limited to the context of the EVM.
Development
Setup
poetry install -E eth
Running the CLI
poetry run cic -h
poetry run cic wizard ./somewhere -c ./config/docker
Importing a wallet from metamask
- Export the accounts private key Instructions
- Save the private key to a file
- Run
eth-keyfile -k <file> > ~/.config/cic/keystore/keyfile.json
Tests
poetry run pytest