Skip to content

Commit

Permalink
add more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mradkov committed Dec 11, 2020
1 parent f94d779 commit 981ad87
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions contracts/BondCurveLinear.aes
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ contract BondCurve =
*
* Adjust the second argument of Frac.make_frac()
* according to your fungible token decimals
*
* Example:
* - Frac.make_frac(1, 1) would mean we are working with
* the lowest possible integers.
* - Frac.make_frac(1, 1000000000000000000) - this config
* would be suitable for working with fungible tokens
* with 18 decimals.
*/
function alpha() : Frac.frac = Frac.make_frac(1, 1)

Expand Down

0 comments on commit 981ad87

Please sign in to comment.