Skip to content

Glossary

rain edited this page Oct 10, 2018 · 26 revisions

Dai Glossary

General

  • guy: some address
  • wad: some quantity of tokens
  • file: administer some configuration value

Auth

  • auth: check whether an address can call this method
  • ward: an address that is allowed to call authed methods
  • rely: allow an address to call authed methods
  • deny: disallow an address from calling authed methods

CDP Engine - tune.sol/Vat

  • CDP: Collateralised Debt Position

  • gem: collateral tokens

  • dai: stablecoin tokens

  • sin: anticoin tokens

  • ilk: a collateral type

    • rate: stablecoin debt multiplier (accumulated stability fees)
    • take: collateral balance multiplier
    • Ink: total collateral balance
    • Art: total stablecoin debt
  • init: create a new collateral type

  • urn: a specific CDP

    • ink: collateral balance
    • art: stablecoin debt
  • debt: the total quantity of stablecoin

  • vice: the total quantity of anticoins

  • slip: modify a user's collateral balance

  • flux: transfer collateral between users

  • move: transfer stablecoin between users

  • tune: administer a CDP

  • grab: liquidate a CDP

  • heal: create / destroy equal quantities of stablecoin and anticoin

  • fold: modify the debt multiplier, creating / destroying corresponding debt

  • toll: modify the collateral multiplier, creating / destroying corresponding collateral

CDP User Interface - frob.sol/Pit

  • spot: collateral price with safety margin, i.e. the maximum stablecoin allowed per unit of collateral

  • line: the debt ceiling for a specific collateral type

  • Line: the total debt ceiling for all collateral types

  • frob: modify a CDP

    • lock: transfer collateral into a CDP
    • free: transfer collateral from a CDP
    • draw: increase CDP debt, creating Dai
    • wipe: decrease CDP debt, destroying Dai
  • dink: change in collateral

  • dart: change in debt

  • calm: whether the CDP remains under both collateral and total debt ceilings

  • cool: whether the stablecoin debt decreases

  • firm: whether the collateral balance increases

  • safe: whether the CDP remains under the maximum stablecoin debt for the given collateral

Stability Fees - drip.sol/Drip

  • tax: the stability fee

  • repo: global stability fee

  • rho: when this collateral type was last collected from

  • drip: determine the increase

Liquidations - bite.sol/Cat

  • chop: the liquidation penalty

  • lump: the liquidation quantity, i.e. the fixed debt quantity to be covered by any one liquidation event

  • bite: initiate liquidation of a CDP

  • flip: liquidate collateral from a CDP to cover a fixed quantity of debt

Auctions - flip,flop,flap.sol/Flipper,Flopper,Flapper

  • flip: collateral auction (selling collateral for stablecoins)

  • flop: debt auction (covering debt by inflating MKR and selling for stablecoins)

  • flap: surplus auction (selling stablecoins for MKR)

  • lot: quantity up for auction

  • bid: quantity being offered for the lot

  • guy: high bidder

  • gal: recipient of auction income

  • ttl: bid lifetime

  • beg: minimum bid increase

  • tau: maximum auction duration

  • end: when the auction will finish

  • kick: start an auction

  • tick: restart an auction

  • tend: make a bid, increasing the bid size

  • dent: make a bid, decreaseing the lot size

  • deal: claim a winning bid

Clone this wiki locally