Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VRF oracle on bridge v2 #85

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 33 additions & 29 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,36 +18,40 @@ RUN update-ca-certificates
WORKDIR "/opt"

ENV CONFIG_PATH ''
ENV RONIN_RPC ''
ENV RONIN_VALIDATOR_KEY ''
ENV RONIN_RELAYER_KEY ''
ENV RONIN_TASK_INTERVAL ''
ENV RONIN_TRANSACTION_CHECK_PERIOD ''
ENV RONIN_MAX_PROCESSING_TASKS ''
ENV FROM_BLOCK ''

ENV RONIN_MAX_TASK_QUERY ''

ENV ETHEREUM_RPC ''
ENV ETHEREUM_VALIDATOR_KEY ''
ENV ETHEREUM_RELAYER_KEY ''
ENV ETHEREUM_GET_LOGS_BATCH_SIZE ''
ENV VERBOSITY 3
ENV NUMBER_OF_WORKERS 1024
ENV GAS_LIMIT_BUMP_RATIO ''

ENV DB_HOST ''
ENV DB_PORT ''
ENV DB_NAME ''
ENV DB_USERNAME ''
ENV DB_PASSWORD ''
ENV DB_CONN_MAX_LIFE_TIME ''
ENV DB_MAX_IDLE_CONNS ''
ENV DB_MAX_OPEN_CONNS ''

ENV BRIDGE_STATS_NODE_NAME ''
ENV BRIDGE_STATS_URL ''
ENV BRIDGE_STATS_SECRET ''
ENV NUMBEROFWORKERS 1024

ENV LISTENERS__RONIN__CONFIG__RPCURL ''
ENV LISTENERS__RONIN__CONFIG__SECRET__BRIDGEOPERATOR__PLAINPRIVATEKEY ''
ENV LISTENERS__RONIN__CONFIG__TASKINTERVAL ''
ENV LISTENERS__RONIN__CONFIG__TRANSACTIONCHECKPERIOD ''
ENV LISTENERS__RONIN__CONFIG__FROMHEIGHT ''
ENV LISTENERS__RONIN__CONFIG__GASLIMITBUMPRATIO ''

ENV LISTENERS__RONIN__CONFIG__MAXTASKQUERY ''
ENV LISTENERS__RONIN__CONFIG__MAXPROCESSINGTASKS ''

ENV LISTENERS__RONIN__STATS__NODE ''
ENV LISTENERS__RONIN__STATS__HOST ''
ENV LISTENERS__RONIN__STATS__SECRET ''

ENV LISTENERS__ETHEREUM__CONFIG__RPCURL ''
ENV LISTENERS__ETHEREUM__CONFIG__SECRET__BRIDGEOPERATOR__PLAINPRIVATEKEY ''
ENV LISTENERS__ETHEREUM__CONFIG__GETLOGSBATCHSIZE ''

ENV DB__HOST ''
ENV DB__PORT ''
ENV DB__NAME ''
ENV DB__USERNAME ''
ENV DB__PASSWORD ''
ENV DB__CONNMAXLIFETIME ''
ENV DB__MAXIDLECONNS ''
ENV DB__MAXOPENCONNS ''

ENV VRF__WAITFORBLOCK ''
ENV VRF__CONTRACTADDRESS ''
ENV VRF__CONTRACTNAME ''
ENV VRF__SECRETKEY ''

COPY --from=builder /go/bin/bridge /usr/local/bin/bridge
COPY --from=builder /opt/bridge/config/ ./
Expand Down
Loading