From fd1cb3fa97f2c2547abcd8c4bb3e11064fe66cdc Mon Sep 17 00:00:00 2001 From: Vincent J Date: Tue, 2 May 2023 16:38:42 -0400 Subject: [PATCH 1/2] Update readme.md I propose changing the default bribe to 99% to give new operators a better chance at replicating some of this live and understanding how it operates out of the box. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index e05adf8..df3d261 100644 --- a/readme.md +++ b/readme.md @@ -38,7 +38,7 @@ executorContractAddress= ``` Replace with the URL of your Ethereum RPC provider, with the private key of the Ethereum address you want to use for executing the transactions, and with the address of the deployed BlindBackrun smart contract from above. -By default this bot bids 50% of its profits to `block.coinbase` but this can be configured by changing `percentageToKeep` in the [config file](./execute/utils/config.json). After a short time after open sourcing it is likely that you will need to increase `percentageToKeep` for your bundles to be competitive. +By default this bot bids 99% of its profits to `block.coinbase` but this can be configured by changing `percentageToKeep` in the [config file](./execute/utils/config.json). ### Usage To start listening to the Flashbots MEV-Share Matchmaker and submitting blind arbitrage transactions, run the following command: From 668c59e36c633a0e4e2cba0b120476fb865835c0 Mon Sep 17 00:00:00 2001 From: Vincent J Date: Wed, 3 May 2023 08:59:02 -0400 Subject: [PATCH 2/2] Update config.json raise the bribes --- execute/utils/config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/execute/utils/config.json b/execute/utils/config.json index 4ce6c31..6c9d125 100644 --- a/execute/utils/config.json +++ b/execute/utils/config.json @@ -10,5 +10,5 @@ "goerliSushiFactoryAddress": "0xc35DADB65012eC5796536bD9864eD8773aBc74C4", "mainnetWETHAddress": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", "goerliWETHAddress": "0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6", - "percentageToKeep": "50" -} \ No newline at end of file + "percentageToKeep": "99" +}