File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
server/api/contract/write Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ const writeRequestBodySchema = Type.Object({
24
24
} ) ,
25
25
Type . Tuple ( [ Type . String ( ) , Type . String ( ) ] ) ,
26
26
Type . Object ( { } ) ,
27
+ Type . Array ( Type . Any ( ) ) ,
28
+ Type . Any ( ) ,
27
29
] ) ,
28
30
) ,
29
31
...txOverridesForWriteRequest . properties ,
@@ -32,7 +34,7 @@ const writeRequestBodySchema = Type.Object({
32
34
// Adding example for Swagger File
33
35
writeRequestBodySchema . examples = [
34
36
{
35
- function_name : "transferFrom" ,
37
+ functionName : "transferFrom" ,
36
38
args : [
37
39
"0x1946267d81Fb8aDeeEa28e6B98bcD446c8248473" ,
38
40
"0x3EcDBF3B911d0e9052b64850693888b008e18373" ,
Original file line number Diff line number Diff line change @@ -225,7 +225,9 @@ export const processTx = async () => {
225
225
if ( rpcRes . result ) {
226
226
const txHash = rpcRes . result ;
227
227
const txRes = await provider . getTransaction ( txHash ) ;
228
-
228
+ logger . worker . info (
229
+ `[Transaction] [${ tx . queueId } ] Sent tx ${ txHash } , with Nonce ${ txRes . nonce } ` ,
230
+ ) ;
229
231
return {
230
232
status : TransactionStatusEnum . Submitted ,
231
233
queueId : tx . queueId ! ,
You can’t perform that action at this time.
0 commit comments