Skip to content

Commit 3371a74

Browse files
screens/Job: add gasLanePrice to VRFSpec query (#16)
* screens/Job: add gasLanePrice to VRFSpec query * Add missing property to VRFSPec (#17) Co-authored-by: HenryNguyen5 <[email protected]>
1 parent e46f667 commit 3371a74

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/screens/Job/JobView.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ const JOB_PAYLOAD__SPEC = gql`
8080
}
8181
... on VRFSpec {
8282
evmChainID
83+
gasLanePrice
8384
coordinatorAddress
8485
fromAddresses
8586
minIncomingConfirmations

src/screens/Job/generateJobDefinition.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,7 @@ juelsPerFeeCoinSource = "1000000000"
461461
chunkSize: 25,
462462
backoffInitialDelay: '1m',
463463
backoffMaxDelay: '1h',
464+
gasLanePrice: '200 gwei',
464465
},
465466
observationSource:
466467
' fetch [type=http method=POST url="http://localhost:8001" requestData="{\\"hi\\": \\"hello\\"}"];\n parse [type=jsonparse path="data,result"];\n multiply [type=multiply times=100];\n fetch -> parse -> multiply;\n',
@@ -486,6 +487,7 @@ batchFulfillmentGasMultiplier = 1
486487
chunkSize = 25
487488
backoffInitialDelay = "1m"
488489
backoffMaxDelay = "1h"
490+
gasLanePrice = "200 gwei"
489491
observationSource = """
490492
fetch [type=http method=POST url="http://localhost:8001" requestData="{\\\\"hi\\\\": \\\\"hello\\\\"}"];
491493
parse [type=jsonparse path="data,result"];

src/screens/Job/generateJobDefinition.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ export const generateJobDefinition = (
215215
'chunkSize',
216216
'backoffInitialDelay',
217217
'backoffMaxDelay',
218+
'gasLanePrice',
218219
),
219220
...extractObservationSourceField(job),
220221
}

0 commit comments

Comments
 (0)