Skip to content

Commit

Permalink
blockchain protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
retotrinkler committed Nov 5, 2016
1 parent ee1e21d commit 6d61e38
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 1 deletion.
Binary file added graphs/issuance.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions graphs/issuance.m
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 added images/Melon Protocol Structure.xmind
Binary file not shown.
Binary file modified melonprotocol.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion melonprotocol.tex
Original file line number Diff line number Diff line change
Expand Up @@ -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]}
Expand Down

0 comments on commit 6d61e38

Please sign in to comment.