File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
public/samples/DataFeeds/SVR Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change 11import "github.com/flashbots/mev-share-node/mevshare"
22
33// ... create and sign your transaction
4- // Your transaction should send ETH to block.coinbase as the bid
5- // Example: Include a call that does payable(block.coinbase).transfer(msg.value)
64tx := types.NewTransaction (... )
75signedTx , err := types.SignTx (tx , ... )
86txBytes := signedTx .MarshalBinary ()
Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ async function sendBackrunBundle(pendingTx: IPendingTransaction) {
1414}
1515
1616async function buildDummyBackrunTx ( pendingTx : IPendingTransaction ) {
17- // Your liquidation transaction should send ETH to block.coinbase as the bid
18- // Example: Include a call that does payable(block.coinbase).transfer(tipAmount)
1917 const backrunTx = { data : { } , maxFeePerGas : 22000 , maxPriorityFeePerGas : 22000 }
2018 const signedBackrunTx = await executorWallet . signTransaction ( backrunTx )
2119 return signedBackrunTx
You can’t perform that action at this time.
0 commit comments