• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

KarpelesLab / libwallet / 24416091053
25%

Build:
DEFAULT BRANCH: master
Ran 14 Apr 2026 06:36PM UTC
Jobs 1
Files 70
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

14 Apr 2026 06:28PM UTC coverage: 24.99% (-0.02%) from 25.01%
24416091053

push

github

MagicalTux
typed pending-request flow (sealed subtypes + full-payload event)

Go: the `request` event now carries the full request object, not just
its id. Consumers can render the approval prompt on first paint without
a follow-up `Request/<id>` round-trip.

Dart: `PendingRequest` is sealed with one subtype per Web3 request kind —
ConnectRequest, SignRequest, PersonalSignRequest, SignTypedDataRequest,
AddNetworkRequest, ChangeNetworkRequest, WatchAssetRequest,
SolanaSignMessage/Transaction/SignAndSendTransactionRequest, and
UnknownPendingRequest for forward-compat. Each subtype exposes typed
accessors (message bytes, typed-data map, typed network descriptor,
transaction bytes, etc.) instead of dumping into a `dynamic` blob.

Dart: new `client.pendingRequests` stream yields fully-parsed
PendingRequest values directly. Consumers can pattern-match:

    client.pendingRequests.listen((req) async {
      switch (req) {
        case ConnectRequest():
          if (await showConnectSheet(req.host)) {
            await client.requests.approve(req.id, accounts: [acct.id]);
          } else {
            await client.requests.reject(req.id);
          }
        case PersonalSignRequest():
          ok(await showSignSheet(req.messageAsText ?? 'binary'))
              ? await client.requests.approve(req.id)
              : await client.requests.reject(req.id);
        default:
          await client.requests.reject(req.id);
      }
    });

The raw `requestEvents` stream still works (the typed `request` getter
on RequestEvent is null if the backend pre-dates this change).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

0 of 8 new or added lines in 1 file covered. (0.0%)

1910 of 7643 relevant lines covered (24.99%)

3.25 hits per line

Uncovered Changes

Lines Coverage ∆ File
8
3.26
-0.05% wltbase/request.go
Jobs
ID Job ID Ran Files Coverage
1 24416091053.1 14 Apr 2026 06:36PM UTC 70
24.99
GitHub Action Run
Source Files on build 24416091053
  • Tree
  • List 70
  • Changed 1
  • Source Changed 1
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • Github Actions Build #24416091053
  • 04c463cf on github
  • Prev Build on master (#24415074272)
  • Next Build on master (#24416744321)
  • Delete
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc