From b8db21b3d4c1cde3a5f84ed98f6056251ebee424 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Tue, 14 Jan 2025 04:40:34 +0100 Subject: [PATCH] cleanup --- README.md | 22 +++++++++++----------- erigon-gnosis-fullnode.yml | 2 +- linea/erigon/#Dockerfile# | 21 --------------------- 3 files changed, 12 insertions(+), 33 deletions(-) delete mode 100644 linea/erigon/#Dockerfile# diff --git a/README.md b/README.md index 4ef433f1..a7368d3c 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ +# Manta Pacific Replica +============= +To use: Set the variable `L1_RPC_URL` to your RPC url for Ethereum. Then run `make manta-up`. Syncing the replica from scratch might take up to several days. -### Docs +A number of constants have already been set to align with the Manta Pacific mainnet: +- the sequencer http url, which allows for transactions sent to the replica node to be forwarded to the sequencer, effectively meaning you can use the replica node like a full rpc provider +- the p2p endpoint, which means that the replica can the latest blocks produced from a trusted source -erigon.yml -xdai.yml -xdai-archive.yml -all need a .jwtsecret file inside POKT_DOKT folder +Commands: +========= -TODO: + make manta-up -``` -auto-generate .jwtsecret for beacon-execution connection -Fix wireguard chains network for pocket-frontends -``` + make manta-down -[Pocket Validator](README_POKT.md)
+ make manta-clean diff --git a/erigon-gnosis-fullnode.yml b/erigon-gnosis-fullnode.yml index 2422d6f0..cc83ec4c 100644 --- a/erigon-gnosis-fullnode.yml +++ b/erigon-gnosis-fullnode.yml @@ -3,7 +3,7 @@ version: '3.1' services: erigon-gnosis-fullnode: - image: thorax/erigon:${ERIGON_VERSION:-v2.59.0} + image: thorax/erigon:${ERIGON_VERSION:-v2.60.8} user: root stop_grace_period: 10m volumes: diff --git a/linea/erigon/#Dockerfile# b/linea/erigon/#Dockerfile# deleted file mode 100644 index c5b9d121..00000000 --- a/linea/erigon/#Dockerfile# +++ /dev/null @@ -1,21 +0,0 @@ -FROM docker.io/library/golang:1.20-alpine3.17 AS builder -RUN apk add --no-cache make g++ gcc musl-dev linux-headers git -ARG ERIGON_VERSION=v2.48.1 -ARG ERIGON_REPOSITORY=https://github.com/ledgerwatch/erigon.git - -RUN git clone --recurse-submodules -j8 $ERIGON_REPOSITORY - -WORKDIR ./erigon - -RUN git checkout ${ERIGON_VERSION} - -RUN make erigon - -FROM alpine:latest - -RUN apk add --no-cache ca-certificates curl jq libstdc++ libgcc -COPY --from=builder /go/erigon/build/bin/erigon /usr/local/bin/ - -COPY ./scripts/entrypoint.sh /usr/local/bin/entrypoint.sh -RUN chmod u+x /usr/local/bin/entrypoint.sh -ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]