Compare commits
25 Commits
lash/meta-
...
philip/tok
| Author | SHA1 | Date | |
|---|---|---|---|
|
d233019e64
|
|||
|
9743428429
|
|||
|
92f82b6057
|
|||
|
d64d95b958
|
|||
|
30649e71f4
|
|||
|
31cd5927b1
|
|||
|
82e24b19d6
|
|||
|
61379ac2ac
|
|||
|
00255e4eeb
|
|||
|
|
8855ccd3d2 | ||
|
|
09dfdbb38a | ||
| 1abb642361 | |||
| 93bcbd7d51 | |||
|
|
818899670a | ||
|
|
1882910a8e | ||
| 3cc909c936 | |||
| 60b6e1abdb | |||
|
|
9c7e72f71c | ||
|
|
e3acc1757a | ||
|
|
8250b15d32 | ||
|
|
31d7cf5789 | ||
|
|
2544c159c2 | ||
|
|
7691d9a127 | ||
|
|
a2a3634683 | ||
|
|
fe0835a4e7 |
@@ -10,6 +10,7 @@ include:
|
|||||||
#- local: 'apps/data-seeding/.gitlab-ci.yml'
|
#- local: 'apps/data-seeding/.gitlab-ci.yml'
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
|
- version
|
||||||
- build
|
- build
|
||||||
- test
|
- test
|
||||||
- deploy
|
- deploy
|
||||||
@@ -20,9 +21,39 @@ variables:
|
|||||||
DOCKER_BUILDKIT: "1"
|
DOCKER_BUILDKIT: "1"
|
||||||
COMPOSE_DOCKER_CLI_BUILD: "1"
|
COMPOSE_DOCKER_CLI_BUILD: "1"
|
||||||
CI_DEBUG_TRACE: "true"
|
CI_DEBUG_TRACE: "true"
|
||||||
|
SEMVERBOT_VERSION: "0.2.0"
|
||||||
|
|
||||||
before_script:
|
#before_script:
|
||||||
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
# - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
||||||
|
|
||||||
|
version:
|
||||||
|
#image: python:3.7-stretch
|
||||||
|
image: registry.gitlab.com/grassrootseconomics/cic-base-images/ci-version:b01318ae
|
||||||
|
stage: version
|
||||||
|
script:
|
||||||
|
- mkdir -p ~/.ssh && chmod 700 ~/.ssh
|
||||||
|
- ssh-keyscan gitlab.com >> ~/.ssh/known_hosts && chmod 644 ~/.ssh/known_hosts
|
||||||
|
- eval $(ssh-agent -s)
|
||||||
|
- ssh-add <(echo "$SSH_PRIVATE_KEY")
|
||||||
|
- git remote set-url origin git@gitlab.com:grassrootseconomics/cic-internal-integration.git
|
||||||
|
- export TAG=$(sbot predict version -m auto)
|
||||||
|
- |
|
||||||
|
if [[ -z $TAG ]]
|
||||||
|
then
|
||||||
|
echo "tag could not be set $@"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
- echo $TAG > version
|
||||||
|
- git tag -a v$TAG -m "ci tagged"
|
||||||
|
- git push origin v$TAG
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- version
|
||||||
|
rules:
|
||||||
|
- if: $CI_COMMIT_REF_PROTECTED == "true"
|
||||||
|
when: always
|
||||||
|
- if: $CI_COMMIT_REF_NAME == "master"
|
||||||
|
when: always
|
||||||
|
|
||||||
# runs on protected branches and pushes to repo
|
# runs on protected branches and pushes to repo
|
||||||
build-push:
|
build-push:
|
||||||
@@ -30,12 +61,17 @@ build-push:
|
|||||||
tags:
|
tags:
|
||||||
- integration
|
- integration
|
||||||
#script:
|
#script:
|
||||||
# - TAG=$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA sh ./scripts/build-push.sh
|
# - TAG=$CI_Cbefore_script:
|
||||||
|
before_script:
|
||||||
|
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
||||||
script:
|
script:
|
||||||
- TAG=latest sh ./scripts/build-push.sh
|
- TAG=latest ./scripts/build-push.sh
|
||||||
|
- TAG=$(cat ./version) ./scripts/build-push.sh
|
||||||
rules:
|
rules:
|
||||||
- if: $CI_COMMIT_REF_PROTECTED == "true"
|
- if: $CI_COMMIT_REF_PROTECTED == "true"
|
||||||
when: always
|
when: always
|
||||||
|
- if: $CI_COMMIT_REF_NAME == "master"
|
||||||
|
when: always
|
||||||
|
|
||||||
deploy-dev:
|
deploy-dev:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
|
|||||||
16
.semverbot.toml
Normal file
16
.semverbot.toml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
[git]
|
||||||
|
|
||||||
|
[git.config]
|
||||||
|
email = "semverbot@grassroots.org"
|
||||||
|
name = "semvervot"
|
||||||
|
|
||||||
|
[git.tags]
|
||||||
|
prefix = "v"
|
||||||
|
|
||||||
|
[semver]
|
||||||
|
mode = "git-commit"
|
||||||
|
|
||||||
|
[semver.detection]
|
||||||
|
patch = ["fix", "[fix]", "patch", "[patch]"]
|
||||||
|
minor = ["minor", "[minor]", "feat", "[feat]", "release", "[release]", "bump", "[bump]"]
|
||||||
|
major = ["BREAKING CHANGE"]
|
||||||
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
This repo uses docker-compose and docker buildkit. Set the following environment variables to get started:
|
This repo uses docker-compose and docker buildkit. Set the following environment variables to get started:
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
export COMPOSE_DOCKER_CLI_BUILD=1
|
export COMPOSE_DOCKER_CLI_BUILD=1
|
||||||
export DOCKER_BUILDKIT=1
|
export DOCKER_BUILDKIT=1
|
||||||
|
|||||||
@@ -1,19 +1,16 @@
|
|||||||
ARG DOCKER_REGISTRY=registry.gitlab.com/grassrootseconomics
|
ARG DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
||||||
|
|
||||||
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-55da5f4e
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2
|
||||||
|
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
|
|
||||||
RUN apt-get install libffi-dev -y
|
|
||||||
|
|
||||||
ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net:8433"
|
ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net:8433"
|
||||||
ARG EXTRA_PIP_ARGS=""
|
ARG EXTRA_PIP_ARGS=""
|
||||||
ARG PIP_INDEX_URL="https://pypi.org/simple"
|
ARG PIP_INDEX_URL="https://pypi.org/simple"
|
||||||
|
|
||||||
RUN pip install --index-url $PIP_INDEX_URL \
|
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
||||||
|
pip install --index-url $PIP_INDEX_URL \
|
||||||
--pre \
|
--pre \
|
||||||
--force-reinstall \
|
|
||||||
--no-cache \
|
|
||||||
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
||||||
-r requirements.txt
|
-r requirements.txt
|
||||||
|
|
||||||
|
|||||||
@@ -17,11 +17,12 @@ logg = logging.getLogger()
|
|||||||
rootdir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
rootdir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
||||||
dbdir = os.path.join(rootdir, 'cic_cache', 'db')
|
dbdir = os.path.join(rootdir, 'cic_cache', 'db')
|
||||||
migrationsdir = os.path.join(dbdir, 'migrations')
|
migrationsdir = os.path.join(dbdir, 'migrations')
|
||||||
|
configdir = os.path.join(rootdir, 'cic_cache', 'data', 'config')
|
||||||
|
|
||||||
config_dir = os.path.join('/usr/local/etc/cic-cache')
|
#config_dir = os.path.join('/usr/local/etc/cic-cache')
|
||||||
|
|
||||||
argparser = argparse.ArgumentParser()
|
argparser = argparse.ArgumentParser()
|
||||||
argparser.add_argument('-c', type=str, default=config_dir, help='config file')
|
argparser.add_argument('-c', type=str, help='config file')
|
||||||
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('--migrations-dir', dest='migrations_dir', default=migrationsdir, type=str, help='path to alembic migrations directory')
|
argparser.add_argument('--migrations-dir', dest='migrations_dir', default=migrationsdir, type=str, help='path to alembic migrations directory')
|
||||||
argparser.add_argument('--reset', action='store_true', help='downgrade before upgrading')
|
argparser.add_argument('--reset', action='store_true', help='downgrade before upgrading')
|
||||||
@@ -35,7 +36,7 @@ if args.vv:
|
|||||||
elif args.v:
|
elif args.v:
|
||||||
logging.getLogger().setLevel(logging.INFO)
|
logging.getLogger().setLevel(logging.INFO)
|
||||||
|
|
||||||
config = confini.Config(args.c, args.env_prefix)
|
config = confini.Config(configdir, args.env_prefix)
|
||||||
config.process()
|
config.process()
|
||||||
config.censor('PASSWORD', 'DATABASE')
|
config.censor('PASSWORD', 'DATABASE')
|
||||||
config.censor('PASSWORD', 'SSL')
|
config.censor('PASSWORD', 'SSL')
|
||||||
|
|||||||
@@ -683,3 +683,4 @@ class Api(ApiBase):
|
|||||||
|
|
||||||
t = self.callback_success.apply_async([r])
|
t = self.callback_success.apply_async([r])
|
||||||
return t
|
return t
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ version = (
|
|||||||
0,
|
0,
|
||||||
12,
|
12,
|
||||||
4,
|
4,
|
||||||
'alpha.13',
|
'alpha.14',
|
||||||
)
|
)
|
||||||
|
|
||||||
version_object = semver.VersionInfo(
|
version_object = semver.VersionInfo(
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
@node cic-eth-accounts
|
|
||||||
@section Accounts
|
@section Accounts
|
||||||
|
|
||||||
Accounts are private keys in the signer component keyed by "addresses," a one-way transformation of a public key. Data can be signed by using the account as identifier for corresponding RPC requests.
|
Accounts are private keys in the signer component keyed by "addresses," a one-way transformation of a public key. Data can be signed by using the account as identifier for corresponding RPC requests.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@node cic-eth system maintenance
|
@anchor{cic-eth-appendix-system-maintenance}
|
||||||
@appendix Admin API
|
@appendix Admin API
|
||||||
|
|
||||||
The admin API is still in an early stage of refinement. User friendliness can be considerably improved.
|
The admin API is still in an early stage of refinement. User friendliness can be considerably improved.
|
||||||
@@ -33,7 +33,7 @@ Get the current state of a lock
|
|||||||
|
|
||||||
@appendixsection tag_account
|
@appendixsection tag_account
|
||||||
|
|
||||||
Associate an identifier with an account address (@xref{cic-eth system accounts})
|
Associate an identifier with an account address (@xref{cic-eth-system-accounts})
|
||||||
|
|
||||||
@appendixsection have_account
|
@appendixsection have_account
|
||||||
|
|
||||||
|
|||||||
@@ -14,5 +14,6 @@ Released 2021 under GPL3
|
|||||||
@c
|
@c
|
||||||
@contents
|
@contents
|
||||||
|
|
||||||
@include index.texi
|
@include content.texi
|
||||||
|
@include appendix.texi
|
||||||
|
|
||||||
|
|||||||
3
apps/cic-eth/doc/texinfo/appendix.texi
Normal file
3
apps/cic-eth/doc/texinfo/appendix.texi
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
@include admin.texi
|
||||||
|
@include chains.texi
|
||||||
|
@include transfertypes.texi
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
@node cic-eth Appendix Task chains
|
@anchor{cic-eth-appendix-task-chains}
|
||||||
@appendix Task chains
|
@appendix Task chains
|
||||||
|
|
||||||
TBC - explain here how to generate these chain diagrams
|
TBC - explain here how to generate these chain diagrams
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
@node cic-eth configuration
|
|
||||||
@section Configuration
|
@section Configuration
|
||||||
|
|
||||||
Configuration parameters are grouped by configuration filename.
|
Configuration parameters are grouped by configuration filename.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
|
@node cic-eth
|
||||||
@top cic-eth
|
@top cic-eth
|
||||||
|
|
||||||
@include intro.texi
|
|
||||||
@include dependencies.texi
|
@include dependencies.texi
|
||||||
@include configuration.texi
|
@include configuration.texi
|
||||||
@include system.texi
|
@include system.texi
|
||||||
@@ -9,6 +9,3 @@
|
|||||||
@include incoming.texi
|
@include incoming.texi
|
||||||
@include services.texi
|
@include services.texi
|
||||||
@include tools.texi
|
@include tools.texi
|
||||||
@include admin.texi
|
|
||||||
@include chains.texi
|
|
||||||
@include transfertypes.texi
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
@node cic-eth-dependencies
|
|
||||||
@section Dependencies
|
@section Dependencies
|
||||||
|
|
||||||
This application is written in Python 3.8. It is tightly coupled with @code{python-celery}, which provides the task worker ecosystem. It also uses @code{SQLAlchemy} which provides useful abstractions for persistent storage though SQL, and @code{alembic} for database schema migrations.
|
This application is written in Python 3.8. It is tightly coupled with @code{python-celery}, which provides the task worker ecosystem. It also uses @code{SQLAlchemy} which provides useful abstractions for persistent storage though SQL, and @code{alembic} for database schema migrations.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@node cic-eth-incoming
|
@anchor{cic-eth-incoming}
|
||||||
@section Incoming transactions
|
@section Incoming transactions
|
||||||
|
|
||||||
All transactions in mined blocks will be passed to a selection of plugin filters to the @code{chainsyncer} component. Each of these filters are individual python module files in @code{cic_eth.runnable.daemons.filters}. This section describes their function.
|
All transactions in mined blocks will be passed to a selection of plugin filters to the @code{chainsyncer} component. Each of these filters are individual python module files in @code{cic_eth.runnable.daemons.filters}. This section describes their function.
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
@node cic-eth-interacting
|
|
||||||
@section Interacting with the system
|
@section Interacting with the system
|
||||||
|
|
||||||
The API to the @var{cic-eth} component is a proxy for executing @emph{chains of Celery tasks}. The tasks that compose individual chains are documented in @ref{cic-eth Appendix Task chains,the Task Chain appendix}, which also describes a CLI tool that can generate graph representationso of them.
|
The API to the @var{cic-eth} component is a proxy for executing @emph{chains of Celery tasks}. The tasks that compose individual chains are documented in @ref{cic-eth-appendix-task-chains,the Task Chain appendix}, which also describes a CLI tool that can generate graph representationso of them.
|
||||||
|
|
||||||
There are two API classes, @var{Api} and @var{AdminApi}. The former is described later in this section, the latter described in @ref{cic-eth system maintenance,the Admin API appendix}.
|
There are two API classes, @var{Api} and @var{AdminApi}. The former is described later in this section, the latter described in @ref{cic-eth-appendix-system-maintenance,the Admin API appendix}.
|
||||||
|
|
||||||
|
|
||||||
@subsection Interface
|
@subsection Interface
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
@node cic-eth-outgoing
|
|
||||||
@section Outgoing transactions
|
@section Outgoing transactions
|
||||||
|
|
||||||
@strong{Important! A pre-requisite for proper functioning of the component is that no other agent is sending transactions to the network for any of the keys in the keystore.}
|
@strong{Important! A pre-requisite for proper functioning of the component is that no other agent is sending transactions to the network for any of the keys in the keystore.}
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
@node cic-eth-services
|
|
||||||
@section Services
|
@section Services
|
||||||
|
|
||||||
There are four daemons that together orchestrate all of the aforementioned recipes. This section will provide a high level description of them.
|
There are four daemons that together orchestrate all of the aforementioned recipes. This section will provide a high level description of them.
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
@node cic-eth system accounts
|
|
||||||
@section System initialization
|
@section System initialization
|
||||||
|
|
||||||
When the system starts for the first time, it is locked for any state change request other than account creation@footnote{Specifically, the @code{INIT}, @code{SEND} and @code{QUEUE} lock bits are set.}. These locks should be @emph{reset} once system initialization has been completed. Currently, system initialization only involves creating and tagging required system accounts, as specified below.
|
When the system starts for the first time, it is locked for any state change request other than account creation@footnote{Specifically, the @code{INIT}, @code{SEND} and @code{QUEUE} lock bits are set.}. These locks should be @emph{reset} once system initialization has been completed. Currently, system initialization only involves creating and tagging required system accounts, as specified below.
|
||||||
|
|
||||||
See @ref{cic-eth-locking,Locking} and @ref{cic-eth-tools-ctrl,ctrl in Tools} for details on locking.
|
See @ref{cic-eth-locking,Locking} and @ref{cic-eth-tools-ctrl,ctrl in Tools} for details on locking.
|
||||||
|
|
||||||
|
@anchor{cic-eth-system-accounts}
|
||||||
@subsection System accounts
|
@subsection System accounts
|
||||||
|
|
||||||
Certain accounts in the system have special roles. These are defined by @emph{tagging} certain accounts addresses with well-known identifiers.
|
Certain accounts in the system have special roles. These are defined by @emph{tagging} certain accounts addresses with well-known identifiers.
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
@node cic-eth-tools
|
|
||||||
@section Tools
|
@section Tools
|
||||||
|
|
||||||
A collection of CLI tools have been provided to help with diagnostics and other administrative tasks. These use the same configuration infrastructure as the daemons.
|
A collection of CLI tools have been provided to help with diagnostics and other administrative tasks. These use the same configuration infrastructure as the daemons.
|
||||||
@@ -37,7 +36,7 @@ Execute a token transfer on behalf of a custodial account.
|
|||||||
|
|
||||||
@subsection tag (cic-eth-tag)
|
@subsection tag (cic-eth-tag)
|
||||||
|
|
||||||
Associate an account address with a string identifier. @xref{cic-eth system accounts}
|
Associate an account address with a string identifier. @xref{cic-eth-system-accounts}
|
||||||
|
|
||||||
|
|
||||||
@anchor{cic-eth-tools-ctrl}
|
@anchor{cic-eth-tools-ctrl}
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
@node cic-eth Appendix Transaction types
|
|
||||||
@appendix Transfer types
|
@appendix Transfer types
|
||||||
|
|
||||||
@table @var
|
@table @var
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
ARG DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
ARG DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
||||||
|
|
||||||
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-55da5f4e
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2
|
||||||
|
|
||||||
# Copy just the requirements and install....this _might_ give docker a hint on caching but we
|
# Copy just the requirements and install....this _might_ give docker a hint on caching but we
|
||||||
# do load these all into setup.py later
|
# do load these all into setup.py later
|
||||||
@@ -11,21 +11,17 @@ ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net:8433
|
|||||||
ARG EXTRA_PIP_ARGS=""
|
ARG EXTRA_PIP_ARGS=""
|
||||||
ARG PIP_INDEX_URL=https://pypi.org/simple
|
ARG PIP_INDEX_URL=https://pypi.org/simple
|
||||||
|
|
||||||
RUN apt-get install libffi-dev
|
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
||||||
|
pip install --index-url $PIP_INDEX_URL \
|
||||||
RUN pip install --index-url $PIP_INDEX_URL \
|
|
||||||
--pre \
|
--pre \
|
||||||
--force-reinstall \
|
|
||||||
--no-cache \
|
|
||||||
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
||||||
cic-eth-aux-erc20-demurrage-token~=0.0.2a7
|
cic-eth-aux-erc20-demurrage-token~=0.0.2a7
|
||||||
|
|
||||||
|
|
||||||
COPY *requirements.txt ./
|
COPY *requirements.txt ./
|
||||||
RUN pip install --index-url $PIP_INDEX_URL \
|
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
||||||
|
pip install --index-url $PIP_INDEX_URL \
|
||||||
--pre \
|
--pre \
|
||||||
--force-reinstall \
|
|
||||||
--no-cache \
|
|
||||||
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
||||||
-r requirements.txt \
|
-r requirements.txt \
|
||||||
-r services_requirements.txt \
|
-r services_requirements.txt \
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
celery==4.4.7
|
celery==4.4.7
|
||||||
chainlib-eth>=0.0.10a4,<0.1.0
|
chainlib-eth>=0.0.10a16,<0.1.0
|
||||||
semver==2.13.0
|
semver==2.13.0
|
||||||
crypto-dev-signer>=0.4.15rc2,<0.5.0
|
crypto-dev-signer>=0.4.15rc2,<0.5.0
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
FROM node:15.3.0-alpine3.10
|
FROM node:15.3.0-alpine3.10
|
||||||
#FROM node:lts-alpine3.14
|
|
||||||
|
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
|
|
||||||
@@ -14,6 +13,7 @@ RUN npm config set registry=${NPM_REPOSITORY}
|
|||||||
COPY package.json package-lock.json ./
|
COPY package.json package-lock.json ./
|
||||||
RUN --mount=type=cache,mode=0755,target=/root/.npm \
|
RUN --mount=type=cache,mode=0755,target=/root/.npm \
|
||||||
npm set cache /root/.npm && \
|
npm set cache /root/.npm && \
|
||||||
|
npm cache verify && \
|
||||||
npm ci --verbose
|
npm ci --verbose
|
||||||
|
|
||||||
COPY webpack.config.js ./
|
COPY webpack.config.js ./
|
||||||
|
|||||||
@@ -193,6 +193,7 @@ async function processRequest(req, res) {
|
|||||||
res.end();
|
res.end();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
content = '';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'get:automerge:client':
|
case 'get:automerge:client':
|
||||||
@@ -251,7 +252,7 @@ async function processRequest(req, res) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (content === undefined) {
|
if (content === undefined) {
|
||||||
console.error('empty content', data);
|
console.error('empty content', mod, digest, data);
|
||||||
res.writeHead(404, {"Content-Type": "text/plain"});
|
res.writeHead(404, {"Content-Type": "text/plain"});
|
||||||
res.end();
|
res.end();
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import semver
|
|||||||
|
|
||||||
logg = logging.getLogger()
|
logg = logging.getLogger()
|
||||||
|
|
||||||
version = (0, 4, 0, 'alpha.10')
|
version = (0, 4, 0, 'alpha.11')
|
||||||
|
|
||||||
version_object = semver.VersionInfo(
|
version_object = semver.VersionInfo(
|
||||||
major=version[0],
|
major=version[0],
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
# syntax = docker/dockerfile:1.2
|
ARG DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
||||||
FROM registry.gitlab.com/grassrootseconomics/cic-base-images:python-3.8.6-dev-55da5f4e as dev
|
|
||||||
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2
|
||||||
|
|
||||||
#RUN pip install $pip_extra_index_url_flag cic-base[full_graph]==0.1.2a62
|
#RUN pip install $pip_extra_index_url_flag cic-base[full_graph]==0.1.2a62
|
||||||
RUN apt-get install libffi-dev -y
|
RUN apt-get install libffi-dev -y
|
||||||
@@ -11,8 +12,10 @@ ARG PIP_INDEX_URL=https://pypi.org/simple
|
|||||||
|
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
|
|
||||||
RUN pip install --index-url $PIP_INDEX_URL \
|
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
||||||
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
pip install --index-url $PIP_INDEX_URL \
|
||||||
|
--pre \
|
||||||
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
||||||
-r requirements.txt
|
-r requirements.txt
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
confini~=0.4.1a1
|
confini>=0.3.6rc4,<0.5.0
|
||||||
africastalking==1.2.3
|
africastalking==1.2.3
|
||||||
SQLAlchemy==1.3.20
|
SQLAlchemy==1.3.20
|
||||||
alembic==1.4.2
|
alembic==1.4.2
|
||||||
psycopg2==2.8.6
|
psycopg2==2.8.6
|
||||||
celery==4.4.7
|
celery==4.4.7
|
||||||
redis==3.5.3
|
redis==3.5.3
|
||||||
|
semver==2.13.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
ARG DOCKER_REGISTRY=registry.gitlab.com/grassrootseconomics
|
ARG DOCKER_REGISTRY=registry.gitlab.com/grassrootseconomics
|
||||||
|
|
||||||
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-55da5f4e as dev
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2 as dev
|
||||||
|
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
|
|
||||||
@@ -11,10 +11,9 @@ COPY requirements.txt .
|
|||||||
ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net:8433"
|
ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net:8433"
|
||||||
ARG EXTRA_PIP_ARGS=""
|
ARG EXTRA_PIP_ARGS=""
|
||||||
ARG PIP_INDEX_URL="https://pypi.org/simple"
|
ARG PIP_INDEX_URL="https://pypi.org/simple"
|
||||||
RUN pip install --index-url $PIP_INDEX_URL \
|
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
||||||
|
pip install --index-url $PIP_INDEX_URL \
|
||||||
--pre \
|
--pre \
|
||||||
--force-reinstall \
|
|
||||||
--no-cache \
|
|
||||||
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
||||||
-r requirements.txt
|
-r requirements.txt
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# standard imports
|
# standard imports
|
||||||
import semver
|
import semver
|
||||||
|
|
||||||
version = (0, 3, 1, 'alpha.5')
|
version = (0, 3, 1, 'alpha.6')
|
||||||
|
|
||||||
version_object = semver.VersionInfo(
|
version_object = semver.VersionInfo(
|
||||||
major=version[0],
|
major=version[0],
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
ARG DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
ARG DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
||||||
|
|
||||||
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-55da5f4e
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2
|
||||||
|
|
||||||
RUN apt-get install redis-server libffi-dev -y
|
RUN apt-get install -y redis-server
|
||||||
# create secrets directory
|
# create secrets directory
|
||||||
RUN mkdir -vp pgp/keys
|
RUN mkdir -vp pgp/keys
|
||||||
|
|
||||||
@@ -14,13 +14,17 @@ ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net:8433
|
|||||||
ARG EXTRA_PIP_ARGS=""
|
ARG EXTRA_PIP_ARGS=""
|
||||||
ARG PIP_INDEX_URL=https://pypi.org/simple
|
ARG PIP_INDEX_URL=https://pypi.org/simple
|
||||||
|
|
||||||
RUN pip install --index-url $PIP_INDEX_URL \
|
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
||||||
|
pip install --index-url $PIP_INDEX_URL \
|
||||||
|
--pre \
|
||||||
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
||||||
cic-eth-aux-erc20-demurrage-token~=0.0.2a7
|
cic-eth-aux-erc20-demurrage-token~=0.0.2a7
|
||||||
|
|
||||||
|
|
||||||
COPY *requirements.txt ./
|
COPY *requirements.txt ./
|
||||||
RUN pip install --index-url $PIP_INDEX_URL \
|
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
||||||
|
pip install --index-url $PIP_INDEX_URL \
|
||||||
|
--pre \
|
||||||
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
||||||
-r requirements.txt
|
-r requirements.txt
|
||||||
|
|
||||||
@@ -33,7 +37,7 @@ COPY cic_ussd/db/ussd_menu.json data/
|
|||||||
COPY docker/*.sh ./
|
COPY docker/*.sh ./
|
||||||
RUN chmod +x /root/*.sh
|
RUN chmod +x /root/*.sh
|
||||||
|
|
||||||
# copy config and migration files to definitive file so they can be referenced in path definitions for running scripts
|
## copy config and migration files to definitive file so they can be referenced in path definitions for running scripts
|
||||||
COPY config/ /usr/local/etc/cic-ussd/
|
COPY config/ /usr/local/etc/cic-ussd/
|
||||||
COPY cic_ussd/db/migrations/ /usr/local/share/cic-ussd/alembic
|
COPY cic_ussd/db/migrations/ /usr/local/share/cic-ussd/alembic
|
||||||
|
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ billiard==3.6.4.0
|
|||||||
bcrypt==3.2.0
|
bcrypt==3.2.0
|
||||||
celery==4.4.7
|
celery==4.4.7
|
||||||
cffi==1.14.6
|
cffi==1.14.6
|
||||||
cic-eth~=0.12.4a13
|
cic-eth~=0.12.5a1
|
||||||
cic-notify~=0.4.0a10
|
cic-notify~=0.4.0a11
|
||||||
cic-types~=0.2.0a6
|
cic-types~=0.2.1a2
|
||||||
confini>=0.3.6rc4,<0.5.0
|
confini>=0.3.6rc4,<0.5.0
|
||||||
phonenumbers==8.12.12
|
phonenumbers==8.12.12
|
||||||
psycopg2==2.8.6
|
psycopg2==2.8.6
|
||||||
|
|||||||
@@ -8,16 +8,20 @@ set -a
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [ ! -z $DEV_ETH_GAS_PRICE ]; then
|
if [ ! -z $DEV_FEE_PRICE ]; then
|
||||||
gas_price_arg="--gas-price $DEV_ETH_GAS_PRICE"
|
gas_price_arg="--gas-price $DEV_FEE_PRICE"
|
||||||
fee_price_arg="--fee-price $DEV_ETH_GAS_PRICE"
|
fee_price_arg="--fee-price $DEV_FEE_PRICE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
must_eth_rpc
|
must_eth_rpc
|
||||||
|
|
||||||
# Deploy address declarator registry
|
# Deploy address declarator registry
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mDeploy address declarator contract\033[;39m"
|
>&2 echo -e "\033[;96mDeploy address declarator contract\033[;39m"
|
||||||
DEV_ADDRESS_DECLARATOR=`eth-address-declarator-deploy -s -u -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -w $DEV_DEBUG_FLAG $DEV_DECLARATOR_DESCRIPTION`
|
DEV_ADDRESS_DECLARATOR=`eth-address-declarator-deploy --nonce $nonce -s -u -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -w $DEV_DEBUG_FLAG $DEV_DECLARATOR_DESCRIPTION`
|
||||||
|
|
||||||
|
check_wait 1
|
||||||
|
|
||||||
echo -e "\033[;96mWriting env_reset file\033[;39m"
|
echo -e "\033[;96mWriting env_reset file\033[;39m"
|
||||||
confini-dump --schema-dir ./config > ${DEV_DATA_DIR}/env_reset
|
confini-dump --schema-dir ./config > ${DEV_DATA_DIR}/env_reset
|
||||||
|
|||||||
@@ -13,48 +13,60 @@ set -e
|
|||||||
must_address "$DEV_ADDRESS_DECLARATOR" "address declarator"
|
must_address "$DEV_ADDRESS_DECLARATOR" "address declarator"
|
||||||
must_eth_rpc
|
must_eth_rpc
|
||||||
|
|
||||||
if [ ! -z $DEV_ETH_GAS_PRICE ]; then
|
if [ ! -z $DEV_FEE_PRICE ]; then
|
||||||
gas_price_arg="--gas-price $DEV_ETH_GAS_PRICE"
|
gas_price_arg="--gas-price $DEV_FEE_PRICE"
|
||||||
fee_price_arg="--fee-price $DEV_ETH_GAS_PRICE"
|
fee_price_arg="--fee-price $DEV_FEE_PRICE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Deploy contract registry contract
|
# Deploy contract registry contract
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mDeploy contract registry contract\033[;39m"
|
>&2 echo -e "\033[;96mDeploy contract registry contract\033[;39m"
|
||||||
CIC_REGISTRY_ADDRESS=`okota-contract-registry-deploy $fee_price_arg -i $CHAIN_SPEC -y $WALLET_KEY_FILE --identifier AccountRegistry --identifier TokenRegistry --identifier AddressDeclarator --identifier Faucet --identifier TransferAuthorization --identifier ContractRegistry --identifier DefaultToken --address-declarator $DEV_ADDRESS_DECLARATOR -p $RPC_PROVIDER $DEV_DEBUG_FLAG -s -u -w`
|
CIC_REGISTRY_ADDRESS=`okota-contract-registry-deploy --nonce $nonce $fee_price_arg -i $CHAIN_SPEC -y $WALLET_KEY_FILE --identifier AccountRegistry --identifier TokenRegistry --identifier AddressDeclarator --identifier Faucet --identifier TransferAuthorization --identifier ContractRegistry --identifier DefaultToken --address-declarator $DEV_ADDRESS_DECLARATOR -p $RPC_PROVIDER $DEV_DEBUG_FLAG -s -u -w`
|
||||||
|
|
||||||
|
|
||||||
>&2 echo -e "\033[;96mAdd contract registry record to itself\033[;39m"
|
>&2 echo -e "\033[;96mAdd contract registry record to itself\033[;39m"
|
||||||
r=`eth-contract-registry-set $fee_price_arg -s -u -w -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier ContractRegistry $CIC_REGISTRY_ADDRESS`
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
|
r=`eth-contract-registry-set $DEV_WAIT_FLAG $fee_price_arg --nonce $nonce -s -u -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier ContractRegistry $CIC_REGISTRY_ADDRESS`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
|
|
||||||
|
|
||||||
>&2 echo -e "\033[;96mAdd address declarator record to contract registry\033[;39m"
|
>&2 echo -e "\033[;96mAdd address declarator record to contract registry\033[;39m"
|
||||||
r=`eth-contract-registry-set $fee_price_arg -s -u -w -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier AddressDeclarator $DEV_ADDRESS_DECLARATOR`
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
|
r=`eth-contract-registry-set $DEV_WAIT_FLAG $fee_price_arg --nonce $nonce -s -u -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier AddressDeclarator $DEV_ADDRESS_DECLARATOR`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
|
|
||||||
|
|
||||||
# Deploy transfer authorization contact
|
# Deploy transfer authorization contact
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mDeploy transfer authorization contract\033[;39m"
|
>&2 echo -e "\033[;96mDeploy transfer authorization contract\033[;39m"
|
||||||
DEV_TRANSFER_AUTHORIZATION_ADDRESS=`erc20-transfer-auth-deploy $gas_price_arg -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -w $DEV_DEBUG_FLAG`
|
DEV_TRANSFER_AUTHORIZATION_ADDRESS=`erc20-transfer-auth-deploy --nonce $nonce -w $gas_price_arg -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG`
|
||||||
|
|
||||||
|
|
||||||
>&2 echo -e "\033[;96mAdd transfer authorization record to contract registry\033[;39m"
|
>&2 echo -e "\033[;96mAdd transfer authorization record to contract registry\033[;39m"
|
||||||
r=`eth-contract-registry-set $fee_price_arg -s -u -w -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier TransferAuthorization $DEV_TRANSFER_AUTHORIZATION_ADDRESS`
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
|
r=`eth-contract-registry-set $DEV_WAIT_FLAG $fee_price_arg --nonce $nonce -s -u -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier TransferAuthorization $DEV_TRANSFER_AUTHORIZATION_ADDRESS`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
|
|
||||||
|
|
||||||
# Deploy token index contract
|
# Deploy token index contract
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mDeploy token symbol index contract\033[;39m"
|
>&2 echo -e "\033[;96mDeploy token symbol index contract\033[;39m"
|
||||||
DEV_TOKEN_INDEX_ADDRESS=`okota-token-index-deploy -s -u $fee_price_arg -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -w $DEV_DEBUG_FLAG --address-declarator $DEV_ADDRESS_DECLARATOR`
|
DEV_TOKEN_INDEX_ADDRESS=`okota-token-index-deploy --nonce $nonce -s -w -u $fee_price_arg -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --address-declarator $DEV_ADDRESS_DECLARATOR`
|
||||||
|
|
||||||
>&2 echo -e "\033[;96mAdd token symbol index record to contract registry\033[;39m"
|
>&2 echo -e "\033[;96mAdd token symbol index record to contract registry\033[;39m"
|
||||||
r=`eth-contract-registry-set $fee_price_arg -s -u -w -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier TokenRegistry $DEV_TOKEN_INDEX_ADDRESS`
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
|
r=`eth-contract-registry-set $DEV_WAIT_FLAG $fee_price_arg --nonce $nonce -s -u -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier TokenRegistry $DEV_TOKEN_INDEX_ADDRESS`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
|
|
||||||
#>&2 echo "add reserve token to token index"
|
check_wait 2
|
||||||
#eth-token-index-add $fee_price_arg -s -u -w -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG -e $DEV_TOKEN_INDEX_ADDRESS $DEV_RESERVE_ADDRESS
|
|
||||||
|
|
||||||
|
|
||||||
echo -e "\033[;96mWriting env_reset file\033[;39m"
|
echo -e "\033[;96mWriting env_reset file\033[;39m"
|
||||||
confini-dump --schema-dir ./config > ${DEV_DATA_DIR}/env_reset
|
confini-dump --schema-dir ./config > ${DEV_DATA_DIR}/env_reset
|
||||||
|
|||||||
@@ -10,9 +10,9 @@ WAIT_FOR_TIMEOUT=${WAIT_FOR_TIMEOUT:-60}
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [ ! -z $DEV_ETH_GAS_PRICE ]; then
|
if [ ! -z $DEV_FEE_PRICE ]; then
|
||||||
gas_price_arg="--gas-price $DEV_ETH_GAS_PRICE"
|
gas_price_arg="--gas-price $DEV_FEE_PRICE"
|
||||||
fee_price_arg="--fee-price $DEV_ETH_GAS_PRICE"
|
fee_price_arg="--fee-price $DEV_FEE_PRICE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
have_default_token=1
|
have_default_token=1
|
||||||
@@ -25,16 +25,17 @@ must_eth_rpc
|
|||||||
|
|
||||||
function _deploy_token_defaults {
|
function _deploy_token_defaults {
|
||||||
if [ -z "$TOKEN_SYMBOL" ]; then
|
if [ -z "$TOKEN_SYMBOL" ]; then
|
||||||
>&2 echo -e "\033[;33mtoken symbol not set, setting defaults for type $TOKEN_TYPE\033[;39m"
|
>&2 echo -e "\033[;33mToken symbol not set, setting defaults for type $TOKEN_TYPE\033[;39m"
|
||||||
TOKEN_SYMBOL=$1
|
TOKEN_SYMBOL=$1
|
||||||
TOKEN_NAME=$2
|
TOKEN_NAME=$2
|
||||||
elif [ -z "$TOKEN_NAME" ]; then
|
elif [ -z "$TOKEN_NAME" ]; then
|
||||||
>&2 echo -e "\033[;33mtoken name not set, setting same as symbol for type $TOKEN_TYPE\033[;39m"
|
>&2 echo -e "\033[;33mToken name not set, setting same as symbol for type $TOKEN_TYPE\033[;39m"
|
||||||
TOKEN_NAME=$TOKEN_SYMBOL
|
TOKEN_NAME=$TOKEN_SYMBOL
|
||||||
fi
|
fi
|
||||||
TOKEN_DECIMALS=${TOKEN_DECIMALS:-6}
|
TOKEN_DECIMALS=${TOKEN_DECIMALS:-6}
|
||||||
|
|
||||||
default_token_registered=`eth-contract-registry-list -u -i $CHAIN_SPEC -p $RPC_PROVIDER -e $CIC_REGISTRY_ADDRESS $DEV_DEBUG_FLAG --raw DefaultToken`
|
debug_rpc
|
||||||
|
default_token_registered=`eth-contract-registry-list -u -i $CHAIN_SPEC -p $RPC_PROVIDER -e $CIC_REGISTRY_ADDRESS $DEV_DEBUG_FLAG --raw DefaultToken --fee-limit 8000000`
|
||||||
if [ $default_token_registered == '0000000000000000000000000000000000000000' ]; then
|
if [ $default_token_registered == '0000000000000000000000000000000000000000' ]; then
|
||||||
>&2 echo -e "\033[;33mFound no existing default token in token registry"
|
>&2 echo -e "\033[;33mFound no existing default token in token registry"
|
||||||
have_default_token=''
|
have_default_token=''
|
||||||
@@ -50,23 +51,31 @@ function _deploy_token_defaults {
|
|||||||
|
|
||||||
function deploy_token_giftable_erc20_token() {
|
function deploy_token_giftable_erc20_token() {
|
||||||
_deploy_token_defaults "GFT" "Giftable Token"
|
_deploy_token_defaults "GFT" "Giftable Token"
|
||||||
TOKEN_ADDRESS=`giftable-token-deploy $fee_price_arg -p $RPC_PROVIDER -y $WALLET_KEY_FILE -i $CHAIN_SPEC -s -ww --name "$TOKEN_NAME" --symbol $TOKEN_SYMBOL --decimals $TOKEN_DECIMALS $DEV_DEBUG_FLAG`
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
|
TOKEN_ADDRESS=`giftable-token-deploy --nonce $nonce $fee_price_arg -p $RPC_PROVIDER -y $WALLET_KEY_FILE -i $CHAIN_SPEC -s -ww --name "$TOKEN_NAME" --symbol $TOKEN_SYMBOL --decimals $TOKEN_DECIMALS $DEV_DEBUG_FLAG`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function deploy_token_erc20_demurrage_token() {
|
function deploy_token_erc20_demurrage_token() {
|
||||||
_deploy_token_defaults "DET" "Demurrage Token"
|
_deploy_token_defaults "DET" "Demurrage Token"
|
||||||
TOKEN_ADDRESS=`erc20-demurrage-token-deploy $fee_price_arg -p $RPC_PROVIDER -y $WALLET_KEY_FILE -i $CHAIN_SPEC --name "$TOKEN_NAME" --symbol $TOKEN_SYMBOL $DEV_DEBUG_FLAG -ww -s`
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
|
TOKEN_ADDRESS=`erc20-demurrage-token-deploy --nonce $nonce $fee_price_arg -p $RPC_PROVIDER -y $WALLET_KEY_FILE -i $CHAIN_SPEC --name "$TOKEN_NAME" --symbol $TOKEN_SYMBOL $DEV_DEBUG_FLAG -ww -s`
|
||||||
}
|
}
|
||||||
|
|
||||||
function deploy_accounts_index() {
|
function deploy_accounts_index() {
|
||||||
# Deploy accounts index contact
|
# Deploy accounts index contact
|
||||||
>&2 echo -e "\033[;96mDeploy accounts index contract for token $TOKEN_SYMBOL\033[;39m"
|
>&2 echo -e "\033[;96mDeploy accounts index contract for token $TOKEN_SYMBOL\033[;39m"
|
||||||
DEV_ACCOUNTS_INDEX_ADDRESS=`okota-accounts-index-deploy $gas_price_arg -u -s -w -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --address-declarator $DEV_ADDRESS_DECLARATOR --token-address $1`
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
|
DEV_ACCOUNTS_INDEX_ADDRESS=`okota-accounts-index-deploy --nonce $nonce $fee_price_arg -u -s -w -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --address-declarator $DEV_ADDRESS_DECLARATOR --token-address $1`
|
||||||
|
|
||||||
if [ -z "$have_default_token" ]; then
|
if [ -z "$have_default_token" ]; then
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mAdd acccounts index record for default token to contract registry\033[;39m"
|
>&2 echo -e "\033[;96mAdd acccounts index record for default token to contract registry\033[;39m"
|
||||||
r=`eth-contract-registry-set $fee_price_arg -s -u -w -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier AccountRegistry $DEV_ACCOUNTS_INDEX_ADDRESS`
|
r=`eth-contract-registry-set --nonce $nonce $DEV_WAIT_FLAG $fee_price_arg -s -u -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier AccountRegistry $DEV_ACCOUNTS_INDEX_ADDRESS`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@@ -75,22 +84,32 @@ function deploy_minter_faucet() {
|
|||||||
FAUCET_AMOUNT=${FAUCET_AMOUNT:-0}
|
FAUCET_AMOUNT=${FAUCET_AMOUNT:-0}
|
||||||
|
|
||||||
# Token faucet contract
|
# Token faucet contract
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mDeploy token faucet contract for token $TOKEN_SYMBOL\033[;39m"
|
>&2 echo -e "\033[;96mDeploy token faucet contract for token $TOKEN_SYMBOL\033[;39m"
|
||||||
accounts_index_address=`eth-contract-registry-list -u -i $CHAIN_SPEC -p $RPC_PROVIDER -e $CIC_REGISTRY_ADDRESS $DEV_DEBUG_FLAG --raw AccountRegistry`
|
accounts_index_address=`eth-contract-registry-list -u -i $CHAIN_SPEC -p $RPC_PROVIDER -e $CIC_REGISTRY_ADDRESS $DEV_DEBUG_FLAG --raw AccountRegistry --fee-limit 8000000`
|
||||||
faucet_address=`sarafu-faucet-deploy $fee_price_arg -s -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -w $DEV_DEBUG_FLAG --account-index-address $accounts_index_address $1`
|
faucet_address=`sarafu-faucet-deploy --nonce $nonce $fee_price_arg -s -w -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --account-index-address $accounts_index_address $1`
|
||||||
|
|
||||||
|
# sarafu-faucet-deploy consumes TWO nonces
|
||||||
|
advance_nonce
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mSet token faucet amount to $FAUCET_AMOUNT\033[;39m"
|
>&2 echo -e "\033[;96mSet token faucet amount to $FAUCET_AMOUNT\033[;39m"
|
||||||
r=`sarafu-faucet-set $fee_price_arg -s -w -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -e $faucet_address $DEV_DEBUG_FLAG -s --fee-limit 100000 $FAUCET_AMOUNT`
|
r=`sarafu-faucet-set --nonce $nonce $fee_price_arg $DEV_WAIT_FLAG -s -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -e $faucet_address $DEV_DEBUG_FLAG --fee-limit 100000 $FAUCET_AMOUNT`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
|
|
||||||
if [ -z $have_default_token ]; then
|
if [ -z $have_default_token ]; then
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mRegister faucet in registry\033[;39m"
|
>&2 echo -e "\033[;96mRegister faucet in registry\033[;39m"
|
||||||
r=`eth-contract-registry-set -s -u $fee_price_arg -w -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier Faucet $faucet_address`
|
r=`eth-contract-registry-set --nonce $nonce $DEV_WAIT_FLAG -s -u $fee_price_arg -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier Faucet $faucet_address`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mSet faucet as token minter\033[;39m"
|
>&2 echo -e "\033[;96mSet faucet as token minter\033[;39m"
|
||||||
r=`giftable-token-minter -s -u $fee_price_arg -w -y $WALLET_KEY_FILE -e $TOKEN_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG $faucet_address`
|
r=`giftable-token-minter $DEV_WAIT_FLAG --nonce $nonce -s -u $fee_price_arg -y $WALLET_KEY_FILE -e $TOKEN_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG $faucet_address`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -99,21 +118,26 @@ TOKEN_TYPE=${TOKEN_TYPE:-giftable_erc20_token}
|
|||||||
deploy_token_${TOKEN_TYPE}
|
deploy_token_${TOKEN_TYPE}
|
||||||
|
|
||||||
if [ -z "$have_default_token" ]; then
|
if [ -z "$have_default_token" ]; then
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mAdd default token to contract registry\033[;39m"
|
>&2 echo -e "\033[;96mAdd default token to contract registry\033[;39m"
|
||||||
r=`eth-contract-registry-set $fee_price_arg -s -u -w -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier DefaultToken $TOKEN_ADDRESS`
|
r=`eth-contract-registry-set $DEV_WAIT_FLAG --nonce $nonce $fee_price_arg -s -u -y $WALLET_KEY_FILE -e $CIC_REGISTRY_ADDRESS -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG --identifier DefaultToken $TOKEN_ADDRESS`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mAdd token symbol $TOKEN_SYMBOL to token address $TOKEN_ADDRESS mapping to token index\033[;39m"
|
>&2 echo -e "\033[;96mAdd token symbol $TOKEN_SYMBOL to token address $TOKEN_ADDRESS mapping to token index\033[;39m"
|
||||||
token_index_address=`eth-contract-registry-list -u -i $CHAIN_SPEC -p $RPC_PROVIDER -e $CIC_REGISTRY_ADDRESS $DEV_DEBUG_FLAG --raw TokenRegistry`
|
token_index_address=`eth-contract-registry-list -u -i $CHAIN_SPEC -p $RPC_PROVIDER -e $CIC_REGISTRY_ADDRESS $DEV_DEBUG_FLAG --raw TokenRegistry`
|
||||||
r=`eth-token-index-add $fee_price_arg -s -u -w -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG -e $token_index_address $TOKEN_ADDRESS`
|
r=`eth-token-index-add --nonce $nonce $fee_price_arg -s -u -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG -e $token_index_address $TOKEN_ADDRESS`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
|
|
||||||
|
|
||||||
TOKEN_MINT_AMOUNT=${TOKEN_MINT_AMOUNT:-${DEV_TOKEN_MINT_AMOUNT}}
|
TOKEN_MINT_AMOUNT=${TOKEN_MINT_AMOUNT:-${DEV_TOKEN_MINT_AMOUNT}}
|
||||||
|
advance_nonce
|
||||||
|
debug_rpc
|
||||||
>&2 echo -e "\033[;96mMinting $TOKEN_MINT_AMOUNT tokens\033[;39m"
|
>&2 echo -e "\033[;96mMinting $TOKEN_MINT_AMOUNT tokens\033[;39m"
|
||||||
r=`giftable-token-gift $fee_price_arg -p $RPC_PROVIDER -y $WALLET_KEY_FILE -i $CHAIN_SPEC -u $DEV_DEBUG_FLAG -s -w -e $TOKEN_ADDRESS "$DEV_TOKEN_MINT_AMOUNT"`
|
r=`giftable-token-gift $DEV_WAIT_FLAG --nonce $nonce $fee_price_arg -p $RPC_PROVIDER -y $WALLET_KEY_FILE -i $CHAIN_SPEC -u $DEV_DEBUG_FLAG -s -e $TOKEN_ADDRESS "$DEV_TOKEN_MINT_AMOUNT"`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
|
|
||||||
|
|
||||||
@@ -128,6 +152,10 @@ else
|
|||||||
deploy_minter_${TOKEN_MINTER_MODE} $TOKEN_ADDRESS
|
deploy_minter_${TOKEN_MINTER_MODE} $TOKEN_ADDRESS
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
check_wait 3
|
||||||
|
|
||||||
|
>&2 echo -e "\033[;96mWriting token metadata and proofs\033[;39m"
|
||||||
|
python scripts/proofs.py --token-symbol $TOKEN_SYMBOL -e $TOKEN_ADDRESS --address-declarator $DEV_ADDRESS_DECLARATOR --signer-address $DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER
|
||||||
|
|
||||||
>&2 echo -e "\033[;96mWriting env_reset file\033[;39m"
|
>&2 echo -e "\033[;96mWriting env_reset file\033[;39m"
|
||||||
confini-dump --schema-dir ./config > ${DEV_DATA_DIR}/env_reset
|
confini-dump --schema-dir ./config > ${DEV_DATA_DIR}/env_reset
|
||||||
|
|||||||
@@ -10,9 +10,9 @@ WAIT_FOR_TIMEOUT=${WAIT_FOR_TIMEOUT:-60}
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [ ! -z $DEV_ETH_GAS_PRICE ]; then
|
if [ ! -z $DEV_FEE_PRICE ]; then
|
||||||
gas_price_arg="--gas-price $DEV_ETH_GAS_PRICE"
|
gas_price_arg="--gas-price $DEV_FEE_PRICE"
|
||||||
fee_price_arg="--fee-price $DEV_ETH_GAS_PRICE"
|
fee_price_arg="--fee-price $DEV_FEE_PRICE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
must_address "$CIC_REGISTRY_ADDRESS" "registry"
|
must_address "$CIC_REGISTRY_ADDRESS" "registry"
|
||||||
@@ -42,12 +42,13 @@ add_pending_tx_hash $r
|
|||||||
|
|
||||||
|
|
||||||
# Transfer gas to custodial gas provider adddress
|
# Transfer gas to custodial gas provider adddress
|
||||||
|
advance_nonce
|
||||||
>&2 echo -e "\033[;96mGift gas to gas gifter $gas_gifter\033[;39m"
|
>&2 echo -e "\033[;96mGift gas to gas gifter $gas_gifter\033[;39m"
|
||||||
echo "eth-gas -s -u -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -w $DEV_DEBUG_FLAG -a $gas_gifter $DEV_GAS_AMOUNT"
|
|
||||||
r=`eth-gas -s -u -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -w $DEV_DEBUG_FLAG -a $gas_gifter $DEV_GAS_AMOUNT`
|
r=`eth-gas -s -u -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -w $DEV_DEBUG_FLAG -a $gas_gifter $DEV_GAS_AMOUNT`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
|
|
||||||
>&2 echo -e "\033[;96mgift gas to accounts index owner $accounts_index_writer\033[;39m"
|
>&2 echo -e "\033[;96mgift gas to accounts index owner $accounts_index_writer\033[;39m"
|
||||||
|
advance_nonce
|
||||||
# for now we are using the same key for both
|
# for now we are using the same key for both
|
||||||
DEV_ETH_ACCOUNT_ACCOUNT_REGISTRY_WRITER=$DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER
|
DEV_ETH_ACCOUNT_ACCOUNT_REGISTRY_WRITER=$DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER
|
||||||
r=`eth-gas -s -u -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -w $DEV_DEBUG_FLAG -a $accounts_index_writer $DEV_GAS_AMOUNT`
|
r=`eth-gas -s -u -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER -w $DEV_DEBUG_FLAG -a $accounts_index_writer $DEV_GAS_AMOUNT`
|
||||||
@@ -59,6 +60,7 @@ cic-eth-ctl -vv -i $CHAIN_SPEC unlock INIT
|
|||||||
cic-eth-ctl -vv -i $CHAIN_SPEC unlock SEND
|
cic-eth-ctl -vv -i $CHAIN_SPEC unlock SEND
|
||||||
cic-eth-ctl -vv -i $CHAIN_SPEC unlock QUEUE
|
cic-eth-ctl -vv -i $CHAIN_SPEC unlock QUEUE
|
||||||
|
|
||||||
|
check_wait 4
|
||||||
|
|
||||||
>&2 echo -e "\033[;96mWriting env_reset file\033[;39m"
|
>&2 echo -e "\033[;96mWriting env_reset file\033[;39m"
|
||||||
confini-dump --schema-dir ./config > ${DEV_DATA_DIR}/env_reset
|
confini-dump --schema-dir ./config > ${DEV_DATA_DIR}/env_reset
|
||||||
|
|||||||
@@ -10,9 +10,9 @@ WAIT_FOR_TIMEOUT=${WAIT_FOR_TIMEOUT:-60}
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [ ! -z $DEV_ETH_GAS_PRICE ]; then
|
if [ ! -z $DEV_FEE_PRICE ]; then
|
||||||
gas_price_arg="--gas-price $DEV_ETH_GAS_PRICE"
|
gas_price_arg="--gas-price $DEV_FEE_PRICE"
|
||||||
fee_price_arg="--fee-price $DEV_ETH_GAS_PRICE"
|
fee_price_arg="--fee-price $DEV_FEE_PRICE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
must_address "$CIC_REGISTRY_ADDRESS" "registry"
|
must_address "$CIC_REGISTRY_ADDRESS" "registry"
|
||||||
|
|||||||
@@ -8,6 +8,16 @@ else
|
|||||||
mkdir -p $DEV_DATA_DIR
|
mkdir -p $DEV_DATA_DIR
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Handle wallet
|
||||||
|
export WALLET_KEY_FILE=${WALLET_KEY_FILE:-`realpath ./keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c`}
|
||||||
|
if [ ! -f $WALLET_KEY_FILE ]; then
|
||||||
|
>&2 echo "wallet path '$WALLET_KEY_FILE' does not point to a file"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
export DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER=`eth-keyfile -z -d $WALLET_KEY_FILE`
|
||||||
|
noncefile=${DEV_DATA_DIR}/nonce_${DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER}
|
||||||
|
|
||||||
# By default configuration values generated from previous runs will be used in subsequent invocations
|
# By default configuration values generated from previous runs will be used in subsequent invocations
|
||||||
# Setting the config reset
|
# Setting the config reset
|
||||||
if [ -z $DEV_CONFIG_RESET ]; then
|
if [ -z $DEV_CONFIG_RESET ]; then
|
||||||
@@ -17,18 +27,15 @@ if [ -z $DEV_CONFIG_RESET ]; then
|
|||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
>&2 echo -e "\033[;33mGenerating scratch configuration\033[;39m"
|
>&2 echo -e "\033[;33mGenerating scratch configuration\033[;39m"
|
||||||
|
bash_debug_flag=""
|
||||||
|
if [ "$DEV_DEBUG_LEVEL" -gt 1 ]; then
|
||||||
|
bash_debug_flag="-v"
|
||||||
|
fi
|
||||||
|
rm $bash_debug_flag -f ${DEV_DATA_DIR}/env_reset
|
||||||
|
rm $bash_debug_flag -f $noncefile
|
||||||
confini-dump --schema-dir ./config --prefix export > ${DEV_DATA_DIR}/env_reset
|
confini-dump --schema-dir ./config --prefix export > ${DEV_DATA_DIR}/env_reset
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Handle wallet
|
|
||||||
export WALLET_KEY_FILE=${WALLET_KEY_FILE:-`realpath ./keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c`}
|
|
||||||
if [ ! -f $WALLET_KEY_FILE ]; then
|
|
||||||
>&2 echo "wallet path '$WALLET_KEY_FILE' does not point to a file"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
#export DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER=`eth-checksum $(cat $WALLET_KEY_FILE | jq -r .address)`
|
|
||||||
export DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER=`eth-keyfile -z -d $WALLET_KEY_FILE`
|
|
||||||
|
|
||||||
# Wallet dependent variable defaults
|
# Wallet dependent variable defaults
|
||||||
export DEV_ETH_ACCOUNT_RESERVE_MINTER=${DEV_ETH_ACCOUNT_RESERVE_MINTER:-$DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER}
|
export DEV_ETH_ACCOUNT_RESERVE_MINTER=${DEV_ETH_ACCOUNT_RESERVE_MINTER:-$DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER}
|
||||||
export DEV_ETH_ACCOUNT_ACCOUNTS_INDEX_WRITER=${DEV_ETH_ACCOUNT_RESERVE_MINTER:-$DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER}
|
export DEV_ETH_ACCOUNT_ACCOUNTS_INDEX_WRITER=${DEV_ETH_ACCOUNT_RESERVE_MINTER:-$DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER}
|
||||||
@@ -36,6 +43,14 @@ export CIC_TRUST_ADDRESS=${CIC_TRUST_ADDRESS:-$DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER
|
|||||||
export CIC_DEFAULT_TOKEN_SYMBOL=$TOKEN_SYMBOL
|
export CIC_DEFAULT_TOKEN_SYMBOL=$TOKEN_SYMBOL
|
||||||
export TOKEN_SINK_ADDRESS=${TOKEN_SINK_ADDRESS:-$DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER}
|
export TOKEN_SINK_ADDRESS=${TOKEN_SINK_ADDRESS:-$DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER}
|
||||||
|
|
||||||
|
if [ ! -f $noncefile ]; then
|
||||||
|
nonce=`eth-count -p $RPC_PROVIDER $DEV_DEBUG_FLAG $DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER`
|
||||||
|
>&2 echo -e "\033[;96mUsing contract deployer address $DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER with nonce $nonce\033[;39m"
|
||||||
|
echo -n $nonce > $noncefile
|
||||||
|
else
|
||||||
|
nonce=`cat $noncefile`
|
||||||
|
>&2 echo -e "\033[;96mResuming usage with contract deployer address $DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER with nonce $nonce\033[;39m"
|
||||||
|
fi
|
||||||
|
|
||||||
# Migration variable processing
|
# Migration variable processing
|
||||||
confini-dump --schema-dir ./config > ${DEV_DATA_DIR}/env_reset
|
confini-dump --schema-dir ./config > ${DEV_DATA_DIR}/env_reset
|
||||||
|
|||||||
@@ -2,7 +2,8 @@
|
|||||||
eth_account_contract_deployer =
|
eth_account_contract_deployer =
|
||||||
token_mint_amount = 10000000000000000000000000000000000
|
token_mint_amount = 10000000000000000000000000000000000
|
||||||
gas_amount = 100000000000000000000000
|
gas_amount = 100000000000000000000000
|
||||||
eth_gas_price =
|
fee_limit_call =
|
||||||
|
fee_price =
|
||||||
data_dir =
|
data_dir =
|
||||||
address_declarator =
|
address_declarator =
|
||||||
declarator_description = 0x546869732069732074686520434943206e6574776f726b000000000000000000
|
declarator_description = 0x546869732069732074686520434943206e6574776f726b000000000000000000
|
||||||
|
|||||||
8
apps/contract-migration/config/proofs/config.ini
Normal file
8
apps/contract-migration/config/proofs/config.ini
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
[pgp]
|
||||||
|
export_dir = pgp/keys/
|
||||||
|
keys_path = /tmp/cic/pgp/
|
||||||
|
private_keys = privatekeys_meta.asc
|
||||||
|
passphrase =
|
||||||
|
|
||||||
|
[meta]
|
||||||
|
url =
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
ARG DEV_DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
ARG DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
||||||
|
|
||||||
FROM $DEV_DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-55da5f4e
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2
|
||||||
|
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
|
|
||||||
@@ -11,26 +11,33 @@ RUN cat /etc/apt/sources.list.d/ethereum.list
|
|||||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 2A518C819BE37D2C2031944D1C52189C923F6CA9
|
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 2A518C819BE37D2C2031944D1C52189C923F6CA9
|
||||||
|
|
||||||
RUN mkdir -vp /usr/local/etc/cic
|
RUN mkdir -vp /usr/local/etc/cic
|
||||||
|
# create secrets directory
|
||||||
|
RUN mkdir -vp pgp/keys
|
||||||
|
|
||||||
ENV CONFINI_DIR /usr/local/etc/cic/
|
COPY requirements.txt .
|
||||||
|
|
||||||
|
#RUN apt-get install libffi-dev
|
||||||
COPY config_template/ /usr/local/etc/cic/
|
|
||||||
COPY requirements.txt .
|
|
||||||
|
|
||||||
RUN apt-get install libffi-dev
|
|
||||||
|
|
||||||
ARG pip_index_url=https://pypi.org/simple
|
ARG pip_index_url=https://pypi.org/simple
|
||||||
ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net:8433"
|
ARG EXTRA_PIP_INDEX_URL="https://pip.grassrootseconomics.net:8433"
|
||||||
ARG EXTRA_PIP_ARGS=""
|
ARG EXTRA_PIP_ARGS=""
|
||||||
ARG PIP_INDEX_URL="https://pypi.org/simple"
|
ARG PIP_INDEX_URL="https://pypi.org/simple"
|
||||||
ARG pip_trusted_host=pypi.org
|
ARG pip_trusted_host=pypi.org
|
||||||
RUN pip install --index-url $PIP_INDEX_URL \
|
RUN pip install --index-url $PIP_INDEX_URL \
|
||||||
--pre \
|
--pre \
|
||||||
--force-reinstall \
|
|
||||||
--no-cache \
|
|
||||||
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
||||||
-r requirements.txt
|
-r requirements.txt
|
||||||
|
|
||||||
|
COPY override_requirements.txt .
|
||||||
|
|
||||||
|
RUN pip install --index-url $PIP_INDEX_URL \
|
||||||
|
--pre \
|
||||||
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
||||||
|
--force-reinstall \
|
||||||
|
--no-cache \
|
||||||
|
-r override_requirements.txt
|
||||||
|
|
||||||
|
RUN pip freeze
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN chmod +x *.sh
|
RUN chmod +x *.sh
|
||||||
|
|||||||
1
apps/contract-migration/override_requirements.txt
Normal file
1
apps/contract-migration/override_requirements.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
chainlib-eth==0.0.10a15
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
cic-eth[tools]==0.12.4a13
|
cic-eth[tools]==0.12.4a13
|
||||||
chainlib-eth>=0.0.10a5,<0.1.0
|
chainlib-eth>=0.0.10a15,<0.1.0
|
||||||
chainlib==0.0.10a3,<0.1.0
|
|
||||||
eth-erc20>=0.1.2a3,<0.2.0
|
eth-erc20>=0.1.2a3,<0.2.0
|
||||||
erc20-demurrage-token>=0.0.5a2,<0.1.0
|
erc20-demurrage-token>=0.0.5a2,<0.1.0
|
||||||
eth-address-index>=0.2.4a1,<0.3.0
|
eth-address-index>=0.2.4a1,<0.3.0
|
||||||
@@ -9,6 +8,6 @@ erc20-transfer-authorization>=0.3.5a2,<0.4.0
|
|||||||
erc20-faucet>=0.3.2a2,<0.4.0
|
erc20-faucet>=0.3.2a2,<0.4.0
|
||||||
sarafu-faucet>=0.0.7a2,<0.1.0
|
sarafu-faucet>=0.0.7a2,<0.1.0
|
||||||
confini>=0.4.2rc3,<1.0.0
|
confini>=0.4.2rc3,<1.0.0
|
||||||
crypto-dev-signer>=0.4.15rc2,<=0.4.15
|
|
||||||
eth-token-index>=0.2.4a1,<=0.3.0
|
eth-token-index>=0.2.4a1,<=0.3.0
|
||||||
okota>=0.2.4a15,<0.3.0
|
okota>=0.2.4a15,<0.3.0
|
||||||
|
cic-types~=0.2.1a2
|
||||||
@@ -4,13 +4,18 @@
|
|||||||
|
|
||||||
set -a
|
set -a
|
||||||
DEV_DEBUG_FLAG=""
|
DEV_DEBUG_FLAG=""
|
||||||
DEV_DEBUG_LEVEL=${DEV_DEBUG_LEVEL=0}
|
DEV_DEBUG_LEVEL=${DEV_DEBUG_LEVEL:-0}
|
||||||
if [ $DEV_DEBUG_LEVEL -eq 1 ]; then
|
if [ "$DEV_DEBUG_LEVEL" -eq 1 ]; then
|
||||||
DEV_DEBUG_FLAG="-v"
|
DEV_DEBUG_FLAG="-v"
|
||||||
elif [ $DEV_DEBUG_LEVEL -gt 1 ]; then
|
elif [ "$DEV_DEBUG_LEVEL" -gt 1 ]; then
|
||||||
DEV_DEBUG_FLAG="-vv"
|
DEV_DEBUG_FLAG="-vv"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
DEV_WAIT_FLAG=""
|
||||||
|
if [ ! -z "$DEV_TX_WAIT" ]; then
|
||||||
|
DEV_WAIT_FLAG="-w"
|
||||||
|
fi
|
||||||
|
|
||||||
# disable override of config schema directory
|
# disable override of config schema directory
|
||||||
unset CONFINI_DIR
|
unset CONFINI_DIR
|
||||||
|
|
||||||
@@ -34,6 +39,14 @@ confini-dump --schema-dir ./config
|
|||||||
|
|
||||||
clear_pending_tx_hashes
|
clear_pending_tx_hashes
|
||||||
|
|
||||||
|
RUN_MASK_HIGHEST=0
|
||||||
|
for ((i=$LAST_BIT_POS; i>0; i--)); do
|
||||||
|
b=$((2**$((i-1))))
|
||||||
|
if [ $((b & $RUN_MASK)) -gt 0 ]; then
|
||||||
|
RUN_MASK_HIGHEST=$i
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
bit=1
|
bit=1
|
||||||
for ((i=0; i<$LAST_BIT_POS; i++)); do
|
for ((i=0; i<$LAST_BIT_POS; i++)); do
|
||||||
|
|||||||
114
apps/contract-migration/scripts/proofs.py
Normal file
114
apps/contract-migration/scripts/proofs.py
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
# standard imports
|
||||||
|
import hashlib
|
||||||
|
import json
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
from typing import Union
|
||||||
|
|
||||||
|
# external imports
|
||||||
|
import cic_eth.cli
|
||||||
|
from chainlib.chain import ChainSpec
|
||||||
|
from chainlib.eth.connection import EthHTTPConnection
|
||||||
|
from chainlib.eth.gas import OverrideGasOracle
|
||||||
|
from chainlib.eth.nonce import RPCNonceOracle
|
||||||
|
from cic_types.condiments import MetadataPointer
|
||||||
|
from cic_types.ext.metadata import MetadataRequestsHandler, Signer
|
||||||
|
from eth_address_declarator import Declarator
|
||||||
|
from eth_address_declarator.declarator import AddressDeclarator
|
||||||
|
from funga.eth.signer import EIP155Signer
|
||||||
|
from funga.eth.keystore.dict import DictKeystore
|
||||||
|
from hexathon import add_0x, strip_0x
|
||||||
|
|
||||||
|
# local imports
|
||||||
|
|
||||||
|
logging.basicConfig(level=logging.WARNING)
|
||||||
|
logg = logging.getLogger()
|
||||||
|
|
||||||
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
||||||
|
root_dir = os.path.join(script_dir, '..')
|
||||||
|
base_config_dir = os.path.join(root_dir, 'config', 'proofs')
|
||||||
|
token_data_dir = os.path.join(root_dir, 'token_data')
|
||||||
|
|
||||||
|
arg_flags = cic_eth.cli.argflag_std_base
|
||||||
|
arg_parser = cic_eth.cli.ArgumentParser(arg_flags)
|
||||||
|
arg_parser.add_argument('--token-symbol', type=str, help='Token symbol whose metadata is being processed.')
|
||||||
|
arg_parser.add_argument('--address-declarator', type=str, help='Address to address declarator contract')
|
||||||
|
arg_parser.add_argument('--signer-address', type=str, help='Wallet keyfile address')
|
||||||
|
arg_parser.add_argument('-e', type=str, help='Token address.')
|
||||||
|
args = arg_parser.parse_args()
|
||||||
|
config = cic_eth.cli.Config.from_args(args, arg_flags, 0, base_config_dir=base_config_dir)
|
||||||
|
|
||||||
|
token_metadata = os.path.join(token_data_dir, 'meta.json')
|
||||||
|
token_proof = os.path.join(token_data_dir, 'proof.json')
|
||||||
|
|
||||||
|
|
||||||
|
def hash_proof(data: bytes) -> hex:
|
||||||
|
hash_object = hashlib.sha256()
|
||||||
|
hash_object.update(data)
|
||||||
|
return hash_object.digest().hex()
|
||||||
|
|
||||||
|
|
||||||
|
def init_meta():
|
||||||
|
MetadataRequestsHandler.base_url = config.get('META_URL')
|
||||||
|
Signer.gpg_path = config.get('PGP_EXPORT_DIR')
|
||||||
|
Signer.key_file_path = f"{config.get('PGP_KEYS_PATH')}{config.get('PGP_PRIVATE_KEYS')}"
|
||||||
|
Signer.gpg_passphrase = config.get('PGP_PASSPHRASE')
|
||||||
|
|
||||||
|
|
||||||
|
def wrapper(chain_spec: ChainSpec, rpc: EthHTTPConnection) -> Declarator:
|
||||||
|
gas_oracle = OverrideGasOracle(limit=AddressDeclarator.gas(), conn=rpc)
|
||||||
|
nonce_oracle = RPCNonceOracle(address=add_0x(args.signer_address.lower()), conn=rpc)
|
||||||
|
keystore = DictKeystore()
|
||||||
|
keystore.import_keystore_file(keystore_file=config.get('WALLET_KEY_FILE'))
|
||||||
|
signer = EIP155Signer(keystore)
|
||||||
|
return Declarator(chain_spec, gas_oracle=gas_oracle, nonce_oracle=nonce_oracle, signer=signer)
|
||||||
|
|
||||||
|
|
||||||
|
def write_to_declarator(contract_address: hex, contract_wrapper: Declarator, proof: any, rpc: EthHTTPConnection, signer_address: hex, token_address: hex):
|
||||||
|
operation = contract_wrapper.add_declaration(contract_address, signer_address, token_address, proof)
|
||||||
|
results = rpc.do(operation[1])
|
||||||
|
rpc.wait(results)
|
||||||
|
|
||||||
|
|
||||||
|
def write_metadata(writer: MetadataRequestsHandler, data: Union[dict, str]):
|
||||||
|
writer.create(data)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
init_meta()
|
||||||
|
chain_spec = ChainSpec.from_chain_str(config.get('CHAIN_SPEC'))
|
||||||
|
|
||||||
|
token_address_bytes = bytes.fromhex(strip_0x(args.e))
|
||||||
|
token_symbol_bytes = args.token_symbol.encode('utf-8')
|
||||||
|
token_meta_file = open(token_metadata, 'r')
|
||||||
|
token_proof_file = open(token_proof, 'r')
|
||||||
|
token_meta_data = json.load(token_meta_file)
|
||||||
|
token_proof_data = json.load(token_proof_file)
|
||||||
|
token_meta_file.close()
|
||||||
|
token_proof_file.close()
|
||||||
|
|
||||||
|
token_meta_writer = MetadataRequestsHandler(cic_type=MetadataPointer.TOKEN_META, identifier=token_address_bytes)
|
||||||
|
write_metadata(token_meta_writer, token_meta_data)
|
||||||
|
|
||||||
|
token_meta_symbol_writer = MetadataRequestsHandler(cic_type=MetadataPointer.TOKEN_META_SYMBOL, identifier=token_symbol_bytes)
|
||||||
|
write_metadata(token_meta_symbol_writer, token_meta_data)
|
||||||
|
|
||||||
|
token_proof_writer = MetadataRequestsHandler(cic_type=MetadataPointer.TOKEN_PROOF, identifier=token_address_bytes)
|
||||||
|
write_metadata(token_proof_writer, token_proof_data)
|
||||||
|
|
||||||
|
token_proof_symbol_writer = MetadataRequestsHandler(cic_type=MetadataPointer.TOKEN_PROOF_SYMBOL, identifier=token_symbol_bytes)
|
||||||
|
write_metadata(token_proof_symbol_writer, token_proof_data)
|
||||||
|
|
||||||
|
rpc = EthHTTPConnection(url=config.get('RPC_PROVIDER'), chain_spec=chain_spec)
|
||||||
|
contract_wrapper = wrapper(chain_spec, rpc)
|
||||||
|
|
||||||
|
hashed_token_proof = hash_proof(data=json.dumps(token_proof_data).encode('utf-8'))
|
||||||
|
identifier = bytes.fromhex(hashed_token_proof)
|
||||||
|
token_immutable_proof_writer = MetadataRequestsHandler(cic_type=MetadataPointer.NONE, identifier=identifier)
|
||||||
|
write_metadata(token_immutable_proof_writer, token_proof_data)
|
||||||
|
write_to_declarator(contract_address=args.address_declarator,
|
||||||
|
contract_wrapper=contract_wrapper,
|
||||||
|
proof=hashed_token_proof,
|
||||||
|
rpc=rpc,
|
||||||
|
signer_address=args.signer_address,
|
||||||
|
token_address=args.e)
|
||||||
6
apps/contract-migration/token_data/meta.json
Normal file
6
apps/contract-migration/token_data/meta.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"contact": {"phone": "+254757628885", "email": "info@grassrootseconomics.org"},
|
||||||
|
"country_code": "KE",
|
||||||
|
"location": "Kilifi",
|
||||||
|
"name": "GRASSROOTS ECONOMICS"
|
||||||
|
}
|
||||||
7
apps/contract-migration/token_data/proof.json
Normal file
7
apps/contract-migration/token_data/proof.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"description": "Community support",
|
||||||
|
"issuer": "Grassroots Economics",
|
||||||
|
"namespace": "ge",
|
||||||
|
"proofs": [],
|
||||||
|
"version": 0
|
||||||
|
}
|
||||||
@@ -32,11 +32,39 @@ function must_eth_rpc() {
|
|||||||
|
|
||||||
|
|
||||||
function clear_pending_tx_hashes() {
|
function clear_pending_tx_hashes() {
|
||||||
truncate -s 0 $DEV_DATA_DIR/hashes
|
>&2 echo -e "\033[;96mClearing pending hashes\033[;39m"
|
||||||
|
truncate -s 0 ${DEV_DATA_DIR}/hashes
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function add_pending_tx_hash() {
|
function add_pending_tx_hash() {
|
||||||
must_hash_256 $1
|
must_hash_256 $1
|
||||||
echo $1 >> $DEV_DATA_DIR/hashes
|
echo $1 >> ${DEV_DATA_DIR}/hashes
|
||||||
|
}
|
||||||
|
|
||||||
|
function advance_nonce() {
|
||||||
|
nonce=`cat $noncefile`
|
||||||
|
next_nonce=$((nonce+1))
|
||||||
|
echo -n $next_nonce > $noncefile
|
||||||
|
if [ "$DEV_DEBUG_LEVEL" -gt 1 ]; then
|
||||||
|
>&2 echo retrieved nonce $nonce
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function debug_rpc() {
|
||||||
|
if [ "$DEV_DEBUG_LEVEL" -gt 2 ]; then
|
||||||
|
>&2 echo -e "\033[;35mRPC Node state\033[;39m"
|
||||||
|
>&2 eth-info --local -p $RPC_PROVIDER
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function check_wait() {
|
||||||
|
#if [ "$1" -eq "$RUN_MASK_HIGHEST" ]; then
|
||||||
|
>&2 echo -e "\033[;96mCatch up with paralell transactions\033[;39m"
|
||||||
|
if [ "$DEV_DEBUG_LEVEL" -gt "0" ]; then
|
||||||
|
>&2 cat ${DEV_DATA_DIR}/hashes
|
||||||
|
fi
|
||||||
|
eth-wait $DEV_DEBUG_FLAG -p $RPC_PROVIDER ${DEV_DATA_DIR}/hashes
|
||||||
|
clear_pending_tx_hashes
|
||||||
|
#fi
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ args_override = {
|
|||||||
'REDIS_DB': getattr(args, 'redis_db'),
|
'REDIS_DB': getattr(args, 'redis_db'),
|
||||||
'META_HOST': getattr(args, 'meta_host'),
|
'META_HOST': getattr(args, 'meta_host'),
|
||||||
'META_PORT': getattr(args, 'meta_port'),
|
'META_PORT': getattr(args, 'meta_port'),
|
||||||
'KEYSTORE_FILE_PATH': getattr(args, 'y')
|
'WALLET_KEY_FILE': getattr(args, 'y')
|
||||||
}
|
}
|
||||||
config.dict_override(args_override, 'cli flag')
|
config.dict_override(args_override, 'cli flag')
|
||||||
config.censor('PASSWORD', 'DATABASE')
|
config.censor('PASSWORD', 'DATABASE')
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ config.censor('PASSWORD', 'DATABASE')
|
|||||||
config.censor('PASSWORD', 'SSL')
|
config.censor('PASSWORD', 'SSL')
|
||||||
logg.debug(f'config loaded from {args.c}:\n{config}')
|
logg.debug(f'config loaded from {args.c}:\n{config}')
|
||||||
|
|
||||||
dirs = initialize_dirs(args.import_dir, force_reset=args.f)
|
dirs = initialize_dirs(args.import_dir)
|
||||||
|
|
||||||
valid_service_codes = config.get('USSD_SERVICE_CODE').split(",")
|
valid_service_codes = config.get('USSD_SERVICE_CODE').split(",")
|
||||||
|
|
||||||
|
|||||||
@@ -12,11 +12,13 @@ def initialize_dirs(user_dir, force_reset=False):
|
|||||||
dirs['new'] = os.path.join(user_dir, 'new')
|
dirs['new'] = os.path.join(user_dir, 'new')
|
||||||
dirs['meta'] = os.path.join(user_dir, 'meta')
|
dirs['meta'] = os.path.join(user_dir, 'meta')
|
||||||
dirs['custom'] = os.path.join(user_dir, 'custom')
|
dirs['custom'] = os.path.join(user_dir, 'custom')
|
||||||
|
dirs['phone'] = os.path.join(user_dir, 'phone')
|
||||||
dirs['preferences'] = os.path.join(user_dir, 'preferences')
|
dirs['preferences'] = os.path.join(user_dir, 'preferences')
|
||||||
dirs['txs'] = os.path.join(user_dir, 'txs')
|
dirs['txs'] = os.path.join(user_dir, 'txs')
|
||||||
dirs['keyfile'] = os.path.join(user_dir, 'keystore')
|
dirs['keyfile'] = os.path.join(user_dir, 'keystore')
|
||||||
dirs['custom_new'] = os.path.join(dirs['custom'], 'new')
|
dirs['custom_new'] = os.path.join(dirs['custom'], 'new')
|
||||||
dirs['custom_meta'] = os.path.join(dirs['custom'], 'meta')
|
dirs['custom_meta'] = os.path.join(dirs['custom'], 'meta')
|
||||||
|
dirs['phone_meta'] = os.path.join(dirs['phone'], 'meta')
|
||||||
dirs['preferences_meta'] = os.path.join(dirs['preferences'], 'meta')
|
dirs['preferences_meta'] = os.path.join(dirs['preferences'], 'meta')
|
||||||
dirs['preferences_new'] = os.path.join(dirs['preferences'], 'new')
|
dirs['preferences_new'] = os.path.join(dirs['preferences'], 'new')
|
||||||
|
|
||||||
@@ -37,6 +39,6 @@ def initialize_dirs(user_dir, force_reset=False):
|
|||||||
for d in dirs.keys():
|
for d in dirs.keys():
|
||||||
if d == 'old':
|
if d == 'old':
|
||||||
continue
|
continue
|
||||||
os.makedirs(dirs[d])
|
os.makedirs(dirs[d], exist_ok=True)
|
||||||
|
|
||||||
return dirs
|
return dirs
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
[rpc]
|
[rpc]
|
||||||
provider =
|
provider = http://localhost:63545
|
||||||
|
|||||||
@@ -37,11 +37,11 @@ if [ "$INCLUDE_BALANCES" != "y" ]
|
|||||||
then
|
then
|
||||||
echo -e "\033[;96mRunning worker without opening balance transactions\033[;96m"
|
echo -e "\033[;96mRunning worker without opening balance transactions\033[;96m"
|
||||||
TARGET_TX_COUNT=$NUMBER_OF_USERS
|
TARGET_TX_COUNT=$NUMBER_OF_USERS
|
||||||
nohup python cic_ussd/import_balance.py -vv -c "$CONFIG" -p "$ETH_PROVIDER" -r "$CIC_REGISTRY_ADDRESS" --token-symbol "$TOKEN_SYMBOL" -y "$KEYSTORE_PATH" "$OUT_DIR" > nohup.out 2> nohup.err < /dev/null &
|
nohup python cic_ussd/import_balance.py -vv -c "$CONFIG" -p "$ETH_PROVIDER" -r "$CIC_REGISTRY_ADDRESS" --token-symbol "$TOKEN_SYMBOL" -y "$WALLET_KEY_FILE" "$OUT_DIR" > nohup.out 2> nohup.err < /dev/null &
|
||||||
else
|
else
|
||||||
echo -e "\033[;96mRunning worker with opening balance transactions\033[;96m"
|
echo -e "\033[;96mRunning worker with opening balance transactions\033[;96m"
|
||||||
TARGET_TX_COUNT=$((NUMBER_OF_USERS*2))
|
TARGET_TX_COUNT=$((NUMBER_OF_USERS*2))
|
||||||
nohup python cic_ussd/import_balance.py -vv -c "$CONFIG" -p "$ETH_PROVIDER" -r "$CIC_REGISTRY_ADDRESS" --include-balances --token-symbol "$TOKEN_SYMBOL" -y "$KEYSTORE_PATH" "$OUT_DIR" &
|
nohup python cic_ussd/import_balance.py -vv -c "$CONFIG" -p "$ETH_PROVIDER" -r "$CIC_REGISTRY_ADDRESS" --include-balances --token-symbol "$TOKEN_SYMBOL" -y "$WALLET_KEY_FILE" "$OUT_DIR" &
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -e "\033[;96mTarget count set to ${TARGET_TX_COUNT}"
|
echo -e "\033[;96mTarget count set to ${TARGET_TX_COUNT}"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ volumes:
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
evm:
|
evm:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/bloxberg-node:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/bloxberg-node:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/bloxbergValidatorSetup
|
context: apps/bloxbergValidatorSetup
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@@ -41,18 +41,23 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
bootstrap:
|
bootstrap:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/contract-migration:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/contract-migration:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/contract-migration
|
context: apps/contract-migration
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
args:
|
args:
|
||||||
DOCKER_REGISTRY: $DEV_DOCKER_REGISTRY
|
DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}
|
||||||
PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple}
|
PIP_INDEX_URL: ${PIP_INDEX_URL:-https://pypi.org/simple}
|
||||||
EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433}
|
EXTRA_PIP_INDEX_URL: ${EXTRA_PIP_INDEX_URL:-https://pip.grassrootseconomics.net:8433}
|
||||||
EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS
|
EXTRA_PIP_ARGS: $EXTRA_PIP_ARGS
|
||||||
environment:
|
environment:
|
||||||
DEV_DATA_DIR: ${DEV_DATA_DIR:-/tmp/cic/config}
|
DEV_DATA_DIR: ${DEV_DATA_DIR:-/tmp/cic/config}
|
||||||
DEV_CONFIG_RESET: $DEV_CONFIG_RESET
|
DEV_CONFIG_RESET: $DEV_CONFIG_RESET
|
||||||
|
DEV_FEE_PRICE: $DEV_FEE_PRICE
|
||||||
|
DEV_FEE_LIMIT_CALL: ${DEV_FEE_LIMIT_CALL:-8000000}
|
||||||
|
DEV_DEBUG_LEVEL: ${DEV_DEBUG_LEVEL:-0}
|
||||||
|
DEV_TX_WAIT: $DEV_TX_WAIT
|
||||||
|
DEV_GAS_AMOUNT: $DEV_GAS_AMOUNT
|
||||||
RPC_PROVIDER: ${RPC_PROVIDER:-http://evm:8545}
|
RPC_PROVIDER: ${RPC_PROVIDER:-http://evm:8545}
|
||||||
CHAIN_SPEC: ${CHAIN_SPEC:-evm:byzantium:8996:bloxberg}
|
CHAIN_SPEC: ${CHAIN_SPEC:-evm:byzantium:8996:bloxberg}
|
||||||
REDIS_HOST: ${REDIS_HOST:-redis}
|
REDIS_HOST: ${REDIS_HOST:-redis}
|
||||||
@@ -72,19 +77,24 @@ services:
|
|||||||
REDIS_HOST_CALLBACK: ${REDIS_HOST_CALLBACK:-redis}
|
REDIS_HOST_CALLBACK: ${REDIS_HOST_CALLBACK:-redis}
|
||||||
REDIS_PORT_CALLBACK: ${REDIS_PORT_CALLBACK:-6379}
|
REDIS_PORT_CALLBACK: ${REDIS_PORT_CALLBACK:-6379}
|
||||||
FAUCET_AMOUNT: ${FAUCET_AMOUNT:-0}
|
FAUCET_AMOUNT: ${FAUCET_AMOUNT:-0}
|
||||||
|
WALLET_KEY_FILE: ${WALLET_KEY_FILE:-/root/keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c}
|
||||||
|
PGP_PASSPHRASE: merman
|
||||||
|
META_URL: http://meta:8000
|
||||||
command: ["./run_job.sh"]
|
command: ["./run_job.sh"]
|
||||||
depends_on:
|
depends_on:
|
||||||
- evm
|
- evm
|
||||||
- postgres
|
- postgres
|
||||||
- redis
|
- redis
|
||||||
#- cic-eth-tasker
|
- cic-meta-server
|
||||||
|
- cic-eth-tasker
|
||||||
volumes:
|
volumes:
|
||||||
- contract-config:/tmp/cic/config
|
- contract-config:/tmp/cic/config
|
||||||
|
- ./apps/contract-migration/testdata/pgp/:/tmp/cic/pgp
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
cic-signer:
|
cic-signer:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/funga-eth:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/funga-eth:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-signer
|
context: apps/cic-signer
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
@@ -114,7 +124,7 @@ services:
|
|||||||
|
|
||||||
# queue handling for outgoing transactions and incoming transactions
|
# queue handling for outgoing transactions and incoming transactions
|
||||||
cic-eth-tasker:
|
cic-eth-tasker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-eth:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-eth:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-eth
|
context: apps/cic-eth
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -164,7 +174,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-eth-tracker:
|
cic-eth-tracker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-eth:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-eth:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-eth
|
context: apps/cic-eth
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -212,7 +222,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-eth-dispatcher:
|
cic-eth-dispatcher:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-eth:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-eth:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-eth
|
context: apps/cic-eth
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -256,7 +266,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-eth-retrier:
|
cic-eth-retrier:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-eth:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-eth:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-eth
|
context: apps/cic-eth
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -303,7 +313,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-cache-tracker:
|
cic-cache-tracker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-cache:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-cache:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-cache
|
context: apps/cic-cache
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -351,7 +361,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-cache-tasker:
|
cic-cache-tasker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-cache:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-cache:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-cache
|
context: apps/cic-cache
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -399,7 +409,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-cache-server:
|
cic-cache-server:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-cache:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-cache:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-cache
|
context: apps/cic-cache
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -443,7 +453,7 @@ services:
|
|||||||
|
|
||||||
# metadata replacement server for swarm
|
# metadata replacement server for swarm
|
||||||
cic-meta-server:
|
cic-meta-server:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-meta:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-meta:${TAG:-latest}
|
||||||
hostname: meta
|
hostname: meta
|
||||||
build:
|
build:
|
||||||
context: apps/cic-meta
|
context: apps/cic-meta
|
||||||
@@ -481,7 +491,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-user-tasker:
|
cic-user-tasker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-user:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-user:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-ussd
|
context: apps/cic-ussd
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -517,7 +527,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-user-server:
|
cic-user-server:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-user:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-user:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-ussd
|
context: apps/cic-ussd
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -546,7 +556,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-user-ussd-server:
|
cic-user-ussd-server:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-user:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-user:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-ussd
|
context: apps/cic-ussd
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -584,7 +594,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-notify-tasker:
|
cic-notify-tasker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-notify:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-notify:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-notify
|
context: apps/cic-notify
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -615,7 +625,7 @@ services:
|
|||||||
command: "/root/start_tasker.sh -q cic-notify -vv"
|
command: "/root/start_tasker.sh -q cic-notify -vv"
|
||||||
|
|
||||||
data-seeding:
|
data-seeding:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/data-seeding:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/data-seeding:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/data-seeding
|
context: apps/data-seeding
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -643,7 +653,8 @@ services:
|
|||||||
CONFIG: config
|
CONFIG: config
|
||||||
CHAIN_SPEC: ${CHAIN_SPEC:-evm:byzantium:8996:bloxberg}
|
CHAIN_SPEC: ${CHAIN_SPEC:-evm:byzantium:8996:bloxberg}
|
||||||
TOKEN_SYMBOL: GFT
|
TOKEN_SYMBOL: GFT
|
||||||
KEYSTORE_PATH: keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c
|
#KEYSTORE_PATH: keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c
|
||||||
|
WALLET_KEY_FILE: ${WALLET_KEY_FILE:-/root/keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c}
|
||||||
USSD_HOST: cic-user-ussd-server
|
USSD_HOST: cic-user-ussd-server
|
||||||
USSD_PORT: 9000
|
USSD_PORT: 9000
|
||||||
INCLUDE_BALANCES: y
|
INCLUDE_BALANCES: y
|
||||||
|
|||||||
@@ -6,4 +6,7 @@ set -e
|
|||||||
TAG=${TAG?Variable not set} \
|
TAG=${TAG?Variable not set} \
|
||||||
docker-compose \
|
docker-compose \
|
||||||
-f docker-compose.yml \
|
-f docker-compose.yml \
|
||||||
build
|
build \
|
||||||
|
--no-cache \
|
||||||
|
--parallel \
|
||||||
|
--progress plain
|
||||||
|
|||||||
Reference in New Issue
Block a user