File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Thirdweb/Thirdweb.Wallets Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 114
114
// Console.WriteLine("Make sure you have enough funds!");
115
115
// Console.ReadLine();
116
116
117
- // var hash = await ThirdwebTransaction.Send (zkRawTx);
118
- // Console.WriteLine($"Transaction hash : {hash }");
117
+ // var receipt = await ThirdwebTransaction.SendAndWaitForTransactionReceipt (zkRawTx);
118
+ // Console.WriteLine($"Receipt : {receipt }");
119
119
120
120
// // Extremely raw example
121
121
Original file line number Diff line number Diff line change @@ -387,7 +387,7 @@ private static string SerializeEip712(AccountAbstraction.ZkSyncAATransaction tra
387
387
// add array of rlp encoded paymaster/paymasterinput
388
388
transaction . Paymaster != 0
389
389
? RLP . EncodeElement ( transaction . Paymaster . ToByteArray ( isUnsigned : true , isBigEndian : true ) ) . Concat ( RLP . EncodeElement ( transaction . PaymasterInput ) ) . ToArray ( )
390
- : Array . Empty < byte > ( )
390
+ : new byte [ ] { 0xc0 }
391
391
} ;
392
392
393
393
return "0x71" + RLP . EncodeDataItemsAsElementOrListAndCombineAsList ( fields . ToArray ( ) , _indexOfListDataItems ) . ToHex ( ) ;
You can’t perform that action at this time.
0 commit comments