-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee1e21d
commit 6d61e38
Showing
5 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
clf; | ||
|
||
# Parameteres | ||
startYear = 2018; # Begin of time interval | ||
endYear = 50; # Length of time interval | ||
inf = 0.1; # Inflation | ||
initialSupply = 1.4*10.^(6); | ||
|
||
# Functions | ||
f_total_tokens = @(x) initialSupply + initialSupply*inf*x; | ||
f_inflation = @(x) initialSupply*inf ./ f_total_tokens(x); | ||
|
||
# Plot | ||
t = 0:1:endYear; | ||
ax = plotyy (t + startYear,f_total_tokens(t), t + startYear, f_inflation(t), @plot, @plot); | ||
grid on; | ||
xlabel ('Time in years starting from 2018'); | ||
ylabel (ax(1), 'Total Melon Token Supply'); | ||
ylabel (ax(2), 'Melon Token Inflation per year'); | ||
title ({'Melon Token Issuance Model'}); | ||
|
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
} | ||
\makeatother | ||
|
||
\title{Melon protocol: A Protocol for Digital Asset Management Strategies \\ {\smaller \textbf{Draft}}} | ||
\title{Melon protocol: A Blockchain Protocol for Asset Management \\ {\smaller \textbf{Draft}}} | ||
|
||
\author{Reto Trinkler} | ||
\email[Reto Trinkler]{[email protected]} | ||
|