FDC Suite Deployment v1.3.1
https://github.com/flare-foundation/fdc-suite-deployment/tree/v1.3.1
What changed:
https://github.com/flare-foundation/fdc-suite-deployment/blob/main/RELEASES.md
Deadline:
Friday 2026-06-12, 12:00 UTC
Notes:
- Breaking โ EVM verifier split. The single shared evm-verifier service on port 9800 is replaced by three verifier-indexer-api:v1.6.1 services: ETH `9701`, FLR `9702`, SGB `9703`. You will most likely need to update your FDC client verifier URLs, e.g.:
ETH_EVMTRANSACTION_URL=https://:9701/verifier/eth/EVMTransaction/verifyFDC
FLR_EVMTRANSACTION_URL=https://:9702/verifier/flr/EVMTransaction/verifyFDC
SGB_EVMTRANSACTION_URL=https://:9703/verifier/sgb/EVMTransaction/verifyFDC
- EVM verifier upgrade procedure (do this instead of the generic steps for evm-verifier/):
1. In evm-verifier/, run docker compose down before updating the repo.
2. Pull/update this repository.
3. Run ./generate-config.sh from the repo root.
4. In evm-verifier/, run docker compose up -d to start the new services.
- Other verifiers (BTC, DOGE, XRP, web2) updated to verifier-indexer-api:v1.6.1; BTC/DOGE indexers โ verifier-utxo-indexer:v1.1.0, XRP indexer โ verifier-xrp-indexer:v2.1.0. These update with the standard docker compose up -d
How to update (after taking care of above breaking changes):
git pull
./generate-config.sh
# for every component, pull and start updated containers
docker compose pull && docker compose up -d
Thank you! 