diff --git a/.changeset/yellow-tomatoes-peel.md b/.changeset/yellow-tomatoes-peel.md new file mode 100644 index 0000000000000..02833e41c3f2a --- /dev/null +++ b/.changeset/yellow-tomatoes-peel.md @@ -0,0 +1,5 @@ +--- +'@eth-optimism/batch-submitter': patch +--- + +Add loglines for eip1559 related fields before sending a transaction diff --git a/packages/batch-submitter/src/batch-submitter/batch-submitter.ts b/packages/batch-submitter/src/batch-submitter/batch-submitter.ts index ea84a95a330c5..60daedf7b1ec4 100644 --- a/packages/batch-submitter/src/batch-submitter/batch-submitter.ts +++ b/packages/batch-submitter/src/batch-submitter/batch-submitter.ts @@ -195,6 +195,9 @@ export abstract class BatchSubmitter { beforeSendTransaction: (tx: PopulatedTransaction) => { this.logger.info(`Submitting ${txName} transaction`, { gasPrice: tx.gasPrice, + maxFeePerGas: tx.maxFeePerGas, + maxPriorityFeePerGas: tx.maxPriorityFeePerGas, + gasLimit: tx.gasLimit, nonce: tx.nonce, contractAddr: this.chainContract.address, })