Variable-period BOND

From DAO Governance Wiki
Jump to navigation Jump to search

A variable-period BOND is a BOND token which expires after a variable lifetime which depends on the variable payout rate. This expiration date[1] will change as the rate at which the DAO earns fees changes. This page details the design of the contracts which govern these tokens so their valuation is fair.

The three variables of payout rate, expiration time, and the value of the BOND are dependent on each other. A DAO can choose two of the variables at will, then solve for the third to determine a fair contract using REP tokenomics theory. A variable-period BOND is called a riskless BOND[2] when the period is chosen so that the token expires once the stated value is paid out. In this page we detail the expiration formulas for paying out a fixed amount or after the present value of is reached.

The results and notation from the reputation tokenomics page are used here derive the formulas under the assumptions that a DAO's underlying REP tokens have infinite lifetime and when they have finite lifetime. The page on fixed-period BONDs estimates for the expected value of under the further assumptions that the fees the DAO earns are constant.

Overview[edit | edit source]

Normal bonds issued by a government may be considered risk-free in the sense that they are guaranteed by force of law to pay out as they are advertised. DAOs can issue BOND tokens with similar contracts guaranteeing any fixed payout, which can be assured by self-executing smart contracts, as long as the DAO remains solvent. But contracts based on the REP salary, with pre-determined end dates (so-called fixed-period BONDs) and values don't guarantee a specific value will be paid out.

One way to eliminate this risk is to change the expiration date into a variable, so that it doesn't expire until the specified value is paid through the REP salary. However, even this contract still carries risk (as do normal government bonds) in the sense that the interest rate may increase during the tenor of the contract, so the fixed return on the BOND may ultimately have a lower present value than expected.

We can eliminate even this type of risk, using the basic REP tokenomics equations. We simply make the lifetime of a BOND token into a variable which is dependent on the actual fees the DAO earns, instead of the expected fees as before. The basic idea is that the variable lifetime  of a riskless BOND will grow if the fees shrink or the interest rate increases, and the lifetime will shrink if the fees grow or the interest rate decreases. Technically, a riskless contract makes the lifetime of the BOND  a stopping time of the stochastic process given by the fees and the interest rate . The smart contract governing the BOND tokens uses the record of fees to determine the expiration date dynamically, which guarantees the present value of the  BOND tokens at the time of issuance will be precisely the value advertised.

Suppose we wish to pay a developer a bounty worth . We can give them BOND tokens which pay out the same as a REP token would by participating in the REP salary. Our goal is to find formulas determining how large we should set the expiration date given the rate of payout and the value .

When we pay the developer with newly minted BOND tokens, which dilutes the total REP in the DAO as fees are now shared with the tokens. The number of tokens determines the rate of payout, as a larger means a larger share of the REP salary. The exact rate of payout for BOND token is proportional to the incoming fees as .

Mechanism design[edit | edit source]

Suppose we wish to pay a developer a bounty worth . We can give them BOND tokens which each pay out the same as a REP token by participating in the REP salary. Our goal is to find the variable stopping time formula for the expiration date given the rate of payout and the value .

When we pay the developer with newly minted BOND tokens, which dilutes the total REP in the DAO as fees are now shared with the tokens. The number of tokens determines the rate of payout, as a larger means a larger share of the REP salary. The exact rate of payout for BOND token is proportional to the incoming fees as .

The income stream for a BOND token is therefore

for time . As before,  for infinite lifetime REP tokens or if the lifetime is finite.The present value of a single BOND token is

We assume  tokens are minted to make a reward of value . We use  to denote the total number of BOND tokens that are earning reputational salaries in the DAO at any given time , which includes  and any other BOND tokens that have been minted during the relevant time period. Combining these facts gives the following result.

Proposition 7 To pay a bounty of  BOND tokens minted to have exact initial present value  make the stopping time  the random variable that satisfies the formula


This formula works under general assumptions, as long as  grows fast enough for the left-hand side of the equation to grow past the right-hand side for some . We discuss this constraint in the next section.

The result is not as deep as all the technical terminology might make it seem. The basic idea is simple. First, keep track of the random processes given by the fees , any new BOND tokens added , and the interest rate . That simply means we record the history of their values. Then the stopping time  is reached at the first time  that the above equation is satisfied. The stopping time is merely the moment we end the fees paid to the  BOND tokens. When programming the smart contract which controls this financial device, the integral simply becomes a sum, and the stopping condition is given by an IF THEN statement. The only variable that poses any difficulty in decentralized environments is the interest rate , which requires an oracle, since the other two variables,  and , are automatically recorded.

Proposition 7 gives a means for calculating the expected value and variance of the stopping time  under various assumptions on the parameters , ,  and .

Constraint on BOND issuance[edit | edit source]

In order for a BOND contract to be fully paid, the DAO must remain solvent, meaning the fees it earns must be great enough for the present value to be eventually realized. In the case of riskless BONDs the fees must satisfy the constraint

This gives a limit for how many bounties can be proposed, lest the BONDs cannot be paid if  is too small.  

For example let us assume that the lifetime of REP tokens is  and all the parameters are constant, such as the rate fees .  Assuming the group has reached REP equilibrium, we have  . Further simplify by assuming the only outstanding BONDs  are the  that are currently under consideration. Then the integral in Equation 8 may be solved to get

A DAO cannot repay a bounty that doesn’t satisfy this constraint. The limit is

which is seen by letting , because, in that case, the DAO will use all its fees to pay back the  BONDs for eternity.

Proposition 8. A DAO cannot mint bonds of value in excess of .

Conversely, solving the above constraint for  shows the rate of fees must be large enough to satisfy

or else the DAO cannot ever repay the bounty, no matter how large the stopping time. Therefore, a good rule of thumb is not to seek a bounty  from a DAO unless you can expect their fee rate to eventually far exceed .

Code[edit | edit source]

Applications[edit | edit source]

See Also[edit | edit source]

Notes and references[edit | edit source]

  1. Expiration date, lifetime, term, and period are all interchangeable terminology for the amount of time a BOND is active, denoted .
  2. This is called riskless in the comparison with the terminology associated with a government issued bond, inasmuch as the payout is algorithmically guaranteed as long as the DAO survives.