mirror of
https://github.com/logos-messaging/logos-messaging-simulator.git
synced 2026-01-02 14:03:07 +00:00
* chore: add rln registry deploy script * removed local variables, now passed via docker enviroment * foundry service now also running contract deploy script * replaced hardcoded contract bytecode with bytecode retrieved from github * fixed variable naming * Added Anvil RPC_URL to env file * new docker service to get waku-rln-contract repo, build it and deploy * added entrypoint: sh to contract-repo-deployer and deploy script now has bash/sh --------- Co-authored-by: rymnc <43716372+rymnc@users.noreply.github.com>
14 lines
400 B
Bash
14 lines
400 B
Bash
# Env variables for metal-01.he-eu-hel1.wakusim.misc host.
|
|
NWAKU_IMAGE=wakuorg/nwaku:latest
|
|
GOWAKU_IMAGE=wakuorg/go-waku:v0.8.0
|
|
# Network scaling.
|
|
NUM_NWAKU_NODES=100
|
|
NUM_GOWAKU_NODES=0
|
|
# Simulation traffic.
|
|
MSG_PER_SECOND=10
|
|
MSG_SIZE_KBYTES=10
|
|
TRAFFIC_DELAY_SECONDS=15
|
|
# Enable automatic Docker image updates.
|
|
WATCHTOWER_ENABLED=true
|
|
# Anvil RPC Node external IP and port
|
|
RPC_URL=http://foundry:8545 |