| title | Bidder Node Commands |
|---|---|
| sidebarTitle | Bidder Node Commands |
Ensure you have completed the Quickstart step in a separate terminal. This will set up your environment and place your key in the $HOME/.mev-commit directory, along with running the required bidder node.
Now that you've made sure we have a bidder node running, we can interact with it using the following commands:
cd $HOME/.mev-commit;
export KEY=$(cat key);
export ADDRESS=$(cast wallet address --private-key 0x$(cat key))To get the current deposit balance in the contract for the current window:
curl -s http://localhost:13523/v1/bidder/get_depositTo get the current deposit balance in the contract for a specific window:
curl -s http://localhost:13523/v1/bidder/get_deposit?windowNumber=1Deposit represents the funds in the bidder's account that can be used to submit bids on the mev-commit p2p-network and settled on-chain.
This command will allow you to withdraw funds from the specific window. Window number is the number where the bidder deposited funds.
curl -X POST http://localhost:13523/v1/bidder/withdraw?windowNumber=1 \The auto deposit feature allows you to automate the process of depositing funds for the bidder account. This is useful for ensuring your bidder account always has funds available to bid. In order to achieve this, the node will keep issuing deposits for the new windows and also withdrawing funds from the previous windows.
For seamless availability of funds, the deposits would be locked for around 3 windows at a time. So the total amount locked would be 3 * amountPerWindow. The user's wallet should have enough funds to be able to maintain these deposits as well as cover gas costs to issue transactions.
There are two ways to enable this feature:
Users can use the command-line or the configuration file to enable this feature on node boot-up. The autodeposit-enabled flag should be set as well as the autodeposit-amount needs to be set to the amount to be deposited in each window.
In order to enable this at node boot up, users needs to fund their wallet before starting the node. So we would need to know the private-key used for the account beforehand.
mev-commit --keystore-path ~/.mev-commit \
--keystore-password <PASSWORD> \
--bootnodes /dnsaddr/bootnode.testnet.mev-commit.xyz \
--settlement-rpc-endpoint https://chainrpc.testnet.mev-commit.xyz
--autodeposit-enabled true
--autodeposit-amount 1000000000000000000Another option to enable this is using the Bidder API.
curl -X POST http://localhost:13523/v1/bidder/auto_deposit/1000000000000000000To get the status of the auto deposit process:
curl -s http://localhost:13523/v1/bidder/auto_deposit_statusTo cancel the auto deposit process:
curl -X POST http://localhost:13523/v1/bidder/cancel_auto_deposit?withdraw=trueThis will stop the ongoing auto deposit process.
If withdraw is set, the node will try to withdraw the deposit at the earliest possible time. It might take time before we are able to withdraw from the current window. The bidder node should be running in order to allow this process to complete. If withdraw is not set, the API will return the window numbers which have been already deposited to. The user can then manually issue withdraw at a later point using the API.
To withdraw funds from the several windows, you can use the following command:
curl -X POST http://localhost:13523/v1/bidder/withdraw_from_windows \
-H "Content-Type: application/json" \
-d '{"windowNumbers": [1, 2, 3]}'This command will allow you to check your current wallet balance on mainnet mev-commit chain:
cast b $ADDRESS --rpc-url https://chainrpc.mev-commit.xyzThis command will allow you to check your current wallet balance on testnet mev-commit chain:
cast b $ADDRESS --rpc-url https://chainrpc.testnet.mev-commit.xyzpython3 -c "print($(cast b 0xC973D09e51A20C9Ab0214c439e4B34Dbac52AD67 \
--rpc-url https://chainrpc.mev-commit.xyz) + $(cast b 0xb772Add4718E5BD6Fe57Fb486A6f7f008E52167E \
--rpc-url https://chainrpc.mev-commit.xyz))"python3 -c "print($(cast b 0x948eCD70FaeF6746A30a00F30f8b9fB2659e4062 \
--rpc-url https://chainrpc.testnet.mev-commit.xyz) + $(cast b 0x1C2a592950E5dAd49c0E2F3A402DCF496bdf7b67 \
--rpc-url https://chainrpc.testnet.mev-commit.xyz))"The health endpoint checks whether the bidder node is receiving events from mev-commit chain. This command is useful to determine whether the bidder node has become out of sync (e.g. can't find the window balance).
curl http://localhost:13523/healthThe topology endpoint can be used to check which provider nodes the bidder node is connected to.
curl http://localhost:13523/v1/debug/topologyThis API is enabled by default, the following environment variables could be set when launching a mev-commit client:
MEV_COMMIT_VALIDATOR_ROUTER_ADDRMEV_COMMIT_BEACON_API_URLMEV_COMMIT_L1_RPC_URL
Current address for the ValidatorOptInRouter contract on Holesky is 0x251Fbc993f58cBfDA8Ad7b0278084F915aCE7fc3 and on Mainnet is tbd.
The default URLs for the Mainnet Beacon Chain and L1 RPC are https://ethereum-beacon-api.publicnode.com and https://ethereum-rpc.publicnode.com, respectively, but you can set your own URLs.
The default URLs for the Testnet Beacon Chain and L1 RPC are https://ethereum-holesky-beacon-api.publicnode.com and https://ethereum-holesky-rpc.publicnode.com, respectively, but you can set your own URLs.
To get the information on whether validators for a specific epoch are opted in to mev-commit:
curl http://localhost:13523/v1/validator/get_validators?epoch=1To get the information on whether validators for a latest epoch are opted in to mev-commit:
curl http://localhost:13523/v1/validator/get_validatorsNote proposer selection is only stable within the context of the current epoch, and must be checked during the epoch in question. See specification here and here.
Users can also set-up a specific subset of provider nodes in order to send their bids. By default the mev-commit bidder node will send bids to all the available and staked providers. However, if the user wants only a specific subset of providers to be able to see their bids, the can use the --provider-whitelist option to set it up. The list should contain the ethereum wallet addresses of the provider nodes.
mev-commit --keystore-path ~/.mev-commit \
--keystore-password <PASSWORD> \
--bootnodes /dnsaddr/bootnode.mev-commit.xyz \
--settlement-rpc-endpoint https://chainrpc.mev-commit.xyz
--provider-whitelist 0x6DcE7bcF4fCA9E14b546e583049B82474631b185,0x0979c194EaD08444B6e40415F5822AB32363f580mev-commit --keystore-path ~/.mev-commit \
--keystore-password <PASSWORD> \
--bootnodes /dnsaddr/bootnode.testnet.mev-commit.xyz \
--settlement-rpc-endpoint https://chainrpc.testnet.mev-commit.xyz
--provider-whitelist 0x6DcE7bcF4fCA9E14b546e583049B82474631b185,0x0979c194EaD08444B6e40415F5822AB32363f580