Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit 3955222

Browse files
committed
minor change
1 parent 786aa14 commit 3955222

5 files changed

Lines changed: 16 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 2.3.0-beta02
1+
## 2.3.0-beta03
22

33
- One-Click Auth support
44

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Overview
22

3-
WalletConnect Dart v2 package for WalletKit. https://walletconnect.com/walletkit.
3+
WalletConnect Dart v2 package for WalletKit and AppKit. https://walletconnect.com/.
44

5-
Check out official docs: https://docs.walletconnect.com/walletkit/overview
5+
Check out official docs: https://docs.walletconnect.com/
66

77
# To Use
88

lib/apis/sign_api/sign_engine.dart

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1897,6 +1897,14 @@ class SignEngine implements ISignEngine {
18971897
final chainId = 'Chain ID: ${AddressUtils.getDidChainId(iss)}';
18981898
final nonce = 'Nonce: ${cacaoPayload.nonce}';
18991899
final issuedAt = 'Issued At: ${cacaoPayload.iat}';
1900+
final expirationTime = (cacaoPayload.exp != null)
1901+
? 'Expiration Time: ${cacaoPayload.exp}'
1902+
: null;
1903+
final notBefore =
1904+
(cacaoPayload.nbf != null) ? 'Not Before: ${cacaoPayload.nbf}' : null;
1905+
final requestId = (cacaoPayload.requestId != null)
1906+
? 'Request ID: ${cacaoPayload.requestId}'
1907+
: null;
19001908
final resources = cacaoPayload.resources != null &&
19011909
cacaoPayload.resources!.isNotEmpty
19021910
? 'Resources:\n${cacaoPayload.resources!.map((resource) => '- $resource').join('\n')}'
@@ -1923,6 +1931,9 @@ class SignEngine implements ISignEngine {
19231931
chainId,
19241932
nonce,
19251933
issuedAt,
1934+
expirationTime,
1935+
notBefore,
1936+
requestId,
19261937
resources,
19271938
].where((element) => element != null).join('\n');
19281939

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: walletconnect_flutter_v2
22
description: WalletConnect's official Dart library v2 for WalletKit and AppKit. The communications protocol for web3.
3-
version: 2.3.0-beta02
3+
version: 2.3.0-beta03
44
repository: https://github.com/WalletConnect/WalletConnectFlutterV2
55

66
environment:

0 commit comments

Comments
 (0)