Update docs/website/root/use-cases/wallets.mdx
Co-authored-by: olgahryniuk <[email protected]>
Co-authored-by: olgahryniuk <[email protected]>
Co-authored-by: olgahryniuk <[email protected]>
Co-authored-by: olgahryniuk <[email protected]>
Co-authored-by: olgahryniuk <[email protected]>
Co-authored-by: olgahryniuk <[email protected]>
Co-authored-by: olgahryniuk <[email protected]>
Co-authored-by: olgahryniuk <[email protected]>
- Add `hspec-golden` dependency to `cardano-ledger-alonzo-test` - Replace manual `readFile` + `shouldBe` comparisons with `hspec-golden` Golden type - Golden files are auto-created on first run and can delete to regenerate - Remove trailing newlines from JSON golden files to match `Aeson.encode` output - Fix `goldenGenesisSerialization` to use `getDataFileName` for correct installed path
Co-authored-by: olgahryniuk <[email protected]>
Co-authored-by: Jean-Philippe Raynaud <[email protected]>
Co-authored-by: Jean-Philippe Raynaud <[email protected]>
- Remove trailing period from hero title - Remove unused spoCta field - Revert viewport-height positioning changes, keep font and button size updates Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
Remove proto-lens SRP
Signed-off-by: yHSJ <[email protected]>
Aligns MetadataReferenceNftEntity, TokenLogoEntity and TokenMetadataEntity with the JPA entity convention used across the codebase: identity is defined by @Id fields only, using Lombok's @EqualsAndHashCode(onlyExplicitlyIncluded = true) plus @EqualsAndHashCode.Include on each @Id. This avoids proxy/lazy-loading pitfalls and matches the upstream yaci-store style. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
Cross-package hrefs to non-CHaP packages (base, bytestring, time, the
transformers stack, etc.) were being rewritten to Hackage URLs. In
practice:
- Readers of cardano-api docs rarely click into bootlib internals.
- Haddock's per-module URL structure (including src/ source views
and '-<version>-inplace' suffixes from local rebuilds) doesn't
line up cleanly with Hackage's rendering, so most of these URLs
fail validation and become dead-link spans anyway.
The Hackage rewrites were therefore mostly producing 404s without
adding reader value. Treat non-CHaP just like unmapped CHaP: emit an
unclickable <span> with a tooltip, no outbound link. Track the count
in a separate NON_CHAP bucket so it's visible in the summary but does
not contribute to strict-mode failure (it's a policy choice, not a
gap).
Same shape of bug as 3c557b542 (Phase 1 symlink loops): an && chain runs a capturing regex followed by a non-capturing one, and the second match clears BASH_REMATCH[1] before the capture is consumed. Under set -u the access errors. Reorder so the non-capturing exclusion is evaluated first.
Signed-off-by: Doc Holiday <[email protected]> Co-authored-by: sg-doc-holiday[bot] <219201796+sg-doc-holiday[bot]@users.noreply.github.com>
Wraps N2C services to forward signals and log exit context. Ensures SIGTERM reaches the child process for graceful shutdown testing under Antithesis fault injection.
Signed-off-by: Chris Guiney <[email protected]>