@rhinestone/shared-configs 1.16.0 → 1.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -17,3 +17,18 @@ Source-of-truth lives in Yeet Jsonnet config:
17
17
  1. Update Yeet config (for example `yeet/config/chains.jsonnet`, `yeet/config/providers.jsonnet`, or `yeet/config/oft.jsonnet`)
18
18
  2. Regenerate configs with `bun run generate` from this directory (requires Go)
19
19
  3. Merge to `main` to publish `@rhinestone/shared-configs`
20
+
21
+ ## Vendor drift
22
+
23
+ `bun run check:vendor-drift` diffs the RHINO, NEAR and CCTP claims in
24
+ `configs/chains.json` against what each vendor serves right now — Rhino's
25
+ `/bridge/configs`, 1Click's `/v0/tokens`, and, since Circle publishes no
26
+ enumeration endpoint, an on-chain TokenMessengerV2 sweep of every EVM chain in
27
+ the registry.
28
+
29
+ It reports and never gates: the `Vendor Drift Check` workflow runs it daily and
30
+ always succeeds, deliberately not wired into the release path. The CCTP sweep
31
+ falls back to each chain's `publicRpcUrl` when `ALCHEMY_API_KEY` /
32
+ `DRPC_API_KEY` are unset, so it runs with no credentials; override one chain
33
+ with `VENDOR_DRIFT_RPC_<chainId>`. `--strict` exits non-zero on drift, for a
34
+ human running it locally.