Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.3.1 #308

Merged
merged 32 commits into from
Aug 12, 2024
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1a73aac
Flutter dapp now uses WalletConnectModal to connect
quetool Jul 24, 2024
e221997
Flutter dapp now uses WalletConnectModal to connect
quetool Jul 24, 2024
614165f
Merge pull request #301 from WalletConnect/chores/use_walletconnect_m…
quetool Jul 24, 2024
fd5d4cb
minor fix in workflows
quetool Jul 24, 2024
35c7ebe
retro compatibility of scheme
quetool Jul 24, 2024
a4bb468
Fixes on sample wallet
quetool Jul 25, 2024
8d291a9
Code coverage report
quetool Jul 25, 2024
b2ed25c
removed coverage from tracking
quetool Aug 5, 2024
b1fd26d
Merge pull request #302 from WalletConnect/chores/fixes_and_coverage
quetool Aug 5, 2024
bd78944
minor changes
quetool Aug 5, 2024
938d1cb
Support EIP55 addresses and fixes on the sample wallet for wc certifi…
quetool Aug 7, 2024
8b2394c
minor update
quetool Aug 7, 2024
901d285
added connectivity enhancement
quetool Aug 8, 2024
f934775
fix: Parsing in toEthereAmount
CyberWake Aug 8, 2024
81987e3
tests
quetool Aug 8, 2024
561ad1f
fix review
quetool Aug 8, 2024
2e0191a
Merge pull request #306 from CyberWake/fix/#304
quetool Aug 8, 2024
72d7816
fix link handler
quetool Aug 8, 2024
d915fad
Update lib/apis/core/connectivity/connectivity.dart
quetool Aug 8, 2024
6d03b1a
version up
quetool Aug 8, 2024
8b204bc
Merge pull request #305 from WalletConnect/feature/wallet_certificati…
quetool Aug 8, 2024
24b627d
change flutter version on ci
quetool Aug 8, 2024
87fe802
fix on android samples
quetool Aug 9, 2024
adb3171
change icons for flavors
quetool Aug 9, 2024
24db141
minor changes
quetool Aug 9, 2024
be4e0b4
fixes
quetool Aug 10, 2024
0090cb4
increased timeout on pairing test
quetool Aug 10, 2024
7491930
fixed EIP55 verification
quetool Aug 12, 2024
dc25aa2
minor change
quetool Aug 12, 2024
2f205f6
removed custom_credentials
quetool Aug 12, 2024
7039c0f
version up
quetool Aug 12, 2024
4cfb17a
Merge pull request #307 from WalletConnect/chores/smart_contracts_int…
quetool Aug 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Parsing in toEthereAmount
  • Loading branch information
CyberWake committed Aug 8, 2024
commit f9347755c755deccc40121ec8418a0d5e5cfc379
2 changes: 1 addition & 1 deletion lib/apis/utils/extensions.dart
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@ extension EtheraAmountExtension on String? {
final hexValue = this!.replaceFirst('0x', '');
return EtherAmount.fromBigInt(
EtherUnit.wei,
BigInt.from(int.parse(hexValue, radix: 16)),
BigInt.parse(hexValue, radix: 16),
);
}
return null;