Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions src/components/ppom/batching.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export function ppomMaliciousBatchingAndQueueing(parentContainer) {
from: globalContext.accounts[0],
to: `${maliciousAddress}`,
value: '0x0',
gasLimit: '0x5028',
gasLimit: '0x5208',
maxFeePerGas: '0x2540be400',
maxPriorityFeePerGas: '0x3b9aca00',
},
Expand All @@ -160,7 +160,7 @@ export function ppomMaliciousBatchingAndQueueing(parentContainer) {
from: globalContext.accounts[0],
to: '0x5FbDB2315678afecb367f032d93F642f64180aa3',
value: '0x0',
gasLimit: '0x5028',
gasLimit: '0x5208',
maxFeePerGas: '0x2540be400',
maxPriorityFeePerGas: '0x3b9aca00',
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/signatures/malformed-transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export function malformedTransactionsComponent(parentContainer) {
from,
to: '0x0c54FcCd2e384b4BB6f2E405Bf5Cbc15a017AaFb',
value: '0x0',
gasLimit: '0x5028',
gasLimit: '0x5208',
maxFeePerGas: 'invalid', // invalid maxFeePerGas - expected int/hex value
maxPriorityFeePerGas: '0x3b9aca00',
},
Expand Down
6 changes: 3 additions & 3 deletions src/components/transactions/send.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export function sendComponent(parentContainer) {
from: globalContext.accounts[0],
to: '0x0c54FcCd2e384b4BB6f2E405Bf5Cbc15a017AaFb',
value: '0x0',
gasLimit: '0x5028',
gasLimit: '0x5208',
maxFeePerGas: '0x2540be400',
maxPriorityFeePerGas: '0x3b9aca00',
},
Expand Down Expand Up @@ -367,7 +367,7 @@ export function sendComponent(parentContainer) {
from: globalContext.accounts[0],
to: contract.address,
value: '0x0',
gasLimit: '0x5028',
gasLimit: '0x5208',
maxFeePerGas: '0x2540be400',
maxPriorityFeePerGas: '0x3b9aca00',
},
Expand Down Expand Up @@ -418,7 +418,7 @@ export function sendComponent(parentContainer) {
from: globalContext.accounts[0],
to: contract.address,
value: '0x16345785D8A0', // 24414062500000
gasLimit: '0x5028',
gasLimit: '0x5208',
maxFeePerGas: '0x2540be400',
maxPriorityFeePerGas: '0x3b9aca00',
},
Expand Down
Loading