File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 1.0.4]
2
+
3
+ - fix getBalance bugs, log and throw socket io error.
4
+ - update required pkg version: ` web3dart: ^2.1.4 `
5
+
1
6
## [ 1.0.3]
2
7
3
8
- fix sendTx bugs, miss ` chainID ` argument;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ extension Web3DartExt on Web3Client {
14
14
}
15
15
16
16
Future <String > transfer (String receiverAddress, int amountInWei, String privateKey) async {
17
- print ('transfer --> receiver: $receiverAddress , amountInWei: $amountInWei ' );
17
+ print ('transfer start --> receiver: $receiverAddress , amountInWei: $amountInWei ' );
18
18
19
19
/// todo: check approved
20
20
@@ -26,7 +26,7 @@ extension Web3DartExt on Web3Client {
26
26
Transaction (to: receiver, value: amount),
27
27
privateKey,
28
28
);
29
- print ('transfer done, txID: $txHash successful' );
29
+ print ('transfer done --> txID: $txHash successful' );
30
30
return txHash;
31
31
}
32
32
Original file line number Diff line number Diff line change 1
1
name : web3
2
2
description : web3dart wrapper.
3
- version : 1.0.3
3
+ version : 1.0.4
4
4
homepage : https://github.com/better-dart/pkg
5
5
6
6
environment :
@@ -29,7 +29,7 @@ dependencies:
29
29
# tweetnacl: ^0.3.1
30
30
# bech32:
31
31
32
- web3dart : ^2.1.3
32
+ web3dart : ^2.1.4
33
33
# web3dart:
34
34
# git:
35
35
# url: https://github.com/better-dart/web3dart.git
You can’t perform that action at this time.
0 commit comments