Skip to content

edgy 0.1.5

Choose a tag to compare

@shortthefomo shortthefomo released this 16 Aug 23:13
· 3 commits to main since this release
v0.1.5
bf8be37

One build, two binaries. edgy-xrpld links rippled libxrpl; edgy-xahaud links xahaud libxrpl plus xahaud RippleCalc/Flow. Ledger family is the executable — there is no [network] / --xahau switch.

Binaries

Binary Node Native Ledger types
edgy-xrpld xrpld XRP rippled libxrpl
edgy-xahaud xahaud XAH xahaud libxrpl (Hooks, URITokens, HookState are known)

Example configs: cfg/edgy-xrpl.example.cfg and cfg/edgy-xahau.example.cfg. Different default listen ports so both can run on one host (6008/5008 vs 6018/5018).

The book graph still only indexes offers, AMMs, and directories. Hook / URIToken objects on edgy-xahaud are stored as real SLEs; they are not path hops.

After snapshot ready you should see txs=N/N … inline with node.

Verify

edgy 0.1.5+xrpld.bf8be373
edgy 0.1.5+xahaud.bf8be373

Tag v0.1.5 is GPG-signed (shortthefomo).

Install

Download: releases/latest. Build from source: BUILD.md.

VER=0.1.5
curl -L -o edgy-xrpld \
  https://github.com/shortthefomo/edgy/releases/download/v${VER}/edgy-xrpld-${VER}-darwin-arm64
curl -L -o edgy-xahaud \
  https://github.com/shortthefomo/edgy/releases/download/v${VER}/edgy-xahaud-${VER}-darwin-arm64
chmod +x edgy-xrpld edgy-xahaud
curl -L -o edgy-xrpl.cfg \
  https://raw.githubusercontent.com/shortthefomo/edgy/v${VER}/cfg/edgy-xrpl.example.cfg
curl -L -o edgy-xahau.cfg \
  https://raw.githubusercontent.com/shortthefomo/edgy/v${VER}/cfg/edgy-xahau.example.cfg
./edgy-xrpld --conf edgy-xrpl.cfg
./edgy-xahaud --conf edgy-xahau.cfg

The attached *-darwin-arm64 binaries are convenience macOS Apple Silicon builds of this tag. Other platforms should build from source.