1. Run a local node
The app talks to an ENC node. For development, run one locally on port 8787.
git clone https://github.com/enc-protocol/impl-node
cd impl-node
yarn install
yarn wrangler dev --config test/wrangler.toml --local # → http://127.0.0.1:8787This is the spec-shape node the public SDK speaks to — it mints an enclave from a signed
manifest commit over POST / and serves ECDH-authenticated reads (the same node the
test boots). Leave it running in its own terminal.
Quick check it's up:
curl -s http://localhost:8787/ | head -c 60 # the protocol bannerNext: Run a dataview server →