parent
2c2df6ebbd
commit
e7296c2ce3
@ -17,3 +17,4 @@ cerc/test-container
|
|||||||
cerc/eth-probe
|
cerc/eth-probe
|
||||||
cerc/builder-js
|
cerc/builder-js
|
||||||
cerc/keycloak
|
cerc/keycloak
|
||||||
|
cerc/tx-spammer
|
||||||
|
@ -14,3 +14,4 @@ watcher-mobymask
|
|||||||
test
|
test
|
||||||
eth-probe
|
eth-probe
|
||||||
keycloak
|
keycloak
|
||||||
|
tx-spammer
|
||||||
|
@ -13,3 +13,4 @@ cerc-io/mobymask-watcher
|
|||||||
cerc-io/watcher-ts
|
cerc-io/watcher-ts
|
||||||
vulcanize/assemblyscript
|
vulcanize/assemblyscript
|
||||||
cerc-io/eth-probe
|
cerc-io/eth-probe
|
||||||
|
cerc-io/tx-spammer
|
||||||
|
18
compose/docker-compose-tx-spammer.yml
Normal file
18
compose/docker-compose-tx-spammer.yml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
version: '3.2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
tx-spammer:
|
||||||
|
restart: always
|
||||||
|
image: cerc/tx-spammer:local
|
||||||
|
env_file:
|
||||||
|
- ../config/tx-spammer/tx-spammer.env
|
||||||
|
environment:
|
||||||
|
ACCOUNTS_CSV_URL: http://fixturenet-eth-bootnode-geth:9898/accounts.csv
|
||||||
|
ETH_HTTP_PATH: http://fixturenet-eth-geth-1:8545
|
||||||
|
LOG_LEVEL: debug
|
||||||
|
SPAMMER_COMMAND: autoSend
|
||||||
|
depends_on:
|
||||||
|
fixturenet-eth-bootnode-geth:
|
||||||
|
condition: service_started
|
||||||
|
fixturenet-eth-geth-1:
|
||||||
|
condition: service_healthy
|
2
config/tx-spammer/tx-spammer.env
Normal file
2
config/tx-spammer/tx-spammer.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
ETH_CALL_FREQ=1000
|
||||||
|
ETH_SEND_FREQ=1000
|
3
container-build/cerc-tx-spammer/build.sh
Executable file
3
container-build/cerc-tx-spammer/build.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build cerc/tx-spammer
|
||||||
|
docker build -t cerc/tx-spammer:local ${CERC_REPO_BASE_DIR}/tx-spammer
|
@ -32,6 +32,15 @@ Waiting for beacon phase0 .... DONE!
|
|||||||
Waiting for beacon altair .... DONE!
|
Waiting for beacon altair .... DONE!
|
||||||
Waiting for beacon bellatrix pre-merge .... DONE!
|
Waiting for beacon bellatrix pre-merge .... DONE!
|
||||||
Waiting for beacon bellatrix merge .... DONE!
|
Waiting for beacon bellatrix merge .... DONE!
|
||||||
|
|
||||||
|
$ docker ps -f 'name=laconic' --format 'table {{.Names}}\t{{.Ports}}' | cut -d'-' -f3- | sort
|
||||||
|
NAMES PORTS
|
||||||
|
fixturenet-eth-bootnode-geth-1 8545-8546/tcp, 30303/udp, 0.0.0.0:55847->9898/tcp, 0.0.0.0:55848->30303/tcp
|
||||||
|
fixturenet-eth-bootnode-lighthouse-1
|
||||||
|
fixturenet-eth-geth-1-1 8546/tcp, 30303/tcp, 30303/udp, 0.0.0.0:55851->8545/tcp
|
||||||
|
fixturenet-eth-geth-2-1 8545-8546/tcp, 30303/tcp, 30303/udp
|
||||||
|
fixturenet-eth-lighthouse-1-1 0.0.0.0:55858->8001/tcp
|
||||||
|
fixturenet-eth-lighthouse-2-1
|
||||||
```
|
```
|
||||||
|
|
||||||
## Additional pieces
|
## Additional pieces
|
||||||
@ -43,18 +52,19 @@ Several other containers can used with the basic `fixturenet-eth`:
|
|||||||
* `ipld-eth-beacon-db` and `ipld-eth-beacon-indexer` (for indexing Beacon chain blocks)
|
* `ipld-eth-beacon-db` and `ipld-eth-beacon-indexer` (for indexing Beacon chain blocks)
|
||||||
* `eth-probe` (captures eth1 tx gossip)
|
* `eth-probe` (captures eth1 tx gossip)
|
||||||
* `keycloak` (nginx proxy with keycloak auth for API authentication)
|
* `keycloak` (nginx proxy with keycloak auth for API authentication)
|
||||||
|
* `tx-spammer` (generates and sends automated transactions to the fixturenet)
|
||||||
|
|
||||||
It is not necessary to use them all at once, but a complete example follows:
|
It is not necessary to use them all at once, but a complete example follows:
|
||||||
|
|
||||||
```
|
```
|
||||||
# Setup
|
# Setup
|
||||||
$ laconic-so setup-repositories --include cerc-io/go-ethereum,cerc-io/ipld-eth-db,cerc-io/ipld-eth-server,cerc-io/ipld-eth-beacon-db,cerc-io/ipld-eth-beacon-indexer,cerc-io/eth-probe
|
$ laconic-so setup-repositories --include cerc-io/go-ethereum,cerc-io/ipld-eth-db,cerc-io/ipld-eth-server,cerc-io/ipld-eth-beacon-db,cerc-io/ipld-eth-beacon-indexer,cerc-io/eth-probe,cerc-io/tx-spammer
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
$ laconic-so build-containers --include cerc/go-ethereum,cerc/lighthouse,cerc/fixturenet-eth-geth,cerc/fixturenet-eth-lighthouse,cerc/ipld-eth-db,cerc/ipld-eth-server,cerc/ipld-eth-beacon-db,cerc/ipld-eth-beacon-indexer,cerc/eth-probe,cerc/keycloak
|
$ laconic-so build-containers --include cerc/go-ethereum,cerc/lighthouse,cerc/fixturenet-eth-geth,cerc/fixturenet-eth-lighthouse,cerc/ipld-eth-db,cerc/ipld-eth-server,cerc/ipld-eth-beacon-db,cerc/ipld-eth-beacon-indexer,cerc/eth-probe,cerc/keycloak,cerc/tx-spammer
|
||||||
|
|
||||||
# Deploy
|
# Deploy
|
||||||
$ laconic-so deploy-system --include db,fixturenet-eth,ipld-eth-server,ipld-eth-beacon-db,ipld-eth-beacon-indexer,eth-probe,keycloak up
|
$ laconic-so deploy-system --include db,fixturenet-eth,ipld-eth-server,ipld-eth-beacon-db,ipld-eth-beacon-indexer,eth-probe,keycloak,tx-spammer up
|
||||||
|
|
||||||
# Status
|
# Status
|
||||||
|
|
||||||
@ -65,24 +75,24 @@ Waiting for beacon altair.... DONE!
|
|||||||
Waiting for beacon bellatrix pre-merge.... DONE!
|
Waiting for beacon bellatrix pre-merge.... DONE!
|
||||||
Waiting for beacon bellatrix merge.... DONE!
|
Waiting for beacon bellatrix merge.... DONE!
|
||||||
|
|
||||||
$ docker ps -f 'name=laconic'
|
$ docker ps -f 'name=laconic' --format 'table {{.Names}}\t{{.Ports}}' | cut -d'-' -f3- | sort
|
||||||
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
NAMES PORTS
|
||||||
fe60af64140c cerc/ipld-eth-beacon-indexer:local "./entrypoint.sh" 4 minutes ago Up 3 minutes laconic-7ca8f4a970d7999a235e0ee27588a5ab-ipld-eth-beacon-indexer-1
|
eth-probe-db-1 0.0.0.0:55849->5432/tcp
|
||||||
015583b318c2 cerc/eth-probe:local "/app/run.sh" 4 minutes ago Up 3 minutes laconic-7ca8f4a970d7999a235e0ee27588a5ab-eth-probe-probe-1
|
eth-probe-mq-1
|
||||||
180b03993b1e nginx:1.23-alpine "/docker-entrypoint.…" 4 minutes ago Up 4 minutes 0.0.0.0:54162->80/tcp laconic-7ca8f4a970d7999a235e0ee27588a5ab-keycloak-nginx-1
|
eth-probe-probe-1
|
||||||
2e963e3c4b44 cerc/ipld-eth-server:local "/app/entrypoint.sh" 4 minutes ago Up 4 minutes 127.0.0.1:8081-8082->8081-8082/tcp laconic-7ca8f4a970d7999a235e0ee27588a5ab-ipld-eth-server-1
|
fixturenet-eth-bootnode-geth-1 8545-8546/tcp, 30303/udp, 0.0.0.0:55847->9898/tcp, 0.0.0.0:55848->30303/tcp
|
||||||
913cefc5cecf cerc/fixturenet-eth-lighthouse:local "/opt/testnet/run.sh" 4 minutes ago Up 4 minutes (healthy) 0.0.0.0:54161->8001/tcp laconic-7ca8f4a970d7999a235e0ee27588a5ab-fixturenet-eth-lighthouse-1-1
|
fixturenet-eth-bootnode-lighthouse-1
|
||||||
c0659d0204ff cerc/fixturenet-eth-lighthouse:local "/opt/testnet/run.sh" 4 minutes ago Up 3 minutes (healthy) laconic-7ca8f4a970d7999a235e0ee27588a5ab-fixturenet-eth-lighthouse-2-1
|
fixturenet-eth-geth-1-1 8546/tcp, 30303/tcp, 30303/udp, 0.0.0.0:55851->8545/tcp
|
||||||
1636ed1013a6 cerc/keycloak:local "/opt/keycloak/bin/k…" 4 minutes ago Up 4 minutes 8443/tcp, 0.0.0.0:54160->8080/tcp laconic-7ca8f4a970d7999a235e0ee27588a5ab-keycloak-1
|
fixturenet-eth-geth-2-1 8545-8546/tcp, 30303/tcp, 30303/udp
|
||||||
439b017d75c1 cerc/ipld-eth-db:local "/app/startup_script…" 4 minutes ago Up 4 minutes laconic-7ca8f4a970d7999a235e0ee27588a5ab-migrations-1
|
fixturenet-eth-lighthouse-1-1 0.0.0.0:55858->8001/tcp
|
||||||
0a2c740a8e12 cerc/eth-probe:local "/app/run.sh" 4 minutes ago Up 4 minutes (healthy) laconic-7ca8f4a970d7999a235e0ee27588a5ab-eth-probe-mq-1
|
fixturenet-eth-lighthouse-2-1
|
||||||
35a816e0bac1 cerc/fixturenet-eth-geth:local "/opt/testnet/run.sh" 4 minutes ago Up 4 minutes (healthy) 8546/tcp, 30303/tcp, 30303/udp, 0.0.0.0:54154->8545/tcp laconic-7ca8f4a970d7999a235e0ee27588a5ab-fixturenet-eth-geth-1-1
|
ipld-eth-beacon-db-1 127.0.0.1:8076->5432/tcp
|
||||||
6691e5988519 cerc/fixturenet-eth-geth:local "/opt/testnet/run.sh" 4 minutes ago Up 4 minutes (healthy) 8545-8546/tcp, 30303/tcp, 30303/udp laconic-7ca8f4a970d7999a235e0ee27588a5ab-fixturenet-eth-geth-2-1
|
ipld-eth-beacon-indexer-1
|
||||||
06602dc7e3d0 timescale/timescaledb:latest-pg14 "docker-entrypoint.s…" 4 minutes ago Up 4 minutes (healthy) 0.0.0.0:54153->5432/tcp laconic-7ca8f4a970d7999a235e0ee27588a5ab-eth-probe-db-1
|
ipld-eth-db-1 127.0.0.1:8077->5432/tcp
|
||||||
91d73ec45b97 cerc/ipld-eth-beacon-db:local "docker-entrypoint.s…" 4 minutes ago Up 4 minutes (healthy) 127.0.0.1:8076->5432/tcp laconic-7ca8f4a970d7999a235e0ee27588a5ab-ipld-eth-beacon-db-1
|
ipld-eth-server-1 127.0.0.1:8081-8082->8081-8082/tcp
|
||||||
48459978329c postgres:14-alpine "docker-entrypoint.s…" 4 minutes ago Up 4 minutes (healthy) 0.0.0.0:54152->5432/tcp laconic-7ca8f4a970d7999a235e0ee27588a5ab-keycloak-db-1
|
keycloak-1 8443/tcp, 0.0.0.0:55857->8080/tcp
|
||||||
f48169806b54 timescale/timescaledb:2.8.1-pg14 "docker-entrypoint.s…" 4 minutes ago Up 4 minutes (healthy) 127.0.0.1:8077->5432/tcp laconic-7ca8f4a970d7999a235e0ee27588a5ab-ipld-eth-db-1
|
keycloak-db-1 0.0.0.0:55850->5432/tcp
|
||||||
56686c4e004f cerc/fixturenet-eth-geth:local "/opt/testnet/run.sh" 4 minutes ago Up 4 minutes 8545-8546/tcp, 30303/udp, 0.0.0.0:54151->9898/tcp, 0.0.0.0:54150->30303/tcp laconic-7ca8f4a970d7999a235e0ee27588a5ab-fixturenet-eth-bootnode-geth-1
|
keycloak-nginx-1 0.0.0.0:55859->80/tcp
|
||||||
95f073c5e956 cerc/fixturenet-eth-lighthouse:local "/opt/testnet/run.sh" 4 minutes ago Up 4 minutes laconic-7ca8f4a970d7999a235e0ee27588a5ab-fixturenet-eth-bootnode-lighthouse-1
|
migrations-1
|
||||||
```
|
tx-spammer-1
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user