Compare commits
16 Commits
lash/tmp-b
...
lash/split
| Author | SHA1 | Date | |
|---|---|---|---|
|
7d0bb742b8
|
|||
|
|
b49bf4e5fd
|
||
|
|
f14de17680
|
||
|
f87554d0d0
|
|||
|
92ef656cab
|
|||
|
0e9c4e5199
|
|||
|
8a002fa801
|
|||
|
cbd7160be4
|
|||
|
bbd524b78c
|
|||
|
3fb7106e58
|
|||
|
576aadb509
|
|||
|
c8e81287b7
|
|||
|
b0fc3f866c
|
|||
|
9f3d4d4180
|
|||
|
bb792cb608
|
|||
|
a772a67ca5
|
@@ -1,16 +1,19 @@
|
|||||||
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-e8eb2ee2
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-55da5f4e
|
||||||
|
|
||||||
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 --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
RUN pip install --index-url $PIP_INDEX_URL \
|
||||||
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,12 +17,11 @@ 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, help='config file')
|
argparser.add_argument('-c', type=str, default=config_dir, 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')
|
||||||
@@ -36,7 +35,7 @@ if args.vv:
|
|||||||
elif args.v:
|
elif args.v:
|
||||||
logging.getLogger().setLevel(logging.INFO)
|
logging.getLogger().setLevel(logging.INFO)
|
||||||
|
|
||||||
config = confini.Config(configdir, args.env_prefix)
|
config = confini.Config(args.c, args.env_prefix)
|
||||||
config.process()
|
config.process()
|
||||||
config.censor('PASSWORD', 'DATABASE')
|
config.censor('PASSWORD', 'DATABASE')
|
||||||
config.censor('PASSWORD', 'SSL')
|
config.censor('PASSWORD', 'SSL')
|
||||||
|
|||||||
@@ -683,4 +683,3 @@ class Api(ApiBase):
|
|||||||
|
|
||||||
t = self.callback_success.apply_async([r])
|
t = self.callback_success.apply_async([r])
|
||||||
return t
|
return t
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ def upgrade():
|
|||||||
op.create_table(
|
op.create_table(
|
||||||
'lock',
|
'lock',
|
||||||
sa.Column('id', sa.Integer, primary_key=True),
|
sa.Column('id', sa.Integer, primary_key=True),
|
||||||
sa.Column("address", sa.String, nullable=True),
|
sa.Column("address", sa.String(42), nullable=True),
|
||||||
sa.Column('blockchain', sa.String),
|
sa.Column('blockchain', sa.String),
|
||||||
sa.Column("flags", sa.BIGINT(), nullable=False, default=0),
|
sa.Column("flags", sa.BIGINT(), nullable=False, default=0),
|
||||||
sa.Column("date_created", sa.DateTime, nullable=False, default=datetime.datetime.utcnow),
|
sa.Column("date_created", sa.DateTime, nullable=False, default=datetime.datetime.utcnow),
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||
"""Add gas cache
|
|
||||||
|
|
||||||
Revision ID: c91cafc3e0c1
|
|
||||||
Revises: aee12aeb47ec
|
|
||||||
Create Date: 2021-10-28 20:45:34.239865
|
|
||||||
|
|
||||||
"""
|
|
||||||
from alembic import op
|
|
||||||
import sqlalchemy as sa
|
|
||||||
|
|
||||||
|
|
||||||
# revision identifiers, used by Alembic.
|
|
||||||
revision = 'c91cafc3e0c1'
|
|
||||||
down_revision = 'aee12aeb47ec'
|
|
||||||
branch_labels = None
|
|
||||||
depends_on = None
|
|
||||||
|
|
||||||
|
|
||||||
def upgrade():
|
|
||||||
op.create_table(
|
|
||||||
'gas_cache',
|
|
||||||
sa.Column('id', sa.Integer, primary_key=True),
|
|
||||||
sa.Column("address", sa.String, nullable=False),
|
|
||||||
sa.Column("tx_hash", sa.String, nullable=True),
|
|
||||||
sa.Column("method", sa.String, nullable=True),
|
|
||||||
sa.Column("value", sa.BIGINT(), nullable=False),
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def downgrade():
|
|
||||||
op.drop_table('gas_cache')
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# standard imports
|
|
||||||
import logging
|
|
||||||
|
|
||||||
# external imports
|
|
||||||
from sqlalchemy import Column, String, NUMERIC
|
|
||||||
|
|
||||||
# local imports
|
|
||||||
from .base import SessionBase
|
|
||||||
|
|
||||||
logg = logging.getLogger(__name__)
|
|
||||||
|
|
||||||
|
|
||||||
class GasCache(SessionBase):
|
|
||||||
"""Provides gas budget cache for token operations
|
|
||||||
"""
|
|
||||||
__tablename__ = 'gas_cache'
|
|
||||||
|
|
||||||
address = Column(String())
|
|
||||||
tx_hash = Column(String())
|
|
||||||
method = Column(String())
|
|
||||||
value = Column(NUMERIC())
|
|
||||||
|
|
||||||
def __init__(self, address, method, value, tx_hash):
|
|
||||||
self.address = address
|
|
||||||
self.tx_hash = tx_hash
|
|
||||||
self.method = method
|
|
||||||
self.value = value
|
|
||||||
@@ -12,7 +12,7 @@ from cic_eth.error import (
|
|||||||
IntegrityError,
|
IntegrityError,
|
||||||
)
|
)
|
||||||
|
|
||||||
logg = logging.getLogger(__name__)
|
logg = logging.getLogger()
|
||||||
|
|
||||||
|
|
||||||
class Nonce(SessionBase):
|
class Nonce(SessionBase):
|
||||||
@@ -21,7 +21,7 @@ class Nonce(SessionBase):
|
|||||||
__tablename__ = 'nonce'
|
__tablename__ = 'nonce'
|
||||||
|
|
||||||
nonce = Column(Integer)
|
nonce = Column(Integer)
|
||||||
address_hex = Column(String(40))
|
address_hex = Column(String(42))
|
||||||
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|||||||
@@ -10,9 +10,6 @@ from chainlib.eth.tx import (
|
|||||||
TxFormat,
|
TxFormat,
|
||||||
unpack,
|
unpack,
|
||||||
)
|
)
|
||||||
from chainlib.eth.contract import (
|
|
||||||
ABIContractEncoder,
|
|
||||||
)
|
|
||||||
from cic_eth_registry import CICRegistry
|
from cic_eth_registry import CICRegistry
|
||||||
from cic_eth_registry.erc20 import ERC20Token
|
from cic_eth_registry.erc20 import ERC20Token
|
||||||
from hexathon import (
|
from hexathon import (
|
||||||
@@ -158,7 +155,7 @@ def transfer_from(self, tokens, holder_address, receiver_address, value, chain_s
|
|||||||
|
|
||||||
session = self.create_session()
|
session = self.create_session()
|
||||||
nonce_oracle = CustodialTaskNonceOracle(holder_address, self.request.root_id, session=session)
|
nonce_oracle = CustodialTaskNonceOracle(holder_address, self.request.root_id, session=session)
|
||||||
gas_oracle = self.create_gas_oracle(rpc, t['address'], MaxGasOracle.gas)
|
gas_oracle = self.create_gas_oracle(rpc, MaxGasOracle.gas)
|
||||||
c = ERC20(chain_spec, signer=rpc_signer, gas_oracle=gas_oracle, nonce_oracle=nonce_oracle)
|
c = ERC20(chain_spec, signer=rpc_signer, gas_oracle=gas_oracle, nonce_oracle=nonce_oracle)
|
||||||
try:
|
try:
|
||||||
(tx_hash_hex, tx_signed_raw_hex) = c.transfer_from(t['address'], spender_address, holder_address, receiver_address, value, tx_format=TxFormat.RLP_SIGNED)
|
(tx_hash_hex, tx_signed_raw_hex) = c.transfer_from(t['address'], spender_address, holder_address, receiver_address, value, tx_format=TxFormat.RLP_SIGNED)
|
||||||
@@ -229,11 +226,6 @@ def transfer(self, tokens, holder_address, receiver_address, value, chain_spec_d
|
|||||||
|
|
||||||
session = self.create_session()
|
session = self.create_session()
|
||||||
nonce_oracle = CustodialTaskNonceOracle(holder_address, self.request.root_id, session=session)
|
nonce_oracle = CustodialTaskNonceOracle(holder_address, self.request.root_id, session=session)
|
||||||
|
|
||||||
enc = ABIContractEncoder()
|
|
||||||
enc.method('transferFrom')
|
|
||||||
method = enc.get()
|
|
||||||
|
|
||||||
gas_oracle = self.create_gas_oracle(rpc, MaxGasOracle.gas)
|
gas_oracle = self.create_gas_oracle(rpc, MaxGasOracle.gas)
|
||||||
c = ERC20(chain_spec, signer=rpc_signer, gas_oracle=gas_oracle, nonce_oracle=nonce_oracle)
|
c = ERC20(chain_spec, signer=rpc_signer, gas_oracle=gas_oracle, nonce_oracle=nonce_oracle)
|
||||||
try:
|
try:
|
||||||
|
|||||||
@@ -41,7 +41,6 @@ from chainqueue.db.models.tx import TxCache
|
|||||||
from chainqueue.db.models.otx import Otx
|
from chainqueue.db.models.otx import Otx
|
||||||
|
|
||||||
# local imports
|
# local imports
|
||||||
from cic_eth.db.models.gas_cache import GasCache
|
|
||||||
from cic_eth.db.models.role import AccountRole
|
from cic_eth.db.models.role import AccountRole
|
||||||
from cic_eth.db.models.base import SessionBase
|
from cic_eth.db.models.base import SessionBase
|
||||||
from cic_eth.error import (
|
from cic_eth.error import (
|
||||||
@@ -71,33 +70,12 @@ celery_app = celery.current_app
|
|||||||
logg = logging.getLogger()
|
logg = logging.getLogger()
|
||||||
|
|
||||||
|
|
||||||
|
MAXIMUM_FEE_UNITS = 8000000
|
||||||
|
|
||||||
@celery_app.task(base=CriticalSQLAlchemyTask)
|
class MaxGasOracle:
|
||||||
def apply_gas_value_cache(address, method, value, tx_hash):
|
|
||||||
return apply_gas_value_cache_local(address, method, value, tx_hash)
|
|
||||||
|
|
||||||
|
def gas(code=None):
|
||||||
def apply_gas_value_cache_local(address, method, value, tx_hash, session=None):
|
return MAXIMUM_FEE_UNITS
|
||||||
address = tx_normalize.executable_address(address)
|
|
||||||
tx_hash = tx_normalize.tx_hash(tx_hash)
|
|
||||||
value = int(value)
|
|
||||||
|
|
||||||
session = SessionBase.bind_session(session)
|
|
||||||
q = session.query(GasCache)
|
|
||||||
q = q.filter(GasCache.address==address)
|
|
||||||
q = q.filter(GasCache.method==method)
|
|
||||||
o = q.first()
|
|
||||||
|
|
||||||
if o == None:
|
|
||||||
o = GasCache(address, method, value, tx_hash)
|
|
||||||
elif tx.gas_used > o.value:
|
|
||||||
o.value = value
|
|
||||||
o.tx_hash = strip_0x(tx_hash)
|
|
||||||
|
|
||||||
session.add(o)
|
|
||||||
session.commit()
|
|
||||||
|
|
||||||
SessionBase.release_session(session)
|
|
||||||
|
|
||||||
|
|
||||||
def create_check_gas_task(tx_signed_raws_hex, chain_spec, holder_address, gas=None, tx_hashes_hex=None, queue=None):
|
def create_check_gas_task(tx_signed_raws_hex, chain_spec, holder_address, gas=None, tx_hashes_hex=None, queue=None):
|
||||||
|
|||||||
@@ -1,63 +0,0 @@
|
|||||||
# standard imports
|
|
||||||
import logging
|
|
||||||
|
|
||||||
# external imports
|
|
||||||
from eth_erc20 import ERC20
|
|
||||||
from chainlib.eth.contract import (
|
|
||||||
ABIContractEncoder,
|
|
||||||
ABIContractType,
|
|
||||||
)
|
|
||||||
from chainlib.eth.constant import ZERO_ADDRESS
|
|
||||||
from chainlib.eth.address import is_same_address
|
|
||||||
from cic_eth_registry import CICRegistry
|
|
||||||
from cic_eth_registry.erc20 import ERC20Token
|
|
||||||
from eth_token_index import TokenUniqueSymbolIndex
|
|
||||||
import celery
|
|
||||||
|
|
||||||
# local imports
|
|
||||||
from .base import SyncFilter
|
|
||||||
|
|
||||||
#logg = logging.getLogger(__name__)
|
|
||||||
logg = logging.getLogger()
|
|
||||||
|
|
||||||
|
|
||||||
class TokenFilter(SyncFilter):
|
|
||||||
|
|
||||||
def __init__(self, chain_spec, queue, call_address=ZERO_ADDRESS):
|
|
||||||
self.queue = queue
|
|
||||||
self.chain_spec = chain_spec
|
|
||||||
self.caller_address = call_address
|
|
||||||
|
|
||||||
|
|
||||||
def filter(self, conn, block, tx, db_session=None):
|
|
||||||
if not tx.payload:
|
|
||||||
return (None, None)
|
|
||||||
|
|
||||||
try:
|
|
||||||
r = ERC20.parse_transfer_request(tx.payload)
|
|
||||||
except RequestMismatchException:
|
|
||||||
return (None, None)
|
|
||||||
|
|
||||||
token_address = tx.inputs[0]
|
|
||||||
token = ERC20Token(self.chain_spec, conn, token_address)
|
|
||||||
|
|
||||||
registry = CICRegistry(self.chain_spec, conn)
|
|
||||||
r = registry.by_name(token.symbol, sender_address=self.caller_address)
|
|
||||||
if is_same_address(r, ZERO_ADDRESS):
|
|
||||||
return None
|
|
||||||
|
|
||||||
enc = ABIContractEncoder()
|
|
||||||
enc.method('transfer')
|
|
||||||
method = enc.get()
|
|
||||||
|
|
||||||
s = celery.signature(
|
|
||||||
'cic_eth.eth.gas.apply_gas_value_cache',
|
|
||||||
[
|
|
||||||
token_address,
|
|
||||||
method,
|
|
||||||
tx.gas_used,
|
|
||||||
tx.hash,
|
|
||||||
],
|
|
||||||
queue=self.queue,
|
|
||||||
)
|
|
||||||
return s.apply_async()
|
|
||||||
@@ -10,6 +10,7 @@ from chainlib.chain import ChainSpec
|
|||||||
from chainlib.connection import RPCConnection
|
from chainlib.connection import RPCConnection
|
||||||
from chainlib.eth.constant import ZERO_ADDRESS
|
from chainlib.eth.constant import ZERO_ADDRESS
|
||||||
from chainlib.eth.nonce import RPCNonceOracle
|
from chainlib.eth.nonce import RPCNonceOracle
|
||||||
|
from chainlib.eth.gas import RPCGasOracle
|
||||||
from cic_eth_registry import CICRegistry
|
from cic_eth_registry import CICRegistry
|
||||||
from cic_eth_registry.error import UnknownContractError
|
from cic_eth_registry.error import UnknownContractError
|
||||||
|
|
||||||
@@ -29,7 +30,7 @@ class BaseTask(celery.Task):
|
|||||||
call_address = ZERO_ADDRESS
|
call_address = ZERO_ADDRESS
|
||||||
trusted_addresses = []
|
trusted_addresses = []
|
||||||
create_nonce_oracle = RPCNonceOracle
|
create_nonce_oracle = RPCNonceOracle
|
||||||
create_gas_oracle = CacheGasOracle
|
create_gas_oracle = RPCGasOracle
|
||||||
default_token_address = None
|
default_token_address = None
|
||||||
default_token_symbol = None
|
default_token_symbol = None
|
||||||
default_token_name = None
|
default_token_name = None
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ version = (
|
|||||||
0,
|
0,
|
||||||
12,
|
12,
|
||||||
4,
|
4,
|
||||||
'alpha.14',
|
'alpha.13',
|
||||||
)
|
)
|
||||||
|
|
||||||
version_object = semver.VersionInfo(
|
version_object = semver.VersionInfo(
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
@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 @@
|
|||||||
@anchor{cic-eth-appendix-system-maintenance}
|
@node cic-eth 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,6 +14,5 @@ Released 2021 under GPL3
|
|||||||
@c
|
@c
|
||||||
@contents
|
@contents
|
||||||
|
|
||||||
@include content.texi
|
@include index.texi
|
||||||
@include appendix.texi
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
@include admin.texi
|
|
||||||
@include chains.texi
|
|
||||||
@include transfertypes.texi
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
@anchor{cic-eth-appendix-task-chains}
|
@node 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,3 +1,4 @@
|
|||||||
|
@node cic-eth configuration
|
||||||
@section Configuration
|
@section Configuration
|
||||||
|
|
||||||
Configuration parameters are grouped by configuration filename.
|
Configuration parameters are grouped by configuration filename.
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
@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 @@
|
|||||||
@anchor{cic-eth-incoming}
|
@node 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,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,3 +9,6 @@
|
|||||||
@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,8 +1,9 @@
|
|||||||
|
@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-appendix-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 system maintenance,the Admin API appendix}.
|
||||||
|
|
||||||
|
|
||||||
@subsection Interface
|
@subsection Interface
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
@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,3 +1,4 @@
|
|||||||
|
@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,3 +1,4 @@
|
|||||||
|
@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.
|
||||||
@@ -36,7 +37,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,3 +1,4 @@
|
|||||||
|
@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-e8eb2ee2
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-55da5f4e
|
||||||
|
|
||||||
# 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,17 +11,21 @@ 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 --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
RUN apt-get install libffi-dev
|
||||||
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 --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
RUN pip install --index-url $PIP_INDEX_URL \
|
||||||
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.10a16,<0.1.0
|
chainlib-eth>=0.0.10a4,<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,96 +0,0 @@
|
|||||||
# external imports
|
|
||||||
from eth_erc20 import ERC20
|
|
||||||
from chainlib.connection import RPCConnection
|
|
||||||
from chainlib.eth.nonce import RPCNonceOracle
|
|
||||||
from chainlib.eth.gas import (
|
|
||||||
Gas,
|
|
||||||
OverrideGasOracle,
|
|
||||||
)
|
|
||||||
from chainlib.eth.tx import (
|
|
||||||
TxFormat,
|
|
||||||
receipt,
|
|
||||||
raw,
|
|
||||||
unpack,
|
|
||||||
Tx,
|
|
||||||
)
|
|
||||||
from chainlib.eth.block import (
|
|
||||||
Block,
|
|
||||||
block_latest,
|
|
||||||
block_by_number,
|
|
||||||
)
|
|
||||||
from chainlib.eth.contract import ABIContractEncoder
|
|
||||||
from hexathon import strip_0x
|
|
||||||
from eth_token_index import TokenUniqueSymbolIndex
|
|
||||||
|
|
||||||
# local imports
|
|
||||||
from cic_eth.runnable.daemons.filters.token import TokenFilter
|
|
||||||
from cic_eth.db.models.gas_cache import GasCache
|
|
||||||
from cic_eth.db.models.base import SessionBase
|
|
||||||
|
|
||||||
|
|
||||||
def test_filter_gas(
|
|
||||||
default_chain_spec,
|
|
||||||
init_database,
|
|
||||||
eth_rpc,
|
|
||||||
eth_signer,
|
|
||||||
contract_roles,
|
|
||||||
agent_roles,
|
|
||||||
token_roles,
|
|
||||||
foo_token,
|
|
||||||
token_registry,
|
|
||||||
register_lookups,
|
|
||||||
celery_worker,
|
|
||||||
cic_registry,
|
|
||||||
):
|
|
||||||
|
|
||||||
rpc = RPCConnection.connect(default_chain_spec, 'default')
|
|
||||||
nonce_oracle = RPCNonceOracle(token_roles['FOO_TOKEN_OWNER'], eth_rpc)
|
|
||||||
gas_oracle = OverrideGasOracle(price=1000000000, limit=1000000)
|
|
||||||
c = ERC20(default_chain_spec, signer=eth_signer, nonce_oracle=nonce_oracle, gas_oracle=gas_oracle)
|
|
||||||
(tx_hash_hex, tx_signed_raw_hex) = c.transfer(foo_token, token_roles['FOO_TOKEN_OWNER'], agent_roles['ALICE'], 100, tx_format=TxFormat.RLP_SIGNED)
|
|
||||||
o = raw(tx_signed_raw_hex)
|
|
||||||
eth_rpc.do(o)
|
|
||||||
o = receipt(tx_hash_hex)
|
|
||||||
rcpt = eth_rpc.do(o)
|
|
||||||
assert rcpt['status'] == 1
|
|
||||||
|
|
||||||
fltr = TokenFilter(default_chain_spec, queue=None, call_address=agent_roles['ALICE'])
|
|
||||||
|
|
||||||
o = block_latest()
|
|
||||||
r = eth_rpc.do(o)
|
|
||||||
o = block_by_number(r, include_tx=False)
|
|
||||||
r = eth_rpc.do(o)
|
|
||||||
block = Block(r)
|
|
||||||
block.txs = [tx_hash_hex]
|
|
||||||
|
|
||||||
tx_signed_raw_bytes = bytes.fromhex(strip_0x(tx_signed_raw_hex))
|
|
||||||
tx_src = unpack(tx_signed_raw_bytes, default_chain_spec)
|
|
||||||
tx = Tx(tx_src, block=block)
|
|
||||||
tx.apply_receipt(rcpt)
|
|
||||||
t = fltr.filter(eth_rpc, block, tx, db_session=init_database)
|
|
||||||
assert t == None
|
|
||||||
|
|
||||||
nonce_oracle = RPCNonceOracle(contract_roles['CONTRACT_DEPLOYER'], eth_rpc)
|
|
||||||
c = TokenUniqueSymbolIndex(default_chain_spec, signer=eth_signer, nonce_oracle=nonce_oracle)
|
|
||||||
(tx_hash_hex_register, o) = c.register(token_registry, contract_roles['CONTRACT_DEPLOYER'], foo_token)
|
|
||||||
eth_rpc.do(o)
|
|
||||||
o = receipt(tx_hash_hex)
|
|
||||||
r = eth_rpc.do(o)
|
|
||||||
assert r['status'] == 1
|
|
||||||
|
|
||||||
t = fltr.filter(eth_rpc, block, tx, db_session=init_database)
|
|
||||||
r = t.get_leaf()
|
|
||||||
assert t.successful()
|
|
||||||
|
|
||||||
q = init_database.query(GasCache)
|
|
||||||
q = q.filter(GasCache.tx_hash==strip_0x(tx_hash_hex))
|
|
||||||
o = q.first()
|
|
||||||
|
|
||||||
assert o.address == strip_0x(foo_token)
|
|
||||||
assert o.value > 0
|
|
||||||
|
|
||||||
enc = ABIContractEncoder()
|
|
||||||
enc.method('transfer')
|
|
||||||
method = enc.get()
|
|
||||||
|
|
||||||
assert o.method == method
|
|
||||||
@@ -1,23 +1,19 @@
|
|||||||
FROM node:15.3.0-alpine3.10
|
FROM node:15.3.0-alpine3.10
|
||||||
|
#FROM node:lts-alpine3.14
|
||||||
|
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
|
|
||||||
RUN apk add --no-cache postgresql bash
|
RUN apk add --no-cache postgresql bash
|
||||||
|
|
||||||
ARG NPM_REPOSITORY=${NPM_REPOSITORY:-https://registry.npmjs.org}
|
|
||||||
RUN npm config set snyk=false
|
|
||||||
#RUN npm config set registry={NPM_REPOSITORY}
|
|
||||||
RUN npm config set registry=${NPM_REPOSITORY}
|
|
||||||
|
|
||||||
# copy the dependencies
|
# copy the dependencies
|
||||||
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 && \
|
RUN npm set cache /root/.npm && \
|
||||||
npm cache verify && \
|
npm cache verify && \
|
||||||
npm ci --verbose
|
npm ci --verbose
|
||||||
|
|
||||||
COPY webpack.config.js ./
|
COPY webpack.config.js .
|
||||||
COPY tsconfig.json ./
|
COPY tsconfig.json .
|
||||||
## required to build the cic-client-meta module
|
## required to build the cic-client-meta module
|
||||||
COPY . .
|
COPY . .
|
||||||
COPY tests/*.asc /root/pgp/
|
COPY tests/*.asc /root/pgp/
|
||||||
|
|||||||
5650
apps/cic-meta/package-lock.json
generated
5650
apps/cic-meta/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,8 @@
|
|||||||
create table if not exists store (
|
create table if not exists store (
|
||||||
id serial primary key not null,
|
id serial primary key not null,
|
||||||
owner_fingerprint text default null,
|
owner_fingerprint text not null,
|
||||||
hash char(64) not null unique,
|
hash char(64) not null unique,
|
||||||
content text not null,
|
content text not null
|
||||||
mime_type text
|
|
||||||
);
|
);
|
||||||
|
|
||||||
create index if not exists idx_fp on store ((lower(owner_fingerprint)));
|
create index if not exists idx_fp on store ((lower(owner_fingerprint)));
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
create table if not exists store (
|
create table if not exists store (
|
||||||
/*id serial primary key not null,*/
|
/*id serial primary key not null,*/
|
||||||
id integer primary key autoincrement,
|
id integer primary key autoincrement,
|
||||||
owner_fingerprint text default null,
|
owner_fingerprint text not null,
|
||||||
hash char(64) not null unique,
|
hash char(64) not null unique,
|
||||||
content text not null,
|
content text not null
|
||||||
mime_type text
|
|
||||||
);
|
);
|
||||||
|
|
||||||
create index if not exists idx_fp on store ((lower(owner_fingerprint)));
|
create index if not exists idx_fp on store ((lower(owner_fingerprint)));
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
import * as Automerge from 'automerge';
|
import * as Automerge from 'automerge';
|
||||||
import * as pgp from 'openpgp';
|
import * as pgp from 'openpgp';
|
||||||
import * as crypto from 'crypto';
|
|
||||||
|
|
||||||
import { Envelope, Syncable, bytesToHex } from '@cicnet/crdt-meta';
|
import { Envelope, Syncable } from '@cicnet/crdt-meta';
|
||||||
|
|
||||||
|
|
||||||
function handleNoMergeGet(db, digest, keystore) {
|
function handleNoMergeGet(db, digest, keystore) {
|
||||||
const sql = "SELECT owner_fingerprint, content, mime_type FROM store WHERE hash = '" + digest + "'";
|
const sql = "SELECT content FROM store WHERE hash = '" + digest + "'";
|
||||||
return new Promise<any>((whohoo, doh) => {
|
return new Promise<string|boolean>((whohoo, doh) => {
|
||||||
db.query(sql, (e, rs) => {
|
db.query(sql, (e, rs) => {
|
||||||
if (e !== null && e !== undefined) {
|
if (e !== null && e !== undefined) {
|
||||||
doh(e);
|
doh(e);
|
||||||
@@ -17,36 +16,16 @@ function handleNoMergeGet(db, digest, keystore) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const immutable = rs.rows[0]['owner_fingerprint'] == undefined;
|
|
||||||
let mimeType;
|
|
||||||
if (immutable) {
|
|
||||||
if (rs.rows[0]['mime_type'] === undefined) {
|
|
||||||
mimeType = 'application/octet-stream';
|
|
||||||
} else {
|
|
||||||
mimeType = rs.rows[0]['mime_type'];
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
mimeType = 'application/json';
|
|
||||||
}
|
|
||||||
|
|
||||||
const cipherText = rs.rows[0]['content'];
|
const cipherText = rs.rows[0]['content'];
|
||||||
pgp.message.readArmored(cipherText).then((m) => {
|
pgp.message.readArmored(cipherText).then((m) => {
|
||||||
const opts = {
|
const opts = {
|
||||||
message: m,
|
message: m,
|
||||||
privateKeys: [keystore.getPrivateKey()],
|
privateKeys: [keystore.getPrivateKey()],
|
||||||
format: 'binary',
|
|
||||||
};
|
};
|
||||||
pgp.decrypt(opts).then((plainText) => {
|
pgp.decrypt(opts).then((plainText) => {
|
||||||
let r;
|
const o = Syncable.fromJSON(plainText.data);
|
||||||
if (immutable) {
|
const r = JSON.stringify(o.m['data']);
|
||||||
r = plainText.data;
|
whohoo(r);
|
||||||
} else {
|
|
||||||
mimeType = 'application/json';
|
|
||||||
const d = new TextDecoder().decode(plainText.data);
|
|
||||||
const o = Syncable.fromJSON(d);
|
|
||||||
r = JSON.stringify(o.m['data']);
|
|
||||||
}
|
|
||||||
whohoo([r, mimeType]);
|
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
console.error('decrypt', e);
|
console.error('decrypt', e);
|
||||||
doh(e);
|
doh(e);
|
||||||
@@ -78,7 +57,6 @@ function handleServerMergePost(data, db, digest, keystore, signer) {
|
|||||||
} else {
|
} else {
|
||||||
e = Envelope.fromJSON(v);
|
e = Envelope.fromJSON(v);
|
||||||
s = e.unwrap();
|
s = e.unwrap();
|
||||||
console.debug('s', s, o)
|
|
||||||
s.replace(o, 'server merge');
|
s.replace(o, 'server merge');
|
||||||
e.set(s);
|
e.set(s);
|
||||||
s.onwrap = (e) => {
|
s.onwrap = (e) => {
|
||||||
@@ -161,13 +139,7 @@ function handleClientMergeGet(db, digest, keystore) {
|
|||||||
privateKeys: [keystore.getPrivateKey()],
|
privateKeys: [keystore.getPrivateKey()],
|
||||||
};
|
};
|
||||||
pgp.decrypt(opts).then((plainText) => {
|
pgp.decrypt(opts).then((plainText) => {
|
||||||
let d;
|
const o = Syncable.fromJSON(plainText.data);
|
||||||
if (typeof(plainText.data) == 'string') {
|
|
||||||
d = plainText.data;
|
|
||||||
} else {
|
|
||||||
d = new TextDecoder().decode(plainText.data);
|
|
||||||
}
|
|
||||||
const o = Syncable.fromJSON(d);
|
|
||||||
const e = new Envelope(o);
|
const e = new Envelope(o);
|
||||||
whohoo(e.toJSON());
|
whohoo(e.toJSON());
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
@@ -229,65 +201,10 @@ function handleClientMergePut(data, db, digest, keystore, signer) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function handleImmutablePost(data, db, digest, keystore, contentType) {
|
|
||||||
return new Promise<Array<string|boolean>>((whohoo, doh) => {
|
|
||||||
let data_binary = data;
|
|
||||||
const h = crypto.createHash('sha256');
|
|
||||||
h.update(data_binary);
|
|
||||||
const z = h.digest();
|
|
||||||
const r = bytesToHex(z);
|
|
||||||
|
|
||||||
if (digest) {
|
|
||||||
if (r != digest) {
|
|
||||||
doh('hash mismatch: ' + r + ' != ' + digest);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
digest = r;
|
|
||||||
console.debug('calculated digest ' + digest);
|
|
||||||
}
|
|
||||||
|
|
||||||
handleNoMergeGet(db, digest, keystore).then((haveDigest) => {
|
|
||||||
if (haveDigest !== false) {
|
|
||||||
whohoo([false, digest]);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
let message;
|
|
||||||
if (typeof(data) == 'string') {
|
|
||||||
data_binary = new TextEncoder().encode(data);
|
|
||||||
message = pgp.message.fromText(data);
|
|
||||||
} else {
|
|
||||||
message = pgp.message.fromBinary(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
const opts = {
|
|
||||||
message: message,
|
|
||||||
publicKeys: keystore.getEncryptKeys(),
|
|
||||||
};
|
|
||||||
pgp.encrypt(opts).then((cipherText) => {
|
|
||||||
const sql = "INSERT INTO store (hash, content, mime_type) VALUES ('" + digest + "', '" + cipherText.data + "', '" + contentType + "') ON CONFLICT (hash) DO UPDATE SET content = EXCLUDED.content;";
|
|
||||||
db.query(sql, (e, rs) => {
|
|
||||||
if (e !== null && e !== undefined) {
|
|
||||||
doh(e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
whohoo([true, digest]);
|
|
||||||
});
|
|
||||||
}).catch((e) => {
|
|
||||||
doh(e);
|
|
||||||
});
|
|
||||||
}).catch((e) => {
|
|
||||||
doh(e);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export {
|
export {
|
||||||
handleClientMergePut,
|
handleClientMergePut,
|
||||||
handleClientMergeGet,
|
handleClientMergeGet,
|
||||||
handleServerMergePost,
|
handleServerMergePost,
|
||||||
handleServerMergePut,
|
handleServerMergePut,
|
||||||
handleNoMergeGet,
|
handleNoMergeGet,
|
||||||
handleImmutablePost,
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -118,71 +118,37 @@ async function processRequest(req, res) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let mod = req.method.toLowerCase() + ":automerge:";
|
|
||||||
let modDetail = undefined;
|
|
||||||
let immutablePost = false;
|
|
||||||
try {
|
try {
|
||||||
digest = parseDigest(req.url);
|
digest = parseDigest(req.url);
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
if (req.url == '/') {
|
console.error('digest error: ' + e)
|
||||||
immutablePost = true;
|
res.writeHead(400, {"Content-Type": "text/plain"});
|
||||||
modDetail = 'immutable';
|
res.end();
|
||||||
} else {
|
return;
|
||||||
console.error('url is not empty (' + req.url + ') and not valid digest error: ' + e)
|
|
||||||
res.writeHead(400, {"Content-Type": "text/plain"});
|
|
||||||
res.end();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (modDetail === undefined) {
|
const mergeHeader = req.headers['x-cic-automerge'];
|
||||||
const mergeHeader = req.headers['x-cic-automerge'];
|
let mod = req.method.toLowerCase() + ":automerge:";
|
||||||
switch (mergeHeader) {
|
switch (mergeHeader) {
|
||||||
case "client":
|
case "client":
|
||||||
if (immutablePost) {
|
mod += "client"; // client handles merges
|
||||||
res.writeHead(400, 'Valid digest missing', {"Content-Type": "text/plain"});
|
break;
|
||||||
res.end();
|
case "server":
|
||||||
return;
|
mod += "server"; // server handles merges
|
||||||
}
|
break;
|
||||||
modDetail = "client"; // client handles merges
|
default:
|
||||||
break;
|
mod += "none"; // merged object only (get only)
|
||||||
case "server":
|
|
||||||
if (immutablePost) {
|
|
||||||
res.writeHead(400, 'Valid digest missing', {"Content-Type": "text/plain"});
|
|
||||||
res.end();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
modDetail = "server"; // server handles merges
|
|
||||||
break;
|
|
||||||
case "immutable":
|
|
||||||
modDetail = "immutable"; // no merging, literal immutable content with content-addressing
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
modDetail = "none"; // merged object only (get only)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
mod += modDetail;
|
|
||||||
|
|
||||||
|
let data = '';
|
||||||
// handle bigger chunks of data
|
|
||||||
let data;
|
|
||||||
req.on('data', (d) => {
|
req.on('data', (d) => {
|
||||||
if (data === undefined) {
|
data += d;
|
||||||
data = d;
|
|
||||||
} else {
|
|
||||||
data += d;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
req.on('end', async (d) => {
|
req.on('end', async () => {
|
||||||
let inputContentType = req.headers['content-type'];
|
console.debug('mode', mod);
|
||||||
let debugString = 'executing mode ' + mod ;
|
let content = '';
|
||||||
if (data !== undefined) {
|
|
||||||
debugString += ' for content type ' + inputContentType + ' length ' + data.length;
|
|
||||||
}
|
|
||||||
console.debug(debugString);
|
|
||||||
let content;
|
|
||||||
let contentType = 'application/json';
|
let contentType = 'application/json';
|
||||||
let statusCode = 200;
|
console.debug('handling data', data);
|
||||||
let r:any = undefined;
|
let r:any = undefined;
|
||||||
try {
|
try {
|
||||||
switch (mod) {
|
switch (mod) {
|
||||||
@@ -210,7 +176,6 @@ async function processRequest(req, res) {
|
|||||||
res.end();
|
res.end();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
content = '';
|
|
||||||
break;
|
break;
|
||||||
//case 'get:automerge:server':
|
//case 'get:automerge:server':
|
||||||
// content = await handlers.handleServerMergeGet(db, digest, keystore);
|
// content = await handlers.handleServerMergeGet(db, digest, keystore);
|
||||||
@@ -218,24 +183,12 @@ async function processRequest(req, res) {
|
|||||||
|
|
||||||
case 'get:automerge:none':
|
case 'get:automerge:none':
|
||||||
r = await handlers.handleNoMergeGet(db, digest, keystore);
|
r = await handlers.handleNoMergeGet(db, digest, keystore);
|
||||||
if (r === false) {
|
if (r == false) {
|
||||||
res.writeHead(404, {"Content-Type": "text/plain"});
|
res.writeHead(404, {"Content-Type": "text/plain"});
|
||||||
res.end();
|
res.end();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
content = r[0];
|
content = r;
|
||||||
contentType = r[1];
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'post:automerge:immutable':
|
|
||||||
if (inputContentType === undefined) {
|
|
||||||
inputContentType = 'application/octet-stream';
|
|
||||||
}
|
|
||||||
r = await handlers.handleImmutablePost(data, db, digest, keystore, inputContentType);
|
|
||||||
if (r[0]) {
|
|
||||||
statusCode = 201;
|
|
||||||
}
|
|
||||||
content = r[1];
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@@ -257,15 +210,8 @@ async function processRequest(req, res) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
//let responseContentLength;
|
const responseContentLength = (new TextEncoder().encode(content)).length;
|
||||||
//if (typeof(content) == 'string') {
|
res.writeHead(200, {
|
||||||
// (new TextEncoder().encode(content)).length;
|
|
||||||
//}
|
|
||||||
const responseContentLength = content.length;
|
|
||||||
//if (responseContentLength === undefined) {
|
|
||||||
// responseContentLength = 0;
|
|
||||||
//}
|
|
||||||
res.writeHead(statusCode, {
|
|
||||||
"Access-Control-Allow-Origin": "*",
|
"Access-Control-Allow-Origin": "*",
|
||||||
"Content-Type": contentType,
|
"Content-Type": contentType,
|
||||||
"Content-Length": responseContentLength,
|
"Content-Length": responseContentLength,
|
||||||
|
|||||||
@@ -7,8 +7,6 @@ import * as handlers from '../scripts/server/handlers';
|
|||||||
import { Envelope, Syncable, ArgPair, PGPKeyStore, PGPSigner, KeyStore, Signer } from '@cicnet/crdt-meta';
|
import { Envelope, Syncable, ArgPair, PGPKeyStore, PGPSigner, KeyStore, Signer } from '@cicnet/crdt-meta';
|
||||||
import { SqliteAdapter } from '../src/db';
|
import { SqliteAdapter } from '../src/db';
|
||||||
|
|
||||||
const hashOfFoo = '2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae';
|
|
||||||
|
|
||||||
function createKeystore() {
|
function createKeystore() {
|
||||||
const pksa = fs.readFileSync(__dirname + '/privatekeys.asc', 'utf-8');
|
const pksa = fs.readFileSync(__dirname + '/privatekeys.asc', 'utf-8');
|
||||||
const pubksa = fs.readFileSync(__dirname + '/publickeys.asc', 'utf-8');
|
const pubksa = fs.readFileSync(__dirname + '/publickeys.asc', 'utf-8');
|
||||||
@@ -46,13 +44,11 @@ function createDatabase(sqlite_file:string):Promise<any> {
|
|||||||
// doh(e);
|
// doh(e);
|
||||||
// return;
|
// return;
|
||||||
// }
|
// }
|
||||||
// get this from real sql files sources
|
|
||||||
const sql = `CREATE TABLE store (
|
const sql = `CREATE TABLE store (
|
||||||
id integer primary key autoincrement,
|
id integer primary key autoincrement,
|
||||||
owner_fingerprint text default null,
|
owner_fingerprint text not null,
|
||||||
hash char(64) not null unique,
|
hash char(64) not null unique,
|
||||||
content text not null,
|
content text not null
|
||||||
mime_type text default null
|
|
||||||
);
|
);
|
||||||
`
|
`
|
||||||
|
|
||||||
@@ -115,18 +111,15 @@ describe('server', async () => {
|
|||||||
let j = env.toJSON();
|
let j = env.toJSON();
|
||||||
const content = await handlers.handleClientMergePut(j, db, digest, keystore, signer);
|
const content = await handlers.handleClientMergePut(j, db, digest, keystore, signer);
|
||||||
assert(content); // true-ish
|
assert(content); // true-ish
|
||||||
console.debug('content', content);
|
|
||||||
|
|
||||||
let v = await handlers.handleNoMergeGet(db, digest, keystore);
|
let v = await handlers.handleNoMergeGet(db, digest, keystore);
|
||||||
if (v === false) {
|
if (v === undefined) {
|
||||||
db.close();
|
db.close();
|
||||||
assert.fail('');
|
assert.fail('');
|
||||||
}
|
}
|
||||||
db.close();
|
|
||||||
return;
|
|
||||||
|
|
||||||
v = await handlers.handleClientMergeGet(db, digest, keystore);
|
v = await handlers.handleClientMergeGet(db, digest, keystore);
|
||||||
if (v === false) {
|
if (v === undefined) {
|
||||||
db.close();
|
db.close();
|
||||||
assert.fail('');
|
assert.fail('');
|
||||||
}
|
}
|
||||||
@@ -194,7 +187,7 @@ describe('server', async () => {
|
|||||||
j = await handlers.handleNoMergeGet(db, digest, keystore);
|
j = await handlers.handleNoMergeGet(db, digest, keystore);
|
||||||
assert(v); // true-ish
|
assert(v); // true-ish
|
||||||
|
|
||||||
let o = JSON.parse(j[0]);
|
let o = JSON.parse(j);
|
||||||
o.bar = 'xyzzy';
|
o.bar = 'xyzzy';
|
||||||
j = JSON.stringify(o);
|
j = JSON.stringify(o);
|
||||||
|
|
||||||
@@ -219,82 +212,39 @@ describe('server', async () => {
|
|||||||
|
|
||||||
j = await handlers.handleNoMergeGet(db, digest, keystore);
|
j = await handlers.handleNoMergeGet(db, digest, keystore);
|
||||||
assert(j); // true-ish
|
assert(j); // true-ish
|
||||||
o = JSON.parse(j[0]);
|
o = JSON.parse(j);
|
||||||
console.log(o);
|
console.log(o);
|
||||||
|
|
||||||
db.close();
|
db.close();
|
||||||
});
|
});
|
||||||
|
|
||||||
// await it('server_merge', async () => {
|
await it('server_merge', async () => {
|
||||||
// const keystore = await createKeystore();
|
|
||||||
// const signer = new PGPSigner(keystore);
|
|
||||||
//
|
|
||||||
// const db = await createDatabase(__dirname + '/db.three.sqlite');
|
|
||||||
//
|
|
||||||
// const digest = 'deadbeef';
|
|
||||||
// let s = new Syncable(digest, {
|
|
||||||
// bar: 'baz',
|
|
||||||
// });
|
|
||||||
// let env = await wrap(s, signer)
|
|
||||||
// let j:any = env.toJSON();
|
|
||||||
//
|
|
||||||
// let v = await handlers.handleClientMergePut(j, db, digest, keystore, signer);
|
|
||||||
// assert(v); // true-ish
|
|
||||||
//
|
|
||||||
// j = await handlers.handleNoMergeGet(db, digest, keystore);
|
|
||||||
// assert(v); // true-ish
|
|
||||||
//
|
|
||||||
// let o = JSON.parse(j);
|
|
||||||
// o.bar = 'xyzzy';
|
|
||||||
// j = JSON.stringify(o);
|
|
||||||
//
|
|
||||||
// let signMaterial = await handlers.handleServerMergePost(j, db, digest, keystore, signer);
|
|
||||||
// assert(signMaterial)
|
|
||||||
//
|
|
||||||
// env = Envelope.fromJSON(signMaterial);
|
|
||||||
//
|
|
||||||
// console.log('envvvv', env);
|
|
||||||
//
|
|
||||||
// const signedData = await signData(env.o['digest'], keystore);
|
|
||||||
// console.log('signed', signedData);
|
|
||||||
//
|
|
||||||
// o = {
|
|
||||||
// 'm': env,
|
|
||||||
// 's': signedData,
|
|
||||||
// }
|
|
||||||
// j = JSON.stringify(o);
|
|
||||||
// console.log(j);
|
|
||||||
//
|
|
||||||
// v = await handlers.handleServerMergePut(j, db, digest, keystore, signer);
|
|
||||||
// assert(v);
|
|
||||||
//
|
|
||||||
// j = await handlers.handleNoMergeGet(db, digest, keystore);
|
|
||||||
// assert(j); // true-ish
|
|
||||||
// o = JSON.parse(j);
|
|
||||||
// console.log(o);
|
|
||||||
//
|
|
||||||
// db.close();
|
|
||||||
// });
|
|
||||||
//
|
|
||||||
|
|
||||||
|
|
||||||
await it('server_merge_empty', async () => {
|
|
||||||
const keystore = await createKeystore();
|
const keystore = await createKeystore();
|
||||||
const signer = new PGPSigner(keystore);
|
const signer = new PGPSigner(keystore);
|
||||||
|
|
||||||
const db = await createDatabase(__dirname + '/db.three.sqlite');
|
const db = await createDatabase(__dirname + '/db.three.sqlite');
|
||||||
|
|
||||||
const digest = '0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef';
|
const digest = 'deadbeef';
|
||||||
let o:any = {
|
let s = new Syncable(digest, {
|
||||||
foo: 'bar',
|
bar: 'baz',
|
||||||
xyzzy: 42,
|
});
|
||||||
}
|
let env = await wrap(s, signer)
|
||||||
let j:any = JSON.stringify(o);
|
let j:any = env.toJSON();
|
||||||
|
|
||||||
|
let v = await handlers.handleClientMergePut(j, db, digest, keystore, signer);
|
||||||
|
assert(v); // true-ish
|
||||||
|
|
||||||
|
j = await handlers.handleNoMergeGet(db, digest, keystore);
|
||||||
|
assert(v); // true-ish
|
||||||
|
|
||||||
|
let o = JSON.parse(j);
|
||||||
|
o.bar = 'xyzzy';
|
||||||
|
j = JSON.stringify(o);
|
||||||
|
|
||||||
let signMaterial = await handlers.handleServerMergePost(j, db, digest, keystore, signer);
|
let signMaterial = await handlers.handleServerMergePost(j, db, digest, keystore, signer);
|
||||||
assert(signMaterial)
|
assert(signMaterial)
|
||||||
|
|
||||||
const env = Envelope.fromJSON(signMaterial);
|
env = Envelope.fromJSON(signMaterial);
|
||||||
|
|
||||||
console.log('envvvv', env);
|
console.log('envvvv', env);
|
||||||
|
|
||||||
@@ -308,55 +258,58 @@ describe('server', async () => {
|
|||||||
j = JSON.stringify(o);
|
j = JSON.stringify(o);
|
||||||
console.log(j);
|
console.log(j);
|
||||||
|
|
||||||
let v = await handlers.handleServerMergePut(j, db, digest, keystore, signer);
|
v = await handlers.handleServerMergePut(j, db, digest, keystore, signer);
|
||||||
assert(v);
|
assert(v);
|
||||||
|
|
||||||
j = await handlers.handleNoMergeGet(db, digest, keystore);
|
j = await handlers.handleNoMergeGet(db, digest, keystore);
|
||||||
assert(j); // true-ish
|
assert(j); // true-ish
|
||||||
o = JSON.parse(j[0]);
|
o = JSON.parse(j);
|
||||||
console.log(o);
|
console.log(o);
|
||||||
|
|
||||||
db.close();
|
db.close();
|
||||||
});
|
});
|
||||||
|
|
||||||
await it('immutable_nodigest', async() => {
|
|
||||||
const keystore = await createKeystore();
|
|
||||||
const db = await createDatabase(__dirname + '/db.three.sqlite');
|
|
||||||
|
|
||||||
const s:string = 'foo';
|
|
||||||
let r;
|
|
||||||
r = await handlers.handleImmutablePost(s, db, undefined, keystore, 'text/plain');
|
|
||||||
assert(r[0]);
|
|
||||||
assert(hashOfFoo == r[1]);
|
|
||||||
|
|
||||||
r = await handlers.handleImmutablePost(s, db, undefined, keystore, 'text/plain');
|
// await it('server_merge_empty', async () => {
|
||||||
assert(!r[0]);
|
// const keystore = await createKeystore();
|
||||||
assert(hashOfFoo == r[1]);
|
// const signer = new PGPSigner(keystore);
|
||||||
|
//
|
||||||
const b:Uint8Array = new TextEncoder().encode(s);
|
// const db = await createDatabase(__dirname + '/db.three.sqlite');
|
||||||
r = await handlers.handleImmutablePost(b, db, undefined, keystore, 'text/plain');
|
//
|
||||||
assert(!r[0]);
|
// const digest = '0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef';
|
||||||
assert(hashOfFoo == r[1]);
|
// let o:any = {
|
||||||
});
|
// foo: 'bar',
|
||||||
|
// xyzzy: 42,
|
||||||
await it('immutable_digest', async() => {
|
// }
|
||||||
const keystore = await createKeystore();
|
// let j:any = JSON.stringify(o);
|
||||||
const db = await createDatabase(__dirname + '/db.three.sqlite');
|
//
|
||||||
|
// let signMaterial = await handlers.handleServerMergePost(j, db, digest, keystore, signer);
|
||||||
const s:string = 'foo';
|
// assert(signMaterial)
|
||||||
const b:Uint8Array = new TextEncoder().encode(s);
|
//
|
||||||
let r;
|
// const env = Envelope.fromJSON(signMaterial);
|
||||||
r = await handlers.handleImmutablePost(b, db, hashOfFoo, keystore, 'application/octet-stream');
|
//
|
||||||
assert(r[0]);
|
// console.log('envvvv', env);
|
||||||
assert(hashOfFoo == r[1]);
|
//
|
||||||
|
// const signedData = await signData(env.o['digest'], keystore);
|
||||||
r = await handlers.handleImmutablePost(b, db, hashOfFoo, keystore, 'application/octet-stream');
|
// console.log('signed', signedData);
|
||||||
assert(!r[0]);
|
//
|
||||||
assert(hashOfFoo == r[1]);
|
// o = {
|
||||||
|
// 'm': env,
|
||||||
r = await handlers.handleImmutablePost(s, db, hashOfFoo, keystore, 'text/plain');
|
// 's': signedData,
|
||||||
assert(!r[0]);
|
// }
|
||||||
assert(hashOfFoo == r[1]);
|
// j = JSON.stringify(o);
|
||||||
});
|
// console.log(j);
|
||||||
|
//
|
||||||
|
// let v = await handlers.handleServerMergePut(j, db, digest, keystore, signer);
|
||||||
|
// assert(v);
|
||||||
|
//
|
||||||
|
// j = await handlers.handleNoMergeGet(db, digest, keystore);
|
||||||
|
// assert(j); // true-ish
|
||||||
|
// o = JSON.parse(j);
|
||||||
|
// console.log(o);
|
||||||
|
//
|
||||||
|
// db.close();
|
||||||
|
// });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import semver
|
|||||||
|
|
||||||
logg = logging.getLogger()
|
logg = logging.getLogger()
|
||||||
|
|
||||||
version = (0, 4, 0, 'alpha.11')
|
version = (0, 4, 0, 'alpha.10')
|
||||||
|
|
||||||
version_object = semver.VersionInfo(
|
version_object = semver.VersionInfo(
|
||||||
major=version[0],
|
major=version[0],
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
ARG DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
# syntax = docker/dockerfile:1.2
|
||||||
|
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
|
||||||
@@ -12,10 +11,8 @@ ARG PIP_INDEX_URL=https://pypi.org/simple
|
|||||||
|
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
|
|
||||||
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
RUN pip install --index-url $PIP_INDEX_URL \
|
||||||
pip install --index-url $PIP_INDEX_URL \
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
||||||
--pre \
|
|
||||||
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
|
||||||
-r requirements.txt
|
-r requirements.txt
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
confini>=0.3.6rc4,<0.5.0
|
confini~=0.4.1a1
|
||||||
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-e8eb2ee2 as dev
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-55da5f4e as dev
|
||||||
|
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
|
|
||||||
@@ -11,9 +11,10 @@ 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 --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
RUN pip install --index-url $PIP_INDEX_URL \
|
||||||
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.6')
|
version = (0, 3, 1, 'alpha.5')
|
||||||
|
|
||||||
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-e8eb2ee2
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-55da5f4e
|
||||||
|
|
||||||
RUN apt-get install -y redis-server
|
RUN apt-get install redis-server libffi-dev -y
|
||||||
# create secrets directory
|
# create secrets directory
|
||||||
RUN mkdir -vp pgp/keys
|
RUN mkdir -vp pgp/keys
|
||||||
|
|
||||||
@@ -14,17 +14,13 @@ 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 --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
RUN pip install --index-url $PIP_INDEX_URL \
|
||||||
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 --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
RUN pip install --index-url $PIP_INDEX_URL \
|
||||||
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
|
||||||
|
|
||||||
@@ -37,7 +33,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.5a1
|
cic-eth~=0.12.4a13
|
||||||
cic-notify~=0.4.0a11
|
cic-notify~=0.4.0a10
|
||||||
cic-types~=0.2.1a2
|
cic-types~=0.2.0a6
|
||||||
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,20 +8,16 @@ set -a
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [ ! -z $DEV_FEE_PRICE ]; then
|
if [ ! -z $DEV_ETH_GAS_PRICE ]; then
|
||||||
gas_price_arg="--gas-price $DEV_FEE_PRICE"
|
gas_price_arg="--gas-price $DEV_ETH_GAS_PRICE"
|
||||||
fee_price_arg="--fee-price $DEV_FEE_PRICE"
|
fee_price_arg="--fee-price $DEV_ETH_GAS_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 --nonce $nonce -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 -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,60 +13,48 @@ 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_FEE_PRICE ]; then
|
if [ ! -z $DEV_ETH_GAS_PRICE ]; then
|
||||||
gas_price_arg="--gas-price $DEV_FEE_PRICE"
|
gas_price_arg="--gas-price $DEV_ETH_GAS_PRICE"
|
||||||
fee_price_arg="--fee-price $DEV_FEE_PRICE"
|
fee_price_arg="--fee-price $DEV_ETH_GAS_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 --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`
|
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`
|
||||||
|
|
||||||
|
|
||||||
>&2 echo -e "\033[;96mAdd contract registry record to itself\033[;39m"
|
>&2 echo -e "\033[;96mAdd contract registry record to itself\033[;39m"
|
||||||
advance_nonce
|
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`
|
||||||
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"
|
||||||
advance_nonce
|
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`
|
||||||
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 --nonce $nonce -w $gas_price_arg -y $WALLET_KEY_FILE -i $CHAIN_SPEC -p $RPC_PROVIDER $DEV_DEBUG_FLAG`
|
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`
|
||||||
|
|
||||||
|
|
||||||
>&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"
|
||||||
advance_nonce
|
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`
|
||||||
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 --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`
|
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`
|
||||||
|
|
||||||
>&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"
|
||||||
advance_nonce
|
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`
|
||||||
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
|
||||||
|
|
||||||
check_wait 2
|
#>&2 echo "add reserve token to token index"
|
||||||
|
#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_FEE_PRICE ]; then
|
if [ ! -z $DEV_ETH_GAS_PRICE ]; then
|
||||||
gas_price_arg="--gas-price $DEV_FEE_PRICE"
|
gas_price_arg="--gas-price $DEV_ETH_GAS_PRICE"
|
||||||
fee_price_arg="--fee-price $DEV_FEE_PRICE"
|
fee_price_arg="--fee-price $DEV_ETH_GAS_PRICE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
have_default_token=1
|
have_default_token=1
|
||||||
@@ -25,17 +25,16 @@ 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}
|
||||||
|
|
||||||
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`
|
||||||
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=''
|
||||||
@@ -51,31 +50,23 @@ 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"
|
||||||
advance_nonce
|
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`
|
||||||
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"
|
||||||
advance_nonce
|
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`
|
||||||
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"
|
||||||
advance_nonce
|
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`
|
||||||
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 --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`
|
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`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@@ -84,32 +75,22 @@ 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 --fee-limit 8000000`
|
accounts_index_address=`eth-contract-registry-list -u -i $CHAIN_SPEC -p $RPC_PROVIDER -e $CIC_REGISTRY_ADDRESS $DEV_DEBUG_FLAG --raw AccountRegistry`
|
||||||
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`
|
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`
|
||||||
|
|
||||||
# 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 --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`
|
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`
|
||||||
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 --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`
|
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`
|
||||||
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 $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`
|
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`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -118,26 +99,21 @@ 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 $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`
|
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`
|
||||||
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 --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`
|
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`
|
||||||
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 $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"`
|
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"`
|
||||||
add_pending_tx_hash $r
|
add_pending_tx_hash $r
|
||||||
|
|
||||||
|
|
||||||
@@ -152,7 +128,6 @@ 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 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,26 +10,14 @@ WAIT_FOR_TIMEOUT=${WAIT_FOR_TIMEOUT:-60}
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [ ! -z $DEV_FEE_PRICE ]; then
|
if [ ! -z $DEV_ETH_GAS_PRICE ]; then
|
||||||
gas_price_arg="--gas-price $DEV_FEE_PRICE"
|
gas_price_arg="--gas-price $DEV_ETH_GAS_PRICE"
|
||||||
fee_price_arg="--fee-price $DEV_FEE_PRICE"
|
fee_price_arg="--fee-price $DEV_ETH_GAS_PRICE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
must_address "$CIC_REGISTRY_ADDRESS" "registry"
|
must_address "$CIC_REGISTRY_ADDRESS" "registry"
|
||||||
must_eth_rpc
|
must_eth_rpc
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
default_token=`eth-contract-registry-list -u -i $CHAIN_SPEC -p $RPC_PROVIDER -e $CIC_REGISTRY_ADDRESS $DEV_DEBUG_FLAG --raw DefaultToken`
|
|
||||||
h=`erc20-transfer -u -e $default_token -a $DEV_ETH_ACCOUNT_CONTRACT_DEPLOYER -y $WALLET_KEY_FILE -s 10`
|
|
||||||
r=`eth-receipt
|
|
||||||
|
|
||||||
set +e
|
|
||||||
set +a
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
|
|
||||||
|
|
||||||
# get required addresses from registries
|
# get required addresses from registries
|
||||||
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`
|
||||||
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`
|
||||||
@@ -54,13 +42,12 @@ 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`
|
||||||
@@ -72,7 +59,6 @@ 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_FEE_PRICE ]; then
|
if [ ! -z $DEV_ETH_GAS_PRICE ]; then
|
||||||
gas_price_arg="--gas-price $DEV_FEE_PRICE"
|
gas_price_arg="--gas-price $DEV_ETH_GAS_PRICE"
|
||||||
fee_price_arg="--fee-price $DEV_FEE_PRICE"
|
fee_price_arg="--fee-price $DEV_ETH_GAS_PRICE"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
must_address "$CIC_REGISTRY_ADDRESS" "registry"
|
must_address "$CIC_REGISTRY_ADDRESS" "registry"
|
||||||
|
|||||||
@@ -8,16 +8,6 @@ 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
|
||||||
@@ -27,15 +17,18 @@ 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}
|
||||||
@@ -43,14 +36,6 @@ 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,8 +2,7 @@
|
|||||||
eth_account_contract_deployer =
|
eth_account_contract_deployer =
|
||||||
token_mint_amount = 10000000000000000000000000000000000
|
token_mint_amount = 10000000000000000000000000000000000
|
||||||
gas_amount = 100000000000000000000000
|
gas_amount = 100000000000000000000000
|
||||||
fee_limit_call =
|
eth_gas_price =
|
||||||
fee_price =
|
|
||||||
data_dir =
|
data_dir =
|
||||||
address_declarator =
|
address_declarator =
|
||||||
declarator_description = 0x546869732069732074686520434943206e6574776f726b000000000000000000
|
declarator_description = 0x546869732069732074686520434943206e6574776f726b000000000000000000
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
ARG DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
ARG DEV_DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
||||||
|
|
||||||
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2
|
FROM $DEV_DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-55da5f4e
|
||||||
|
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
|
|
||||||
@@ -12,31 +12,25 @@ RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 2A518C819BE37D2C20
|
|||||||
|
|
||||||
RUN mkdir -vp /usr/local/etc/cic
|
RUN mkdir -vp /usr/local/etc/cic
|
||||||
|
|
||||||
|
ENV CONFINI_DIR /usr/local/etc/cic/
|
||||||
|
|
||||||
|
|
||||||
COPY config_template/ /usr/local/etc/cic/
|
COPY config_template/ /usr/local/etc/cic/
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
|
|
||||||
#RUN apt-get install libffi-dev
|
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 +0,0 @@
|
|||||||
chainlib-eth==0.0.10a15
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
cic-eth[tools]==0.12.4a13
|
cic-eth[tools]==0.12.4a13
|
||||||
chainlib-eth>=0.0.10a15,<0.1.0
|
chainlib-eth>=0.0.10a5,<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
|
||||||
@@ -8,5 +9,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
|
||||||
|
|||||||
@@ -4,18 +4,13 @@
|
|||||||
|
|
||||||
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
|
||||||
|
|
||||||
@@ -39,14 +34,6 @@ 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
|
||||||
|
|||||||
@@ -32,39 +32,11 @@ function must_eth_rpc() {
|
|||||||
|
|
||||||
|
|
||||||
function clear_pending_tx_hashes() {
|
function clear_pending_tx_hashes() {
|
||||||
>&2 echo -e "\033[;96mClearing pending hashes\033[;39m"
|
truncate -s 0 $DEV_DATA_DIR/hashes
|
||||||
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'),
|
||||||
'WALLET_KEY_FILE': getattr(args, 'y')
|
'KEYSTORE_FILE_PATH': 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)
|
dirs = initialize_dirs(args.import_dir, force_reset=args.f)
|
||||||
|
|
||||||
valid_service_codes = config.get('USSD_SERVICE_CODE').split(",")
|
valid_service_codes = config.get('USSD_SERVICE_CODE').split(",")
|
||||||
|
|
||||||
|
|||||||
@@ -12,13 +12,11 @@ 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')
|
||||||
|
|
||||||
@@ -39,6 +37,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], exist_ok=True)
|
os.makedirs(dirs[d])
|
||||||
|
|
||||||
return dirs
|
return dirs
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
[rpc]
|
[rpc]
|
||||||
provider = http://localhost:63545
|
provider =
|
||||||
|
|||||||
@@ -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 "$WALLET_KEY_FILE" "$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 "$KEYSTORE_PATH" "$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 "$WALLET_KEY_FILE" "$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 "$KEYSTORE_PATH" "$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}/bloxberg-node:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/bloxberg-node:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/bloxbergValidatorSetup
|
context: apps/bloxbergValidatorSetup
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@@ -41,23 +41,18 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
bootstrap:
|
bootstrap:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/contract-migration:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/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:-registry.gitlab.com/grassrootseconomics}
|
DOCKER_REGISTRY: $DEV_DOCKER_REGISTRY
|
||||||
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}
|
||||||
@@ -77,7 +72,6 @@ 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}
|
|
||||||
command: ["./run_job.sh"]
|
command: ["./run_job.sh"]
|
||||||
depends_on:
|
depends_on:
|
||||||
- evm
|
- evm
|
||||||
@@ -90,7 +84,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-signer:
|
cic-signer:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/funga-eth:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/funga-eth:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-signer
|
context: apps/cic-signer
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
@@ -120,7 +114,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-eth:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-eth:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-eth
|
context: apps/cic-eth
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -170,7 +164,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-eth-tracker:
|
cic-eth-tracker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-eth:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-eth:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-eth
|
context: apps/cic-eth
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -218,7 +212,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-eth-dispatcher:
|
cic-eth-dispatcher:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-eth:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-eth:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-eth
|
context: apps/cic-eth
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -262,7 +256,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-eth-retrier:
|
cic-eth-retrier:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-eth:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-eth:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-eth
|
context: apps/cic-eth
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -309,7 +303,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-cache-tracker:
|
cic-cache-tracker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-cache:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-cache:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-cache
|
context: apps/cic-cache
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -357,7 +351,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-cache-tasker:
|
cic-cache-tasker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-cache:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-cache:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-cache
|
context: apps/cic-cache
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -405,7 +399,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-cache-server:
|
cic-cache-server:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-cache:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-cache:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-cache
|
context: apps/cic-cache
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -449,14 +443,13 @@ 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-meta:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-meta:${TAG:-latest}
|
||||||
hostname: meta
|
hostname: meta
|
||||||
build:
|
build:
|
||||||
context: apps/cic-meta
|
context: apps/cic-meta
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
args:
|
args:
|
||||||
DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}
|
DOCKER_REGISTRY: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}
|
||||||
NPM_REPOSITORY: ${DEV_NPM_REPOSITORY:-https://registry.npmjs.org}
|
|
||||||
environment:
|
environment:
|
||||||
DATABASE_HOST: ${DATABASE_HOST:-postgres}
|
DATABASE_HOST: ${DATABASE_HOST:-postgres}
|
||||||
DATABASE_PORT: ${DATABASE_PORT:-5432}
|
DATABASE_PORT: ${DATABASE_PORT:-5432}
|
||||||
@@ -487,7 +480,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-user-tasker:
|
cic-user-tasker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-user:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-user:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-ussd
|
context: apps/cic-ussd
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -523,7 +516,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-user-server:
|
cic-user-server:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-user:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-user:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-ussd
|
context: apps/cic-ussd
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -552,7 +545,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-user-ussd-server:
|
cic-user-ussd-server:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-user:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-user:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-ussd
|
context: apps/cic-ussd
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -590,7 +583,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cic-notify-tasker:
|
cic-notify-tasker:
|
||||||
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics}/cic-notify:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/cic-notify:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/cic-notify
|
context: apps/cic-notify
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -621,7 +614,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}/data-seeding:${TAG:-latest}
|
image: ${DEV_DOCKER_REGISTRY:-registry.gitlab.com/grassrootseconomics/cic-internal-integration}/data-seeding:${TAG:-latest}
|
||||||
build:
|
build:
|
||||||
context: apps/data-seeding
|
context: apps/data-seeding
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
@@ -649,8 +642,7 @@ 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
|
||||||
@@ -674,4 +666,4 @@ services:
|
|||||||
set +a
|
set +a
|
||||||
./import_ussd.sh
|
./import_ussd.sh
|
||||||
volumes:
|
volumes:
|
||||||
- contract-config:/tmp/cic/config/:ro
|
- contract-config:/tmp/cic/config/:ro
|
||||||
Reference in New Issue
Block a user