Cover Image for MakerDAO Transactions Illustrated

MakerDAO Transactions Illustrated

Coinpath

The MakerDAO protocol is implemented as smart contracts:

Sai Tub: which accepts wrapped Ether ( WETH ) as the collateral for DAI debt.

Sai Tap: for DAI debt liquidation clearance ( DAI <-> PETH exchange of bad debts )

The MakerDAO protocol is described here. We took the text description from this source, but illustrated it by the real example of transactions, using the graphical presentation from bloxy.info web site. Every illustration is accompanied by the link to the transaction it shows. You can investigate this particular transaction by clicking the link, or investigate even further, by finding similar transactions on the contract.

We believe this material will help to better understand MakerDAO protocol and use it in all possible variety of ways.

Also Read: MakerDAO Tokens Explained: DAI, WETH, PETH, SIN, MKR

Methods Overview

All protocol methods can be categorized in categories, working with different entities:

MakerDAO Smart Contract methods

MakerDAO Smart Contract methods

They describes what in general you can do with MakerDAO system:

  1. Deposit / withdraw your Ether ( PETH Pool )
  2. Control your CDP’s ( Collateral positions ) and get a loan (in DAI) from them. This effectively controls the total supply of DAI.
  3. Liquidate debts in DAI/PETH

Join Collateral Pool

Join the collateral pool by depositing ETH in exchange for PETH (pooled ether).

  • The amount should be specified in units of PETH.
  • ETH will be debited from the caller at the join price (ask)

Join Collateral Pool

source

Exit Collateral Pool

Withdraw collateral by returning PETH to the vault in exchange for the proportional amount of ETH.

  • The amount should be specified in units of ETH.
  • PETH will be debited from the caller at the exit price (bid)

Will return more or less ETH tokens for each PETH than at join depending whether the system made a profit or loss over the lifetime of the collateral deposited to the pool.

Exit Collateral Pool

source

Open CDP

Create an empty CDP and set the caller to be the owner.

https://bloxy.info/tx/0xaf9814ac29554f2e0c7ccb0ebe87c73a343f43886bb21c10da54bef35d4b0b7b

source

Give CDP

Transfer a CDP to a different owner. (changes lad)

https://bloxy.info/tx/0xef45f2faaa0b908d57131e32e1af856c0b3c0f7e9a68222e05f00c9584cd58fe

source

Lock CDP

Add PETH collateral (increases ink).

https://bloxy.info/tx/0x8666e2871274c806b77e3b4046fa41b7a3bc02f120f0ab5f5e4f03f92c6edd39

source

More complicated case, with ETH initially converted:

https://bloxy.info/tx/0x7e5858980d985f62342828f2e3018d4cea3012312d991a3eecd78577df149294

source

Free CDP

Remove PETH collateral (decreases ink).

https://bloxy.info/tx/0x95a8e38236ba459ab0ec44bc53a4561c1626e1f08950fb92466d7ae33e4230f8

source

More complicated case, with the conversion back to ETH

https://bloxy.info/tx/0x714bee5d4c352acfe1edf5b8286ffbab46f54946a24e7c7edd1cacca41a8cfcf

source

Draw DAI

Issue a specified amount of Dai (increases art, rum)

https://bloxy.info/tx/0xa675314e644aea0320c72f3107e6cb5c427a51885999c1e42484ddbdb46ad29b

source

More complicated, with intermediary smart contract sending DAI to the guy

0xe847cd30af2826e37170ae2c736a0d0f0adc4a7f3b0e32a20f2768440d2c3f10

source

Wipe DAI

Repay some portion of outstanding Dai debt (decreases art, rum).

MakerDAO: Wipe DAI

source

More complicated case, where DAI exchanged to pay MKR fee. DEX exchange Oasis used for this:

https://bloxy.info/tx/0xc28febfa30c5233c1f0a69cc8ed0dc1c7c6dfe5809d7e18cf38bba5fb8c161c3

source

Shut CDP

Close a CDP. Clear all debt, unlock all collateral and delete the record.

Collateral will be used to pay any outstanding debt at market rate. Remaining collateral will be returned to the pool.

MakerDAO: Shut CDP

source

More complicated case, using Oasis to exchange DAI to MKR:

https://bloxy.info/tx/0x0cfcad36a457135111f4e0cfb309bc784488d066f527d8e4ab27e87b338da8e5

source

Even more complicated, with Uniswap involved:

https://bloxy.info/tx/0x38eeae65901c6ff749999b83d121d35e49a025c8d57c294f19f3d029137d2841

source

Bite CDP

Liquidate a vunerable CDP (zeros art, decreases ink).

Unsafe CDPs need to be liquidated. When a cup is not safe, anyone can perform bite(cup), which takes on all CDP debt and confiscates sufficient collateral to cover this, plus a buffer.

This returns the CDP to a safe state (possibly with zero collateral).

There are other possible implementations of bite, e.g. only taking sufficient collateral to just transition the CDP to safe, but the described implementation is chosen for simplicity.

MakerDAO : Bite CDP

source

More complicated case

https://bloxy.info/tx/0x627ff7151575daaa93c63e5bf470e58011c71c8893807ad17e1d4a09aeaa21bd

source

Boom Debt

Buy dai when the system is in surplus.

Can be thought of as buy and burn. Given a net Dai balance, sell the Dai in return for PETH, which is burned.

MakerDAO Boom Debt

source

Bust

Sell dai when the system is in deficit.

bust is really two functions in one: collateral sell off (aka flip), and inflate and sell (aka flop). When fog is non zero it is sold in return for Dai, which is used to cancel out the bad debt, woe. If fog is zero but the tap has a net Sin balance, then PETH is minted and sold in return for Dai, up to the point that the net Sin balance is zero.

bust

source

Vox Target Price

The vox provides the Dai target price, given in terms of the reference unit, by par. For example, par == 2 with USD as the reference unit implies a target price of 2 USD per Sai.

The target price can vary in time, at a rate given by way, which is the multiplicative rate of change per second.

In Dai 1.0 the sensitivity, how, is set to zero. Adjustments to the target price are made by adjusting the rate of change, way, directly with coax. In future iterations, how may be non-zero and way adjustments will then follow automatically via the feedback mechanism. The vox component is subject to ongoing economic modelling research.

MarkerDAO: Dai stablecoin

source

Cumbersome Complexity

To show an example of a REAL transaction, take a look at this:

Cumbersome Complexity

source

Apart from MakerDAO contracts, 3 DEX involved: Oasis, Uniswap and Kyber Network. This transaction orchestrated by smart contract SaverProxy.

What it does is withdraws Eth collateral, swaps Eth -> Dai with Kyber, and pays back the debt in Dai

Further Research

Bloxy.info Dashboard for MakerDAO shows interesting dynamics of the methods usage over time:

 Dashboard for MakerDAO

Bloxy.info Dashboard for MakerDAO

As different methods are used by traders for purpose, these dynamics may tell many stories about the important events and behavior in the MakerDAO ecosystem.

Subscribe to our newsletter

Subscribe and never miss any updates related to our APIs, new developments & latest news etc. Our newsletter is sent once a week on Monday.