Skip to content

Commit 2dbe32f

Browse files
committed
bid sumission info
1 parent 2fcbe12 commit 2dbe32f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

public/samples/DataFeeds/SVR/broadcaster.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import "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 tip/bid
4+
// Your transaction should send ETH to block.coinbase as the bid
55
// Example: Include a call that does payable(block.coinbase).transfer(msg.value)
66
tx := types.NewTransaction(...)
77
signedTx, err := types.SignTx(tx, ...)

public/samples/DataFeeds/SVR/broadcaster.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async function sendBackrunBundle(pendingTx: IPendingTransaction) {
1414
}
1515

1616
async function buildDummyBackrunTx(pendingTx: IPendingTransaction) {
17-
// Your liquidation transaction should send ETH to block.coinbase as the tip/bid
17+
// Your liquidation transaction should send ETH to block.coinbase as the bid
1818
// Example: Include a call that does payable(block.coinbase).transfer(tipAmount)
1919
const backrunTx = { data: {}, maxFeePerGas: 22000, maxPriorityFeePerGas: 22000 }
2020
const signedBackrunTx = await executorWallet.signTransaction(backrunTx)

src/content/data-feeds/svr-feeds/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -375,16 +375,16 @@ Once you've detected an SVR update and identified a profitable liquidation oppor
375375

376376
- **Bidding Strategy**: Block builders typically select the highest-paying bundle. Your bid must be competitive while leaving room for profit. The bundle's economic value comes from:
377377
- The gas price of your transaction
378-
- Any explicit payment (tip) you include to the builder
378+
- Any explicit payment you include to the builder
379379

380-
**How to submit the tip**: Within your backrun transaction itself, send ETH to `block.coinbase` (the block builder's address), which specifies your bid amount. The higher the tip sent to `block.coinbase`, the more competitive your bundle becomes. Example:
380+
**How to submit your bid**: Within your backrun transaction itself, send ETH to `block.coinbase` (the block builder's address). The higher the payment sent to `block.coinbase`, the more competitive your bundle becomes. Example:
381381

382382
```solidity
383-
// Within your liquidation transaction, send tip to block.coinbase
384-
payable(block.coinbase).transfer(tipAmount);
383+
// Within your liquidation transaction, send payment to block.coinbase
384+
payable(block.coinbase).transfer(bidAmount);
385385
```
386386

387-
You do not need to manually split the tip between Chainlink and the DeFi protocol (e.g., Aave). Simply pay your full bid amount to `block.coinbase`; the revenue split is handled automatically by the SVR infrastructure after the bundle is included.
387+
You do not need to manually split the payment between Chainlink and the DeFi protocol (e.g., Aave). Simply pay your full bid amount to `block.coinbase`; the revenue split is handled automatically by the SVR infrastructure after the bundle is included.
388388

389389
- **Inclusion Parameters**: Specify the target block range for your bundle to be considered
390390
- Typically target the next block plus a small range for redundancy

0 commit comments

Comments
 (0)