Skip to content
This repository was archived by the owner on Apr 25, 2026. It is now read-only.
Merged
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
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center">Webb Protocol Egg Network 🕸️ </h1>
<h1 align="center">The Egg Network 🕸️ </h1>
<div align="center">
<a href="https://www.webb.tools/">
<img alt="Webb Logo" src="./assets/webb-icon.svg" width="15%" height="30%" />
Expand Down Expand Up @@ -52,7 +52,10 @@

<h1 id="start"> Getting Started 🎉 </h1>

The Egg Network contains runtimes for both standalone and parachain nodes featuring Webb's DKG and privacy pallet protocols.
The Egg Network contains runtimes for both standalone and parachain nodes featuring Webb's DKG and privacy pallet protocols. If you would like to familiarize yourself with our DKG and anchor protocol check out these repos:

- [dkg-substrate](https://github.com/webb-tools/dkg-substrate)
- [protocol-solidity](https://github.com/webb-tools/protocol-solidity)

## Prerequisites

Expand Down
8 changes: 4 additions & 4 deletions docker/Parachain.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ RUN cargo build --release --locked -p egg-collator

# =============

FROM phusion/baseimage:bionic-1.0.0
FROM ubuntu:20.04

RUN useradd -m -u 1000 -U -s /bin/sh -d /dkg dkg
RUN useradd -m -u 1000 -U -s /bin/sh -d /network dkg

COPY --from=builder /network/target/release/egg-collator /usr/local/bin

Expand All @@ -34,8 +34,8 @@ RUN rm -rf /usr/lib/python* && \
USER dkg
EXPOSE 30333 9933 9944 9615

RUN mkdir /dkg/data
RUN chown -R dkg:dkg /dkg/data
RUN mkdir /network/data
RUN chown -R dkg:dkg /network/data

VOLUME ["/dkg/data"]

Expand Down
8 changes: 4 additions & 4 deletions docker/Standalone.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ RUN cargo build --release --locked -p egg-standalone-node

# =============

FROM phusion/baseimage:bionic-1.0.0
FROM ubuntu:20.04

RUN useradd -m -u 1000 -U -s /bin/sh -d /dkg dkg
RUN useradd -m -u 1000 -U -s /bin/sh -d /network dkg

COPY --from=builder /network/target/release/egg-standalone-node /usr/local/bin

Expand All @@ -34,8 +34,8 @@ RUN rm -rf /usr/lib/python* && \
USER dkg
EXPOSE 30333 9933 9944 9615

RUN mkdir /dkg/data
RUN chown -R dkg:dkg /dkg/data
RUN mkdir /network/data
RUN chown -R dkg:dkg /network/data

VOLUME ["/dkg/data"]

Expand Down