feat: selectable transaction table with details
Signed-off-by: Chris Gianelloni <[email protected]>
Signed-off-by: Chris Gianelloni <[email protected]>
Bumps [github.com/blinklabs-io/gouroboros](https://github.com/blinklabs-io/gouroboros) from 0.153.1 to 0.181.0. - [Release notes](https://github.com/blinklabs-io/gouroboros/releases) - [Changelog](https://github.com/blinklabs-io/gouroboros/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/blinklabs-io/gouroboros/compare/v0.153.1...v0.181.0) --- updated-dependencies: - dependency-name: github.com/blinklabs-io/gouroboros dependency-version: 0.181.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [github.com/blinklabs-io/cardano-models](https://github.com/blinklabs-io/cardano-models) from 0.7.0 to 0.7.1. - [Release notes](https://github.com/blinklabs-io/cardano-models/releases) - [Commits](https://github.com/blinklabs-io/cardano-models/compare/v0.7.0...v0.7.1) --- updated-dependencies: - dependency-name: github.com/blinklabs-io/cardano-models dependency-version: 0.7.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
On 32-bit GOARCHs (386, arm) the platform int is 32-bit, so untyped constants math.MaxUint32 / 0xFFFFFFFF / math.MaxInt64 overflow int in bounds checks, map literals, and format args, breaking cross-compilation (e.g. gomobile bind for armeabi-v7a/x86). Widen the comparisons/types so the package builds on all targets; no behavior change on valid inputs. Signed-off-by: Chris Gianelloni <[email protected]>
The production `next build` fails under node:22-alpine resolving the @meshsdk/core-csl / whisky-evaluator WebAssembly export (`does not provide an export named 'js_evaluate_tx_scripts'`) — a musl/WASM incompatibility. The same build succeeds on glibc (local macOS + Vercel). Switch the CI Dockerfiles to node:22-slim (Debian) and apt for the postgres client. Co-Authored-By: Claude Opus 4.8 <[email protected]>
Signed-off-by: Akhil Repala <[email protected]>
mesh 2.0's whisky-evaluator (WASM) and Prisma 7's @prisma/dev/streams-local require node >=22. On node 20 the production `next build` fails resolving the whisky-evaluator WASM export (and streams-local warns EBADENGINE). node 22 matches what Vercel and local builds use. Bumps the app Dockerfiles and the node-20 workflows; the node-18 scheduled jobs are left for a separate pass. Co-Authored-By: Claude Opus 4.8 <[email protected]>
Signed-off-by: jeluard <[email protected]>
add documentation and blog post for the Cardano MCP server and update…
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pat Losoponkul <[email protected]>
The multisig-v1-smoke ran the app via `next dev`, which mis-resolves the @meshsdk/core-csl / whisky-evaluator WASM path at runtime (createWallet 500). Build the app in Dockerfile.ci and serve it with `next start` so the smoke exercises the same production output Vercel deploys (and starts instantly instead of compiling routes on demand). Copy prisma.config.ts before npm ci so the postinstall generate sees the Prisma 7 config; set a dummy DATABASE_URL for build-time module evaluation (compose overrides it at runtime). Co-Authored-By: Claude Opus 4.8 <[email protected]>
Signed-off-by: Chris Gianelloni <[email protected]>
The trace fix unmasked a real finding: 'cluster fork depth < k' failed (62 reorgs > k). In a 2-producer cluster a network partition is a 1-vs-1 split with no majority, so a fork grows unbounded by k. Fix it properly: - add p3 -> a partition leaves a 2-vs-1 majority that anchors the canonical chain, so only the minority reorgs; - raise securityParam k=10 -> 50 (epochLength 1000 -> 5000, preserving cardonnay's 10k/f nonce-stability ratio) so the minority's reorg over a multi-minute split stays < k. Epochs become ~16.7 min, so governance runs need the 3h duration; bump first_setup's epoch-wait to 1800s. Validated locally: cardonnay generates a valid 3-pool genesis with securityParam 50 / epochLength 5000.
@meshsdk/core-csl 1.9 pulls whisky-evaluator, which ships a .wasm the Node server runtime can't load when the package is externalized (ERR_UNKNOWN_FILE_EXTENSION ".wasm" → createWallet 500). Add both to transpilePackages so Next bundles them and applies its WebAssembly handling. Candidate fix — needs the v1 smoke / Vercel deploy to confirm the WASM loads at runtime (the local build still warns about the .wasm modules). Co-Authored-By: Claude Opus 4.8 <[email protected]>