The DAI Stablecoin System incentivizes external agents, called keepers, to automate certain operations around the
Ethereum blockchain. The purpose of auction-keeper
is to:
- Seek out opportunities and start new auctions
- Detect auctions started by other participants
- Bid on auctions by converting token prices into bids
Check out the July 23rd, 2019 community meeting for some more information about MCD auctions and the purpose of this component.
auction-keeper
can participate in clip
and flip
(collateral sale), flap
(MKR buy-and-burn)
and flop
(MKR minting) auctions. Its unique feature is the ability to plug in external
bidding models, which tell the keeper when and how high to bid. This keeper can be safely
left running in background. The moment it notices or starts a new auction it will spawn a new instance
of a bidding model for it and then act according to its instructions. Bidding models will
be automatically terminated by the keeper the moment the auction expires. The keeper also
automatically deal
s expired auctions if it's us who won them.
This keeper is intended to be a reference implementation. It may be used as-is, or pieces borrowed to develop your own auction trading bot.
https://chat.makerdao.com/channel/keeper
auction-keeper
directly interacts with Clipper
, Flipper
, Flapper
and Flopper
auction contracts
deployed to the Ethereum blockchain. Decisions which involve pricing are delegated to bidding models.
Bidding models are simple processes, external to the main auction-keeper
process. As they do not have to know
anything about blockchain and smart contracts, they can be implemented in basically any programming language.
The only thing they need to do is to read and write JSON documents they exchange with auction-keeper
. The simplest
example of a bidding model is a shell script which echoes a fixed price.
The main task of this keeper, as already outlined above, is to constantly monitor all ongoing auctions, discover new ones, ensure that an instance of bidding model is running for each auction, provide these instances of the current status of their auctions and bid according to decisions taken by them.
The way the auction discovery and monitoring mechanism works at the moment is simplistic for illustration purposes.
It basically operates as a loop which kicks in on every new block enumerating all auctions from 1
to kicks
.
Bidding models are checked periodically and submitted where appropriate.
auction-keeper
maintains a collection of child processes, as each bidding model is its own dedicated
process. New processes (new bidding model instances) are spawned by executing a command according to the
--model
commandline parameter. These processes are automatically terminated (via SIGKILL
) by the keeper
shortly after their associated auction expires.
Whenever the bidding model process dies, it gets automatically respawned by the keeper.
Example:
bin/auction-keeper --model '../my-bidding-model.sh' [...]
auction-keeper
communicates with bidding models via their standard input and standard output.
Straight away after the process gets started, and every time the auction state changes, the keeper sends a one-line JSON document to the standard input of the bidding model process. Sample message sent from the keeper to the model looks like:
{"id": "6", "flapper": "0xf0afc3108bb8f196cf8d076c8c4877a4c53d4e7c", "bid": "7.142857142857142857", "lot": "10000.000000000000000000", "beg": "1.050000000000000000", "guy": "0x00531a10c4fbd906313768d277585292aa7c923a", "era": 1530530620, "tic": 1530541420, "end": 1531135256, "price": "1400.000000000000000028"}
The meaning of individual fields:
id
- auction identifier.clipper
- Ethereum address of theClipper
contract (only forclip
auctions).flipper
- Ethereum address of theFlipper
contract (only forflip
auctions).flapper
- Ethereum address of theFlapper
contract (only forflap
auctions).flopper
- Ethereum address of theFlopper
contract (only forflop
auctions).bid
- current highest bid (will go up forflip
andflap
auctions).lot
- amount being currently auctioned (will go down forclip
,flip
andflop
auctions).tab
- bid value which will cause the auction to enter thedent
phase (only forflip
auctions).beg
- minimum price increment (1.05
means minimum 5% price increment).top
- starting price (forclip
auctions)guy
- Ethereum address of the current highest bidder.era
- current time (in seconds since the UNIX epoch).tic
- time when the current bid will expire (null
if no bids yet).end
- time when the entire auction will expire.price
- current price being tendered (can benull
if price is infinity).
Bidding models should never make an assumption that messages will be sent only when auction state changes.
It is perfectly fine for the auction-keeper
to periodically send the same messages to bidding models.
At the same time, the auction-keeper
reads one-line messages from the standard output of the bidding model
process and tries to parse them as JSON documents. Then it extracts two fields from that document:
price
- the maximum (forclip
,flip
andflop
auctions) or the minimum (forflap
auctions) price the model is willing to bid. Forclip
auctions, the keeper waits for the current auction price to drop below the maximum price specified in your model before submitting a bid.
A sample message sent from the model to the keeper may look like:
{"price": "750.0"}
Whenever the keeper and the model communicate in terms of prices, it is the MKR/DAI price (for flap
and flop
auctions) or the collateral price expressed in DAI e.g. DGX/DAI (for clip
or flip
auctions).
Any messages writen by a bidding model to stderr will be passed through by the keeper to its logs. This is the most convenient way of implementing logging from bidding models.
No facility is provided to prevent you from bidding an unprofitable price. Please ensure you understand how your model produces prices and how prices are consumed by the keeper for each of the auction types in which you participate.
If you just want to bid a fixed price for each auction, this is the simplest possible bidding model you can use:
#!/usr/bin/env bash
while true; do
echo "{\"price\": \"723.0\"}" # put your desired price amount here
sleep 120 # locking the price for n seconds
done
The stdout provides a price for the collateral (for clip
and flip
auctions) or MKR (for flap
and flop
auctions). The
sleep locks the price in place for the specified duration, after which the keeper will restart the price model and read a new price.
Consider this your price update interval. To conserve system resources, take care not to set this too low.
Thanks to our community for these examples:
- banteg's Python boilerplate model
- theogravity's NodeJS bidding model
- If an auction started before the keeper was started, this keeper will not participate in it until the next block is mined.
- This keeper does not explicitly handle global settlement, and may submit transactions which fail during shutdown.
- Some keeper functions incur gas fees regardless of whether a bid is submitted. This includes, but is not limited to,
the following actions:
- submitting approvals
- adjusting the balance of surplus to debt
- queuing debt for auction
- biting a vault or starting a flap or flop auction
- The keeper does not check model prices until an auction exists. When configured to create new auctions, it will
bite
,flap
, orflop
in response to opportunities regardless of whether or not your Dai or MKR balance is sufficient to participate. This too imposes a gas fee. - Biting vaults to kick off new collateral auctions is an expensive operation. To do so without a VulcanizeDB
subscription, the keeper initializes a cache of urn state by scraping event logs from the chain. The keeper will then
continuously refresh urn state to detect undercollateralized urns.
- Despite batching log queries into multiple requests, Geth nodes are generally unable to initialize the urn state cache in a reasonable amount of time. As such, Geth is not recommended for biting vaults.
- To manage resources, it is recommended to run separate keepers using separate accounts to bite (
--kick-only
) and bid (--bid-only
).
This project uses Python 3.6.6.
In order to clone the project and install required third-party packages please execute:
git clone https://github.com/makerdao/auction-keeper.git
cd auction-keeper
git submodule update --init --recursive
pip3 install -r requirements.txt
For some known Ubuntu and macOS issues see the pymaker README.
Run bin/auction-keeper -h
without arguments to see an up-to-date list of arguments and usage information.
To participate in all auctions, a separate keeper must be configured for clip
or flip
of each collateral type,
as well as one for flap
and another for flop
. Collateral types (ilk
s) combine the name of the token and a letter
corresponding to a set of risk parameters. For example, ETH-A
and ETH-B
are two different collateral types for the
same underlying token (WETH). Regardless of whether a keeper is configured for --clip
or --flip
, the keeper will
choose the appropriate collateral liquidation contract for the specified --ilk
and addresses configured in pymaker
.
Configure --from-block
to the block where MCD was deployed. One way to find this is to look at the MCD_DAI
contract of the deployment you are using and determine the block in which it was deployed.
Please note collateral types in the table above are provided for illustrative purposes, and should not be interpreted
as an endorsement of which collaterals should be deployed to mainnet, which will be determined by an appropriate
governance process. A complete list of ilk
s for a deployment may be gleaned from the addresses.json
.
Auction keeper can use one of several sources for the initial gas price of a transaction:
- The
--oracle-gas-price
switch will use a gas price aggregated across multiple gas oracles. Recommend passing--ethgasstation-api-key MY_API_KEY
and--etherscan-api-key MY_API_KEY
, as both API keys are currently free.
The Blocknative Gas Platform requires a key. - The
--fixed-gas-price
switch allows specifying a fixed initial price in Gwei (e.g.--fixed-gas-price 33.3
).
If neither --oracle-gas-price
nor --fixed-gas-price
is configured, or if gas oracles are not producing prices,
the keeper will choose a starting gas price determined by your node. When not using --fixed-gas-price
,
--gas-initial-multiplier
(default 1.0
, or 100%) allows you to configure a more aggressive initial gas price.
Auction keeper periodically attempts to increase gas price when transactions are queueing. After a few blocks, a
transaction's gas price will be multiplied by --gas-reactive-multiplier
(default 1.125
, an increase of 12.5%)
until it is mined or --gas-maximum
(default 2000 Gwei) is reached.
Note that Parity, as of this writing, requires a
minimum gas increase of 1.125
to propagate transaction replacement; this should be treated as a minimum
value unless you want replacements to happen less frequently.
This gas strategy is used by keeper in all interactions with chain. When sending a bid, this strategy is used only
when the model does not provide a gas price. Unless your price model is aware of your transaction status, it is
generally advisable to allow the keeper to manage gas prices for bids, and not supply a gasPrice
in your model.
Key points:
- Dai must be joined from a token balance to the
Vat
for bidding onclip
,flip
andflop
auctions. - Won collateral can be exited from the
Vat
to a token balance after a won auction is dealt (closed). - MKR for/from
flap
/flop
auctions is managed directly through token balances and is never joined to theVat
.
The keeper provides facilities for managing Vat
balances, which may be turned off to manage manually.
To manually control the amount of Dai in the Vat
, pass --keep-dai-in-vat-on-exit
and --keep-gem-in-vat-on-exit
,
set --return-gem-interval 0
, and do not pass --vat-dai-target
.
Warnings: Do not use an eth-from
account on multiple keepers as it complicates Vat inventory management and
will likely cause nonce conflicts. Using an eth-from
account with an open vault is also discouraged.
All auction contracts exclusively interact with Dai (for all auctions) in the Vat
. --vat-dai-target
may be set to
the amount you wish to maintain, or all
to join your account's entire token balance. Rebalances do not account for
Dai moved from the Vat
to an auction contract for an active bid. Dai is rebalanced per --vat-dai-target
when:
- The keeper starts up
Vat
balance is insufficient to place a bid- An auction is dealt
To avoid transaction spamming, small "dusty" Dai balances will be ignored (until the keeper exits, if so configured).
By default, all Dai in your eth-from
account is exited from the Vat
and added to your token balance when the keeper
is terminated normally. This feature may be disabled using --keep-dai-in-vat-on-exit
.
Won collateral is periodically exited by setting --return-gem-interval
to the number of seconds between balance
checks. Collateral is exited from the Vat
when the keeper is terminated normally unless --keep-gem-in-vat-on-exit
is specified.
Alternatively, mcd-cli can be used to manually manage Vat
balances.
Here is an example to join 6000 Dai on a testnet,
and exit 300 Dai on Kovan, respectively:
mcd -C testnet dai join 6000
mcd -C kovan dai exit 300
mcd-cli
requires installation and configuration; view the
mcd-cli README for more information.
To start clip
and flip
auctions, the keeper needs a list of urns and the collateralization ratio of each urn.
There are two ways to retrieve the list of urns:
-
Set
--from-block
to the block where the first urn was created to scrape the chain forfrob
events.
The application will spend significant time (>25 minutes for ETH-A) populating an initial list. Afterward, events will be queried back to the last cached block to detect new urns. The state of all urns will be queried continuously (>6 minutes for ETH-A). The following table suggests--from-block
values based on when thejoin
contract was deployed for some collateral types and chains.Ilk Mainnet Kovan ETH-A 8928176 14764566 ETH-B 11049708 21497286 ETH-C 12017620 23852263 BAT-A 8928185 14764576 WBTC-A 9975676 18270296 ZRX-A 10323394 19243343 KNC-A 10323392 19243288 MANA-A 10510886 19731368 USDT-A 10790625 20611963 COMP-A 10967218 20805417 LRC-A 10950762 20149845 LINK-A 10950763 20957887 BAL-A 11198616 21647334 YFI-A 11198626 21678352 UNI-A 11420948 22432437 RENBTC-A 11420957 22406388 AAVE-A 11471509 22609978 UNIV2DAIETH-A 11477786 22636280 UNIV2WBTCETH-A 11700394 n/a UNIV2USDCETH-A 11700453 n/a UNIV2DAIUSDC-A 11791208 n/a UNIV2ETHUSDT-A 11791262 n/a UNIV2WBTCDAI-A 11882262 n/a UNIV2AAVEETH-A 11882246 n/a UNIV2DAIUSDT-A 11927067 n/a -
Subscribe to TokenFlow market data, which is currently in beta. Visit https://api.mcdstate.info/ for more information.
-
Deploy a VulcanizeDB instance to maintain your own copy of urn state in PostgresQL, and then set
--vulcanize-endpoint
to your instance. If you're using a hosted Vulcanize endpoint, you can provide an API key for basic authentication with the--vulcanize-key
argument.
To start flop
auctions, the keeper needs a list of bites to queue debt. To manage performance, periodically
adjust --from-block
to the block where the first bite which has not been flog
ged.
The --min-auction
argument arbitrarily ignores older completed auctions, such that the keeper needn't check their
status. The --max-auctions
argument allows you to limit the number of bidding models created to handle active
auctions. Both switches help reduce the number of requests (not just transactions) made to the node.
Bid management can be sharded across multiple keepers by auction id. To do this, configure --shards
with the
number of keepers you will run, and a separate --shard-id
for each keeper, counting from 0. For example, to
configure three keepers, set --shards 3
and assign --shard-id 0
, --shard-id 1
, --shard-id 2
for the three
keepers. Kicks are not sharded; for an auction contract, only one keeper should be configured to kick
.
If you are sharding across multiple accounts, you may wish to have another account handle all your deal
s. The
--deal-for
argument allows you to specify a space-delimited list of accounts for which you'll deal auctions. You
may disable dealing auctions by specifying --deal-for NONE
in each of your shards. If you'd like to donate your gas
to deal auctions for all participants, --deal-for ALL
is also supported. Unlike kicks, deals are sharded, so
remove sharding configuration if running a dedicated deal keeper.
Too many pending transactions can fill up the transaction queue, causing a subsequent transaction to be dropped. By
waiting a small --bid-delay
after each bid, multiple transactions can be submitted asynchronously while still
allowing some time for older transactions to complete, freeing up the queue. Many parameters determine the appropriate
amount of time to wait. For illustration purposes, assume the queue can hold 12 transactions, and gas prices are
reasonable. In this environment, a bid delay of 1.2 seconds might provide ample time for transactions at the front of
the queue to complete. Etherscan.io can be used to view your account's pending transaction queue.
Upon startup, the keeper will clear its transaction queue. This helps recover from insufficiently-aggressive gas configuration and reduces gas-wasting transactions.
- The most expensive keepers are
clip
,flip
, andflop
keepers configured tokick
new auctions. - To prevent process churn, ensure your pricing model stays running for a reasonable amount of time.
This keeper connects to the Ethereum network using Web3.py and interacts with
the Dai Stablecoin System (DSS) using pymaker. A connection to an Ethereum node
(--rpc-host
) is required. Parity and Geth nodes are
supported over HTTP. Web3.py's WebsocketProvider
does not support
multiple threads awaiting a response from the websocket. A full or archive node is required; light nodes are not
supported.
If you don't wish to run your own Ethereum node, third-party providers are available. This software has been tested
with ChainSafe. When using Infura and kicking off clip or flip auctions,
reduce --chunk-size
to 1/10th of the default.
This project uses pytest for unit testing. Testing depends upon on a Dockerized
local testchain included in lib\pymaker\tests\config
.
In order to be able to run tests, please install development dependencies first by executing:
pip3 install -r requirements-dev.txt
You can then run all tests with:
./test.sh
See COPYING file.
YOU (MEANING ANY INDIVIDUAL OR ENTITY ACCESSING, USING OR BOTH THE SOFTWARE INCLUDED IN THIS GITHUB REPOSITORY) EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SOFTWARE IS AT YOUR SOLE RISK. THE SOFTWARE IN THIS GITHUB REPOSITORY IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. YOU RELEASE AUTHORS OR COPYRIGHT HOLDERS FROM ALL LIABILITY FOR YOU HAVING ACQUIRED OR NOT ACQUIRED CONTENT IN THIS GITHUB REPOSITORY. THE AUTHORS OR COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS CONCERNING ANY CONTENT CONTAINED IN OR ACCESSED THROUGH THE SERVICE, AND THE AUTHORS OR COPYRIGHT HOLDERS WILL NOT BE RESPONSIBLE OR LIABLE FOR THE ACCURACY, COPYRIGHT COMPLIANCE, LEGALITY OR DECENCY OF MATERIAL CONTAINED IN OR ACCESSED THROUGH THIS GITHUB REPOSITORY.