├── .gitignore ├── LICENSE ├── NuCypher_Economic_Protocol.pdf ├── README.md ├── mint-paper.tex ├── parametrization ├── .ipynb_checkpoints │ ├── Monetary_policy_empirical_analysis-checkpoint.ipynb │ └── analysis (messy)-checkpoint.ipynb ├── Monetary_policy_empirical_analysis.ipynb ├── df_cosmos.csv ├── df_dash.csv ├── df_horizen.csv ├── df_livepeer.csv ├── df_tezos.csv └── inflation_performanceBTC.csv └── slashing-proto.tex /.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | 3 | 4 | ## Core latex/pdflatex auxiliary files: 5 | *.aux 6 | *.lof 7 | *.log 8 | *.lot 9 | *.fls 10 | *.out 11 | *.toc 12 | *.fmt 13 | *.fot 14 | *.cb 15 | *.cb2 16 | .*.lb 17 | 18 | ## Intermediate documents: 19 | *.dvi 20 | *.xdv 21 | *-converted-to.* 22 | # these rules might exclude image files for figures etc. 23 | # *.ps 24 | # *.eps 25 | # *.pdf 26 | 27 | ## Generated if empty string is given at "Please type another file name for output:" 28 | .pdf 29 | 30 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 31 | *.bbl 32 | *.bcf 33 | *.blg 34 | *-blx.aux 35 | *-blx.bib 36 | *.run.xml 37 | 38 | ## Build tool auxiliary files: 39 | *.fdb_latexmk 40 | *.synctex 41 | *.synctex(busy) 42 | *.synctex.gz 43 | *.synctex.gz(busy) 44 | *.pdfsync 45 | 46 | ## Build tool directories for auxiliary files 47 | # latexrun 48 | latex.out/ 49 | 50 | ## Auxiliary and intermediate files from other packages: 51 | # algorithms 52 | *.alg 53 | *.loa 54 | 55 | # achemso 56 | acs-*.bib 57 | 58 | # amsthm 59 | *.thm 60 | 61 | # beamer 62 | *.nav 63 | *.pre 64 | *.snm 65 | *.vrb 66 | 67 | # changes 68 | *.soc 69 | 70 | # comment 71 | *.cut 72 | 73 | # cprotect 74 | *.cpt 75 | 76 | # elsarticle (documentclass of Elsevier journals) 77 | *.spl 78 | 79 | # endnotes 80 | *.ent 81 | 82 | # fixme 83 | *.lox 84 | 85 | # feynmf/feynmp 86 | *.mf 87 | *.mp 88 | *.t[1-9] 89 | *.t[1-9][0-9] 90 | *.tfm 91 | 92 | #(r)(e)ledmac/(r)(e)ledpar 93 | *.end 94 | *.?end 95 | *.[1-9] 96 | *.[1-9][0-9] 97 | *.[1-9][0-9][0-9] 98 | *.[1-9]R 99 | *.[1-9][0-9]R 100 | *.[1-9][0-9][0-9]R 101 | *.eledsec[1-9] 102 | *.eledsec[1-9]R 103 | *.eledsec[1-9][0-9] 104 | *.eledsec[1-9][0-9]R 105 | *.eledsec[1-9][0-9][0-9] 106 | *.eledsec[1-9][0-9][0-9]R 107 | 108 | # glossaries 109 | *.acn 110 | *.acr 111 | *.glg 112 | *.glo 113 | *.gls 114 | *.glsdefs 115 | 116 | # gnuplottex 117 | *-gnuplottex-* 118 | 119 | # gregoriotex 120 | *.gaux 121 | *.gtex 122 | 123 | # htlatex 124 | *.4ct 125 | *.4tc 126 | *.idv 127 | *.lg 128 | *.trc 129 | *.xref 130 | 131 | # hyperref 132 | *.brf 133 | 134 | # knitr 135 | *-concordance.tex 136 | # TODO Comment the next line if you want to keep your tikz graphics files 137 | *.tikz 138 | *-tikzDictionary 139 | 140 | # listings 141 | *.lol 142 | 143 | # makeidx 144 | *.idx 145 | *.ilg 146 | *.ind 147 | *.ist 148 | 149 | # minitoc 150 | *.maf 151 | *.mlf 152 | *.mlt 153 | *.mtc[0-9]* 154 | *.slf[0-9]* 155 | *.slt[0-9]* 156 | *.stc[0-9]* 157 | 158 | # minted 159 | _minted* 160 | *.pyg 161 | 162 | # morewrites 163 | *.mw 164 | 165 | # nomencl 166 | *.nlg 167 | *.nlo 168 | *.nls 169 | 170 | # pax 171 | *.pax 172 | 173 | # pdfpcnotes 174 | *.pdfpc 175 | 176 | # sagetex 177 | *.sagetex.sage 178 | *.sagetex.py 179 | *.sagetex.scmd 180 | 181 | # scrwfile 182 | *.wrt 183 | 184 | # sympy 185 | *.sout 186 | *.sympy 187 | sympy-plots-for-*.tex/ 188 | 189 | # pdfcomment 190 | *.upa 191 | *.upb 192 | 193 | # pythontex 194 | *.pytxcode 195 | pythontex-files-*/ 196 | 197 | # tcolorbox 198 | *.listing 199 | 200 | # thmtools 201 | *.loe 202 | 203 | # TikZ & PGF 204 | *.dpth 205 | *.md5 206 | *.auxlock 207 | 208 | # todonotes 209 | *.tdo 210 | 211 | # vhistory 212 | *.hst 213 | *.ver 214 | 215 | # easy-todo 216 | *.lod 217 | 218 | # xcolor 219 | *.xcp 220 | 221 | # xmpincl 222 | *.xmpi 223 | 224 | # xindy 225 | *.xdy 226 | 227 | # xypic precompiled matrices 228 | *.xyc 229 | 230 | # endfloat 231 | *.ttt 232 | *.fff 233 | 234 | # Latexian 235 | TSWLatexianTemp* 236 | 237 | ## Editors: 238 | # WinEdt 239 | *.bak 240 | *.sav 241 | 242 | # Texpad 243 | .texpadtmp 244 | 245 | # LyX 246 | *.lyx~ 247 | 248 | # Kile 249 | *.backup 250 | 251 | # KBibTeX 252 | *~[0-9]* 253 | 254 | # auto folder when using emacs and auctex 255 | ./auto/* 256 | *.el 257 | 258 | # expex forward references with \gathertags 259 | *-tags.tex 260 | 261 | # standalone packages 262 | *.sta 263 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /NuCypher_Economic_Protocol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nucypher/protocol/9be4bee8132c9d16cbb00095b6156444d25f2cb8/NuCypher_Economic_Protocol.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Protocol: Open Research 2 | 3 | Following mainnet launch, the protocol governing the economics of the NuCypher network will continue to evolve. Although certain initial parameters and design choices are irreversible post-launch, there are a number of significant mechanisms that can be upgraded or augmented in order to improve security, service quality and the general health of the network. The following list introduces some open, protocol-related research topics: 4 | 5 | 1. **Pricing structure, free market dynamics and commercial engagement** 6 | 7 | The definition of a service unit (the _pricing structure_) and its cost (the _price point_) will initially be fixed and universal to all engagements between service-provider and user. However, both the pricing structure and price point may diversify over time through individual provider strategies and response to demand trends. This research area refers to the means by which the protocol facilitates or restricts NuCypher's free market, for example via mechanisms enabling users to efficiently discover prices, or by providing a choice of pricing structures to providers. Relevant discussions: https://github.com/nucypher/protocol/issues/14, https://github.com/nucypher/nucypher/issues/1567, https://github.com/nucypher/protocol/issues/7 8 | 9 | 2. **Payment tooling** 10 | 11 | This refers to upgrading the process through which users settle their bills, for example via probabilistic and/or conditional micro-payments. Relevant discussion: https://github.com/nucypher/protocol/issues/15 12 | 13 | 3. **Slashing conditions and penalty calculation** 14 | 15 | Incorrect re-encryptions can be provably detected and punished. However, the exact basis on which a service-provider is penalized (e.g. per incorrect request vs. per policy), the severity of punishment, and the inputs to the penalty calculation itself (for example, computing based on a percentage of locked stake, an absolute/universal figure, or both), are all open research questions. Relevant discussion: https://github.com/nucypher/protocol/issues/12 16 | 17 | 4. **Subsidies and service quality** 18 | 19 | The action required to earn subsidies (inflationary rewards) does not align perfectly with actual work performed on behalf of users, which risks some service-providers configuring their machines to execute the bare minimum required to collect the subsidy, and neglecting real service requests from users (e.g. by being offline). Relevant discussions: https://github.com/nucypher/nucypher/issues/1272, https://github.com/nucypher/protocol/issues/13 20 | 21 | 5. **Service-provider selection conditions** 22 | 23 | The probability with which a service-provider is selected for a job can be leveraged as a low-risk nudge towards good behavior. 24 | Relevant discussions: https://github.com/nucypher/protocol/issues/9 25 | 26 | 27 | If you are interested in submitting ideas, analysis or in-depth feedback pertaining to one or more of these topics, as part of the Technical Contributions phase of the incentivized testnet (Come and Stake it), please drop us a email at submissions@nucypher.com. Summarize what you'd like to work on and we'll get back to you. These problems are not easy or quick to solve, so before getting stuck in, it’s worth checking with us that your work has the potential to be useful and/or qualify for a prize. Remember to include the email, name, and ETH staking address you used to register for Come and Stake It. We reserve the sole right to determine how valuable a specific contribution is. 28 | 29 | In addition to perusing the links above, we recommend searching for discussions in our public Discord channels – in particular, to check if a question you have has already been answered. Note that in NuCypher repositories and discussion channels _service-providers_ are also often referred to as 'Ursulas', 'stakers', 'workers', 'proxies' and just 'providers'. 30 | 31 | ---- 32 | 33 | ### Protocol: Mint Paper (in progress) 34 | 35 | A paper documenting the protocol/economic mechanisms and parameters associated with the NuCypher network that have been implemented, deployed or established with some stability. This does not exclude mechanisms that may change later, but this would necessitate an update to the paper. Sources are in Latex. 36 | 37 | 38 | -------------------------------------------------------------------------------- /mint-paper.tex: -------------------------------------------------------------------------------- 1 | \documentclass[11pt]{amsart} 2 | \usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots. 3 | \geometry{letterpaper} % ... or a4paper or a5paper or ... 4 | %\geometry{landscape} % Activate for for rotated page geometry 5 | %\usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent 6 | \usepackage{graphicx} 7 | \usepackage{amssymb} 8 | \usepackage{epstopdf} 9 | \DeclareGraphicsRule{.tif}{png}{.png}{`convert #1 `dirname #1`/`basename #1 .tif`.png} 10 | 11 | \usepackage{xcolor} 12 | \definecolor{magicmint}{rgb}{0.67, 0.94, 0.82} 13 | \title{NuCypher: Economic Protocol} 14 | \author{The Author} 15 | %\date{} % Activate to display a given date or no date 16 | 17 | \begin{document} 18 | \pagecolor{magicmint!30} 19 | \maketitle 20 | 21 | \section{Context: the Network Service and Workers}\label{context} 22 | 23 | The NuCypher network's primary purpose is to provide a {\it decentralized access control service} to adopters. \textit{Adopters} are a catch-all term for the developers and purveyors of various technological applications and systems, including but not limited to: consumer-facing applications (e.g. a genomic record management app), platforms (e.g. a marketplace for mobile browsing data), Web 3 infrastructure (e.g. a decentralized database-as-a-service), games (e.g. a digital collectible card game) and other multi-endpoint systems (e.g. intra-vehicle data sharing via IOT devices). 24 | \\ 25 | \\ 26 | NuCypher network nodes, hereafter referred to as \textit{workers}, are an indispensable component of this access control service. Distributed around the world, workers run NuCypher software on their machines in order to facilitate data sharing flows within adopters' applications and systems. This involves enforcing permissions, initially chosen by data owners, that enable access to their encrypted data payloads. More specifically, workers transform ciphertexts associated with the underlying data, such that they are then decryptable by valid recipients. Data owners can also program the enforcement to be based on the fulfillment of certain conditions. In some respects, this service can be compared to a large-scale key management system (e.g. Amazon Web Services KMS), but critically, every sharing flow is end-to-end encrypted and thus does not imply trust in the security or integrity of a centralized third-party or data custodian. 27 | \\ 28 | \\ 29 | Workers have three main duties: 30 | \begin{enumerate} 31 | \item Being reliably online at all times, in order to respond to access requests or receive new sharing policies 32 | \item Securely holding onto sharing policies (objects providing the rules and parameters for access to data) and their corresponding {\it re-encryption key fragments} 33 | \item Performing {\it re-encryptions} (enforcing a permission) in response to legitimate access requests 34 | \end{enumerate} 35 | Workers are compensated for these efforts through \textit{fees} (denominated in ETH), paid for by adopters. These costs can optionally be passed on to the end-users of adopting applications. As of April 2019, sharing policies are priced exclusively based on their duration, and one policy is required for each designated recipient (one policy per public key). In practice, this means the cost to an adopter for a given sharing flow depends on the number of recipients and for how long they need access. However, in forthcoming versions, the number of access requests associated with a sharing policy may also influence the sum charged, and a single policy may grant access to multiple recipients. The details of current and future payment models are covered in later sections. 36 | 37 | Because some adopters will require sharing policies that last for extended periods (e.g. for over 6 months), it is critical that worker availability is highly predictable. In other words, workers should not be assigned an access management job if they haven't committed to work for at least the duration of the associated sharing policy. 38 | \\ 39 | \\ 40 | Workers need not be trusted with the underlying private data, given that the objects they hold do not give them this power or permission. Additionally, a single permission update typically involves multiple workers, each of whom only handles fragments of keys and ciphertexts, such that a unilateral refusal to execute one's assignment is almost always inconsequential to the end-user (i.e. the user of an adopting application is unlikely to be affected). Nonetheless, it is possible for workers to \textit{misbehave}, including the following offenses: 41 | \begin{enumerate} 42 | \item Refusing to re-encrypt following a legitimate access request 43 | \item Generating an incorrect re-encrypted ciphertext for the data recipient 44 | \item Being offline at any time (hence risking the disruption of a sharing flow or access request) 45 | \item Colluding with other nodes and the designated recipient(s) to collectively derive a data owner’s private key (note: the extreme difficulty of orchestrating this attack is detailed in later sections) 46 | \end{enumerate} 47 | 48 | 49 | \section{Objectives of the Economic Protocol} 50 | 51 | Though the economic protocol is a means to prevent or minimize worker misbehavior introduced in Section \ref{context}, this alone is an oversimplification. Economic design choices have a far broader impact, and affect everything from the network's market capitalization to the geographical distribution of workers. 52 | \\ 53 | Hence, all economic mechanisms and strategies (already implemented, or to be implemented) should address one or more high-level network objectives. Note that some objectives align, clash or are \textit{sub-goals} of one another; nonetheless, each is evaluated individually here. 54 | \\ 55 | \begin{enumerate} 56 | \item \textbf{Maximize network adopter acquisition and retention}\label{adoption} 57 | \\ 58 | Increasing, retaining and diversifying a pool of adopters is the NuCypher network's highest priority. This objective can be broken into the following endeavors: 59 | \begin{enumerate} 60 | \item Maximizing the quality of service. This sustains the network via retention of satisfied adopters and grows the pool via their recommendations. Service quality can be understood in terms of reliability, security, friction (lack of) and cost-effectiveness, which are explored as distinct objectives later in this section. 61 | \item Maximizing the network's exposure to non-adopters. For the adopter pool to grow, developers of relevant applications must be aware of the service. A historically popular means of bootstrapping marketing efforts has involved leveraging the network effects of speculation on a freely tradeable native token, where the presence of a liquid asset on exchanges, in media, and on forums/other channels provides free exposure to purportedly relevant audiences. However, prominence of this kind is arguably skewed towards networks with the largest market capitalizations, since they are the most liquid, boast the most interested parties and get disproportionate media coverage as a result. A token with a realistic market cap may be more financially and reputationally sustainable, but may not garner the same notoriety. It's worth noting that for some projects, a large market cap and associated name-recognition has not translated into high-quality adoption, and in some cases ostensible over-valuation has dissuaded developers from building in their ecosystem. 62 | \item Maximize the service's competitive edge. Given that the entirety of NuCypher technology (cryptography, system architecture, code, etc.) is necessarily open source, the barrier impeding a competitor from product replication is rather feeble. A competitive advantage, as perceived by adopters or would-be adopters, is the superior quality of service relative to that of similar or copycat projects. Whether a competitive advantage, such as greater reliability, is realized and maintained, is determined in part by the aggregate decision-making of the network's workers. Moreover, while code can be cloned, competent workers are a finite resource. Operating nodes in multiple networks is possible, but capital and hardware constraints limit this. By way of illustration, imagine if a large swathe of workers decided to abandon the NuCypher network in unison. This would harm the perceived and actual reliability of the service, and potentially boost a competing network via a migration of new service-providers. Conversely, if a large swathe of workers decided to formally commit their efforts to the network for an extended time period, this solidifies the service's perceived and actual reliability, and makes it more difficult for another network to attract those workers (since they now have capital locked up in the NuCypher network). These collective decisions are strongly influenced by the network's economic design. 63 | \end{enumerate} 64 | In summary, the network must aspire towards an inimitable reputation, flexible capacity and recognized stability. These attributes are partially a function of worker decisions (and the alignment of their self-interest with the network's health), the populating and maintenance of whom requires a sensible economic protocol. 65 | \\ 66 | \item \textbf{Ensure a highly reliable service (liveness)}\label{reliable} 67 | \\ 68 | From an adopter perspective, this objective is straightforward to describe. If an access request is submitted to the network, it should be answered immediately and correctly, at or very near network latency, and without fail. From a network perspective, ensuring this level of reliability must take into account, at a minimum, the following factors: 69 | \begin{enumerate} 70 | \item Individual worker behavior or misbehavior. For example, if a set of workers coordinate their refusal to re-encrypt. Alternatively, if a large percentage become apathetic and start cutting corners, for example by confirming their service for an upcoming period but then being offline for all or part of that period. 71 | \item The overall volume of worker participation. In other words, if demand outstrips supply, then sharing flows may be put on hold. This is unlikely to occur from a pure capacity perspective, but is possible if an adopter requires a large number of independent workers to concurrently manage access in their application. 72 | \item The distribution of worker commitment. For example, if there are insufficient workers committed to providing the service for a duration required by an adopter. 73 | \end{enumerate} 74 | See objective \ref{part} for more on worker participation. 75 | \\ 76 | \item \textbf{Ensure a highly secure service}\label{secure} 77 | \\ 78 | In the context of any trustless access control service, the most important notion of \textit{secure} is as follows; private user data cannot be accessed by non-designated parties at any time, including the workers that enforce access. In NuCypher's case, this warranty is achieved via pure cryptographic guarantees, with no direct relation to economics. However, there are secondary security notions germane to economic design; including the mitigation of \textit{denial-of-service} and \textit{censorship} attacks. Furthermore, there is a relationship between the security of a sharing flow and the number of workers assigned the access control job, which means that the overall volume of worker participation can have a bearing on the upper bound of network security. 79 | \\ 80 | \item \textbf{Ensure a low-friction and cost-effective service}\label{friction} 81 | \\ 82 | This objective refers to the practicality of integrating the network's service into an adopter's application. The manner in which an adopter pays workers is highly relevant here, including the currency in which fees are paid, and the aspects of the service that are chargeable. Zooming out, there is also a natural tension between the affordability of the service to adopters and the affordability/desirability to provide the service as a worker. The exact fee model has huge consequences for the revenue workers can earn from fees (objective \ref{profit}), which turn impacts the parameterization of mechanisms for worker non-fee compensation, such as rewards. Fee models are explored in greater detail in objective \ref{profit}. 83 | \\ 84 | \item \textbf{Ensure predictable and healthy worker participation/commitment}\label{part} 85 | \\ 86 | A \textit{participating worker} can be defined as one who has committed some minimum sum of capital (denominated in the native token) to the network for some non-trivial period of time (e.g. 1 month). In other words, a service-provider with a locked security deposit. Overall participation can then be measured in absolute terms, by the total value of committed capital to the network by workers, or in relative terms, by the percentage of the total network capitalization that is committed at a given moment. With regard to the latter, it is unclear what percentage constitutes a \textit{healthy} participation rate. There is a positive relationship between participation and objectives \ref{reliable} and \ref{secure}, but overly high participation rates may clash with objective \ref{liquid}, because committed capital is by definition non-liquid. This in turn impacts objective \ref{decent}, where a lack of freely traded tokens can mean that the total number of independent workers does not grow sufficiently to maintain or increase the network's decentralization. High participation rates also dilute worker income, as explored in objective \ref{profit}.z` 87 | \\ 88 | \\ 89 | For a given worker in a given moment, their decisions to participate and for how long, will (at the very least) be influenced by : 90 | \begin{enumerate} 91 | \item Their historical balance sheet, in fiat, with respect to service provision, itself determined by: 92 | \begin{enumerate} 93 | \item Overheads associated with service provision. This is dominated by 1. changes to the cost of internet connection (i.e. is increased bandwidth required to be a reliable worker) and 2. the cost of electricity to keep a capable machine online at all times. 94 | \item Revenue earned via a combination of rewards and fees. 95 | \item The exchange rate between the multiple digital tokens in which the worker is remunerated and the local fiat currency. 96 | \end{enumerate} 97 | \item Trends in demand for the service. This is not completely transparent to workers, as fees earned are both a function of demand and the worker's relative ownership of the network. They may be able to glean demand from other sources, such as project announcements and third-party commentary. 98 | \item The price of the native token and its recent trends. 99 | \item The attractiveness of other networks with respect to their epoch (a new network may offer greater rewards), general payouts, ease of participation, trends in their demand and other general prospects for growth. 100 | \item Sunk costs that cannot be re-purposed. Given the limited hardware requirements, much of this cost is time spent on research, financial/risk evaluation, machine set-up and configuration in advance of becoming a network worker. 101 | \item The current state of the worker's committed capital. In other words, what percentage is convertible into fiat, and what percentage is locked. 102 | \item The current stage of the reward/inflation schedule, if it is sufficiently predictable. 103 | \end{enumerate} 104 | Note: because workers have the freedom to commit their capital across a range of durations, participation must be measured as the aggregate of capital across the possible units of commitment. 105 | \\ 106 | \item \textbf{Ensure meaningful and consistent worker profit}\label{profit} 107 | \\ 108 | As covered in objective \ref{part}, the month-to-month income for each worker is undoubtedly impactful on participation. But, it may affect their behavior in general, such that losses or low profits lead to apathy or other forms of misbehavior. 109 | \\ 110 | Distributing meaningful and consistent profits requires careful reward parameterization and scheduling. And, since access management work is divvied up among participating workers, based on the relative size of their committed capital, worker \textit{employment} is strongly affected by the participation rate, and therefore, so is income from fees. It would be desirable to tune participation such that supply does not dwarf demand for extended periods, particularly at epochs where reward-based incomes are negligible. 111 | \\ 112 | \item \textbf{Minimize worker apathy and attrition}\label{attrition} 113 | \\ 114 | Worker \textit{apathy} is a shorthand for a level of disinterest or non-commitment to the network that can cause a severe behavior change, such as misbehaving or quitting the network. The latter is related to, but distinct from, worker participation, as attrition refers to the percentage of workers who leave their role as a service-provider for good. High attrition rates are particularly risky if the reasons for quitting also repel new workers, or the pool of competent would-be workers approaches an exhausted state. 115 | \\ 116 | Attrition may correlate to the size and consistency of worker profits, but is not exclusively driven by this. For example, if rewards are set too high initially, a rational worker may temporarily enjoy large personal gains, but also come to the conclusion that the token supply has been mismanaged, that their prospects for long-term profits are weak, and lose faith in the project altogether. 117 | \\ 118 | \item \textbf{Steadily accrue value to native token} \label{value} 119 | \\ 120 | The fiat value of the native token is important because, as explored in objective \ref{part}, it strongly affects real-world economic outcomes for workers. It's worth noting that while workers are paid in digital tokens, their overheads (electricity, etc.) are charged in fiat. 121 | \\ 122 | The volatility of the token's price is similarly important to workers, as strong uncertainty over the value of future payouts makes planning future service provision very difficult. This uncertainty will be reflected directly in the average duration of capital commitment, if the risks of extreme depreciation render long-term locking of capital an irrational choice. 123 | \\ 124 | A steady growth in the value of the native token might be regarded as a by-product of network success, rather than an objective in itself. However, the growth in value is affected by multiple adjustable factors, including the initial token supply, the inflation rate and decay, the payment/fee model, the market formation, and of course the highest-priority objective, the rate of network adoption. The ideal scenario is that the quantity of fees paid into the network grows so large that acquiring the native token in order to become a worker makes economic sense, despite the value it has accrued since network launch. 125 | \\ 126 | \item \textbf{Ensure appropriate token liquidity}\label{liquid} 127 | \\ 128 | Though we may question the link between token liquidity and the acquisition of network adopters, there are firmer reasons for maintaining a sufficiently deep liquidity pool, including: 129 | \begin{enumerate} 130 | \item Avoiding a general increase in volatility caused by thin markets. 131 | \item Avoiding the network being held hostage by a small number of token holders who control a large proportion of the available tokens. 132 | \item Allowing new actors to easily, quickly and affordably purchase tokens in order to become workers, thereby increasing network decentralization beyond the initial token distribution. 133 | \end{enumerate} 134 | Liquidity is partially determined by many external and non-controllable factors, such as the actions of third-party exchanges. However, token holders can be discouraged from trading tokens if the allure of locking the capital is too great, given the size of payouts or other incentives. Some token-holders are already geared towards trading rather than service provision, but it's worth remembering that the practical hurdles to switching between the two are not particularly high from a hardware or expertise point of view. Therefore, it is worth weighing the possible returns from trading and/or market making, against the equivalent from service provision as a worker, to avoid pulling all token holders into one camp or another. 135 | \\ 136 | \item \textbf{Maximize and maintain network decentralization and openness}\label{decent} 137 | \\ 138 | This objective refers to the heterogeneity of active workers, with respect to their geographical location, and to a lesser extent to their capabilities (hardware and skills). Of equal importance is the distribution of wealth, (measured by the \textit{Gini coefficient}), where a concentration of tokens in few hands is highly undesirable. 139 | \\ 140 | A large number of workers, located in a wide variety of political, economic and social circumstances, bestow the network strong resilience along a number of planes. From a security point of view, a key threat to the network (detailed in objective \ref{threats}) becomes exponentially more difficult to orchestrate when workers are broadly distributed around the world. Looking at worker participation, if workers represent a set of countries with diverse purchasing power (or a similar metric like average salaries), this increases the network's ability to survive periods of low payouts. Revenue which would be irrelevant to some workers is economically worthwhile to those with far lower overheads and alternative incomes. 141 | \\ 142 | The decentralization of workers is greatly affected by the token distribution mechanism chosen at network launch, during which the goal is generally to get tokens into as many hands as possible. However, subsequent mechanisms can also provide an antidote to poor initial distributions but will tend to rely on sufficient token liquidity. 143 | \\ 144 | \item \textbf{Minimize or extinguish security threats to network}\label{threats} 145 | \\ 146 | Although some threats to the network can be regarded as \textit{unknown unknowns}, and are therefore difficult to legislate against, we can begin with plausible adversarial motives. One such motive may be to impede the users of specific adopting applications from sharing data. For instance, let's examine a case where an undercover journalist is attempting to share data with a news outlet, and there are a set of workers controlled by the adversary, an evil regime. To have a chance of blocking the story from being shared, they would need to control a large proportion of the network – otherwise there’s no way to ensure their workers will be assigned the relevant sharing policy. In theory, if the first message is blocked, the journalist could repeatedly re-issue sharing policies, each with a new, random set of workers – and eventually the message would be re-encrypted by an honest/uncontrolled worker. The cost and difficulty of controlling a sufficient number of workers depends on the network’s stage of growth, but this prerequisite prices out most adversaries. The adversary may instead attempt to bribe as many workers as possible. This is logistically more feasible, as it does not depend on each target workers’s willingness or ability to sell their tokens at a given moment (their tokens may be locked for a time period so long as to render the attack pointless). Bribe recipients may demand compensation equal to the loss of expected income (rewards + fees), plus some motivating premium. 147 | \\ 148 | Regardless of how the adversary seeks control, they will need to identify and convince existing workers to cooperate (selling their tokens or accepting a bribe). In both cases, this attack is easier to achieve earlier in the lifetime of the network, when there are fewer workers to approach, they are less spread out, and the total market cap, and therefore cost of attack, is likely to be lower. Importantly, in all these cases, it would be expedient for the attacker to instruct their bribed workers to simply go offline, rather than re-encrypt incorrectly, since the protocol cannot (yet) differentiate between lazy, DDoS-ed and malicious workers who fail to answer requests, and this approach costs the corrupt workers far less while achieving the adversary's goal. 149 | \\ 150 | \item \textbf{Maximize network protocol upgradeability}\label{upgrade} 151 | \\ 152 | \item \textbf{Ensure decentralized governance}\label{gov} 153 | \end{enumerate} 154 | 155 | \section{Staking, Payouts and Slashing: Overview} 156 | 157 | Initially, payouts from fees alone are unlikely to incentivize a sufficient number of would-be workers to join the network. Though the cost of performing re-encryptions are quite low, in the early stages of the network, so too will the revenue from fees. Hence, until demand for decentralized access control has reached a stable growth phase, an inflation-based subsidy is necessary to motivate workers. 158 | \\ 159 | \\ 160 | To incentivize predictable behavior, and disincentize misbehavior, in particular the first three offenses listed in Section \ref{context}, workers are required to stake a native token ({\it NU}) by locking it for a predefined time period. This commitment of capital, which cannot be reversed until the chosen unlock date, enables them to participate in the network and receive access control jobs. Stakes function as a collateral that can be reduced (hereafter: {\it slashed}) in the event of a provable offense. 161 | \\ 162 | \\ 163 | Stakes represent an initial deposit of non-trivial value, and will increase in value if rewards are {\it re-staked} by the worker over time. Access control jobs are assigned proportionally to the size of a worker's stake, relative to the aggregate of all current stakes in the network. Similarly, a worker's reward payout depends on the relative size of their stake, with coefficients based on other factors such as the length of their committed service to the network. 164 | 165 | \section{Evaluation of Existing and Historical Economic Protocols} 166 | 167 | %\subsection{} 168 | 169 | \appendix 170 | 171 | % The slashing protocol 172 | \input{slashing-proto.tex} 173 | 174 | \end{document} -------------------------------------------------------------------------------- /parametrization/.ipynb_checkpoints/analysis (messy)-checkpoint.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [], 3 | "metadata": {}, 4 | "nbformat": 4, 5 | "nbformat_minor": 2 6 | } 7 | -------------------------------------------------------------------------------- /parametrization/df_cosmos.csv: -------------------------------------------------------------------------------- 1 | circulating_supply,currency,inflation,inflation_total,real_yield,staked_supply,staking_rate,timestamp,total_supply,yield,open,high,low,close,volume,market_cap 250582206,Cosmos,0.064901,0.064901,0.0227,182585168,0.72864,2020-01-27T23:25:42.344731,250582206,0.08907,4.48,4.67,4.43,4.52,166514161,861473073 250537641,Cosmos,0.064949,0.064949,0.02229,183487046,0.73237,2020-01-26T23:25:46.555434,250537641,0.08868,4.41,4.5,4.37,4.48,131819511,854395418 250493304,Cosmos,0.065009,0.065009,0.02221,183659143,0.73319,2020-01-25T23:25:48.843186,250493304,0.08867,4.49,4.49,4.37,4.42,132055630,841901879 250449004,Cosmos,0.065068,0.065068,0.02147,185320060,0.73995,2020-01-24T23:25:51.935283,250449004,0.08794,4.45,4.52,4.35,4.48,161825964,855148282 189316335,Cosmos,0.06514,0.06514,0.00134,185260368,0.97858,2020-01-23T23:25:53.337892,189316335,0.06657,4.65,4.68,4.38,4.44,157800493,847521481 189272857,Cosmos,0.065205,0.065205,0.00137,185115898,0.97804,2020-01-22T23:25:37.887936,189272857,0.06667,4.64,4.69,4.57,4.65,131623772,887094362 189180931,Cosmos,0.065261,0.065261,0.0014,184943874,0.9776,2020-01-21T23:25:43.215278,189180931,0.06676,4.5,4.73,4.46,4.65,138311353,886592072 189161651,Cosmos,0.065338,0.065338,0.00137,185019119,0.9781,2020-01-20T23:25:51.228205,189161651,0.0668,4.51,4.66,4.42,4.51,142814531,859109294 189121614,Cosmos,0.065408,0.065408,0.00132,185133281,0.97891,2020-01-19T23:25:49.438944,189121614,0.06682,4.64,4.76,4.39,4.52,195479921,861648060 189092983,Cosmos,0.065481,0.065481,0.00127,185252241,0.97969,2020-01-18T23:25:42.161201,189092983,0.06684,5,5,4.62,4.63,218755859,883526141 189109288,Cosmos,0.065546,0.065546,0.00127,185279166,0.97975,2020-01-17T23:25:39.787088,189109288,0.0669,5.1,5.29,4.77,5,314099418,953671093 188635519,Cosmos,0.065628,0.065628,0.00116,185135901,0.98145,2020-01-16T23:25:43.812219,188635519,0.06687,4.57,5.2,4.2,5.08,292509993,967992098 188592665,Cosmos,0.065696,0.065696,0.00107,185367471,0.9829,2020-01-15T23:25:39.568738,188592665,0.06684,4.54,4.93,4.4,4.57,256937834,871045052 188569167,Cosmos,0.065777,0.065777,0.00101,185530276,0.98388,2020-01-14T23:25:42.914046,188569167,0.06685,4.25,4.67,4.24,4.54,218081722,865707914 188522728,Cosmos,0.065854,0.065854,0.00094,185688026,0.98496,2020-01-13T23:25:41.521024,188522728,0.06686,4.26,4.33,4.13,4.26,112376034,811564036 188618028,Cosmos,0.065922,0.065922,0.00089,185950697,0.98586,2020-01-12T23:25:36.115299,188618028,0.06687,4.27,4.35,4.23,4.26,114480179,812887020 188557575,Cosmos,0.065964,0.065964,0.00089,185882601,0.98581,2020-01-11T23:25:43.710720,188557575,0.06691,4.26,4.43,4.26,4.28,134305838,815227389 188510656,Cosmos,0.066016,0.066016,0.00081,186076855,0.98709,2020-01-10T23:25:43.657154,188510656,0.06688,4.26,4.45,4.21,4.26,180537539,813022082 188477505,Cosmos,0.066066,0.066066,0.00075,186228690,0.98807,2020-01-09T23:25:48.176056,188477505,0.06686,4.01,4.26,3.96,4.26,137133708,812941170 188987463,Cosmos,0.066113,0.066113,0.001,186000166,0.98419,2020-01-08T23:28:38.946033,188987463,0.06717,4.09,4.18,4,4.01,128484380,764782468 189070771,Cosmos,0.066172,0.066172,0.00101,186055234,0.98405,2020-01-07T23:25:40.170236,189070771,0.06724,4.11,4.25,4.07,4.1,136691939,781067565 189253801,Cosmos,0.066234,0.066234,0.00101,186237677,0.98406,2020-01-06T23:25:36.472419,189253801,0.06731,4.23,4.25,4.05,4.1,139523351,782765024 189593110,Cosmos,0.066314,0.066314,0.0011,186293554,0.9826,2020-01-05T23:25:47.036603,189593110,0.06749,4.28,4.4,4.22,4.23,115399788,806970072 190217537,Cosmos,0.0664,0.0664,0.00131,186284011,0.97932,2020-01-04T23:25:44.122105,190217537,0.0678,4.25,4.39,4.23,4.29,90718305,817358521 190181747,Cosmos,0.066466,0.066466,0.00131,186257390,0.97936,2020-01-03T23:26:05.900091,190181747,0.06787,4.11,4.36,4.02,4.25,138617691,810024888 190332935,Cosmos,0.066535,0.066535,0.00132,186392616,0.9793,2020-01-02T23:25:43.644342,190332935,0.06794,4.38,4.38,4.08,4.09,111325337,780262140 190519375,Cosmos,0.066581,0.066581,0.00136,186469883,0.97874,2020-01-01T23:25:36.965678,190519375,0.06803,4.22,4.47,4.2,4.38,107994513,835245527 190469429,Cosmos,0.066633,0.066633,0.00133,186489589,0.9791,2019-12-31T23:25:43.688361,190469429,0.06806,4.19,4.33,4.13,4.22,109928104,804079143 190743087,Cosmos,0.066703,0.066703,0.00142,186498621,0.97775,2019-12-30T23:25:44.552967,190743087,0.06822,4.27,4.42,4.15,4.19,126896246,799024500 191265759,Cosmos,0.066759,0.066759,0.0016,186489654,0.97503,2019-12-29T23:25:44.299957,191265759,0.06847,4.41,4.54,4.25,4.27,125572029,813804081 191099042,Cosmos,0.066812,0.066812,0.0016,186332843,0.97506,2019-12-28T23:25:44.219880,191099042,0.06852,4.52,4.72,4.41,4.41,117069172,840180977 191013470,Cosmos,0.066877,0.066877,0.0016,186260305,0.97512,2019-12-27T23:25:49.160925,191013470,0.06858,4.57,4.76,4.49,4.52,132653447,861978946 190944289,Cosmos,0.066928,0.066928,0.00161,186167377,0.97498,2019-12-26T23:25:44.680307,190944289,0.06865,4.3,4.62,4.3,4.58,139848139,873061135 192458018,Cosmos,0.066991,0.066991,0.00215,186072661,0.96682,2019-12-25T23:25:40.740237,192458018,0.06929,4.42,4.42,4.21,4.3,104967612,820436002 191952405,Cosmos,0.067044,0.067044,0.00221,185434114,0.96604,2019-12-24T23:25:42.373707,191952405,0.0694,4.31,4.48,4.26,4.42,127112410,843489942 191832354,Cosmos,0.067099,0.067099,0.00218,185415904,0.96655,2019-12-23T23:25:43.077942,191832354,0.06942,4.27,4.35,4.17,4.3,133651317,820276987 191089439,Cosmos,0.067148,0.067148,0.0022,184621436,0.96615,2019-12-22T23:25:43.839132,191089439,0.0695,4.09,4.28,4.08,4.27,119057895,814002309 191335669,Cosmos,0.067194,0.067194,0.0023,184606571,0.96483,2019-12-21T23:25:51.099246,191335669,0.06964,4.32,4.35,4.07,4.09,111080887,779582076 191296609,Cosmos,0.067237,0.067237,0.00229,184583128,0.9649,2019-12-20T23:25:44.120113,191296609,0.06968,4.29,4.38,4.19,4.31,142056809,822749311 191184852,Cosmos,0.067279,0.067279,0.00231,184419292,0.96461,2019-12-19T23:25:50.675228,191184852,0.06975,4.3,4.37,4.08,4.29,149541020,817804301 191207503,Cosmos,0.067324,0.067324,0.00206,185157086,0.96836,2019-12-18T23:25:47.169936,191207503,0.06952,3.61,4.46,3.6,4.3,260235131,820891581 191242460,Cosmos,0.067368,0.067368,0.00206,185208575,0.96845,2019-12-17T23:25:44.439743,191242460,0.06956,4.08,4.15,3.57,3.63,216347353,691687130 191721062,Cosmos,0.067407,0.067407,0.0022,185280226,0.9664,2019-12-16T23:25:43.966525,191721062,0.06975,4.49,4.5,4.06,4.08,207850289,777998924 248451792,Cosmos,0.067948,0.067948,0.02119,186385424,0.75019,2019-12-11T14:25:36.223498,248451792,0.09058,3.6,3.84,3.59,3.81,199495756,727362979 248423034,Cosmos,0.067977,0.067977,0.02119,186370145,0.75021,2019-12-10T23:25:49.320221,248423034,0.09061,3.7,3.73,3.55,3.6,207259326,686204619 248376989,Cosmos,0.068022,0.068022,0.02129,186155706,0.74949,2019-12-09T23:26:45.666295,248376989,0.09076,3.95,3.97,3.68,3.71,216632529,706522307 248330794,Cosmos,0.068065,0.068065,0.02111,186545468,0.7512,2019-12-08T23:25:52.130870,248330794,0.09061,3.81,4,3.74,3.95,201085483,752311274 248284445,Cosmos,0.068101,0.068101,0.02117,186404742,0.75077,2019-12-07T23:25:53.299324,248284445,0.09071,3.67,3.88,3.66,3.81,197409951,725664435 248238123,Cosmos,0.068137,0.068137,0.02121,186288580,0.75044,2019-12-06T23:25:44.960744,248238123,0.0908,3.52,3.69,3.51,3.67,182348856,699673035 248191743,Cosmos,0.068174,0.068174,0.02126,186172969,0.75012,2019-12-05T23:25:45.165470,248191743,0.09088,3.59,3.72,3.49,3.53,181266106,673233028 248145316,Cosmos,0.068215,0.068215,0.02066,187495693,0.75559,2019-12-04T23:25:50.267447,248145316,0.09028,3.69,3.74,3.46,3.6,188222589,686314900 248098889,Cosmos,0.06826,0.06826,0.02062,187566578,0.75602,2019-12-03T23:25:55.044720,248098889,0.09029,3.68,3.8,3.65,3.7,144705352,705977051 248052438,Cosmos,0.068303,0.068303,0.02204,184463150,0.74365,2019-12-02T23:26:03.428696,248052438,0.09185,3.79,3.93,3.62,3.68,151160801,702017417 248005884,Cosmos,0.068338,0.068338,0.02199,184566291,0.7442,2019-12-01T23:25:56.248742,248005884,0.09183,3.92,3.93,3.66,3.81,175883739,726017955 247959374,Cosmos,0.068371,0.068371,0.02188,184789509,0.74524,2019-11-30T23:26:09.475562,247959374,0.09174,4.02,4.1,3.83,3.93,160886605,748553792 247912847,Cosmos,0.068388,0.068388,0.02188,184752141,0.74523,2019-11-29T23:25:56.799514,247912847,0.09177,3.69,4.06,3.68,4.01,183110184,765177996 247866371,Cosmos,0.068401,0.068401,0.02201,184462183,0.7442,2019-11-28T23:26:03.714650,247866371,0.09191,3.58,3.79,3.53,3.69,145107303,703065720 247819906,Cosmos,0.068421,0.068421,0.02303,182267123,0.73548,2019-11-27T23:25:49.719751,247819906,0.09303,3.5,3.76,3.31,3.58,179601320,683546815 247773519,Cosmos,0.068443,0.068443,0.02308,182157506,0.73518,2019-11-26T23:26:12.798573,247773519,0.0931,3.41,3.66,3.39,3.51,166612606,669041544 247727022,Cosmos,0.068461,0.068461,0.02301,182276279,0.7358,2019-11-25T23:25:44.198191,247727022,0.09304,3.06,3.53,3,3.41,184025705,650377013 247680533,Cosmos,0.06848,0.06848,0.02334,181557865,0.73303,2019-11-24T23:25:57.766702,247680533,0.09342,3.26,3.27,3.03,3.06,267084994,582795477 247633998,Cosmos,0.068489,0.068489,0.0233,181611021,0.73338,2019-11-23T23:25:52.372421,247633998,0.09339,2.94,3.26,2.87,3.25,235663023,620624399 247587516,Cosmos,0.068505,0.068505,0.02332,181552035,0.73328,2019-11-22T23:25:51.817812,247587516,0.09342,3.2,3.3,2.68,2.94,165875702,561156547 247541038,Cosmos,0.068534,0.068534,0.02346,181240507,0.73216,2019-11-21T23:25:42.823817,247541038,0.09361,3.35,3.43,3.13,3.2,150359200,609810312 247494572,Cosmos,0.068567,0.068567,0.02343,181304861,0.73256,2019-11-20T23:25:44.588193,247494572,0.0936,3.53,3.62,3.34,3.35,136161478,638110659 247448091,Cosmos,0.068593,0.068593,0.02365,180817155,0.73073,2019-11-19T23:26:01.795884,247448091,0.09387,3.63,3.69,3.37,3.53,138483758,672655150 247401610,Cosmos,0.068621,0.068621,0.02366,180790912,0.73076,2019-11-18T23:27:29.127713,247401610,0.0939,3.92,3.93,3.58,3.63,148746229,692125580 247355134,Cosmos,0.068649,0.068649,0.02377,180540611,0.72988,2019-11-17T23:29:10.111159,247355134,0.09405,3.99,4,3.85,3.92,119429121,748307219 247308615,Cosmos,0.068681,0.068681,0.02382,180428001,0.72957,2019-11-16T23:25:49.834702,247308615,0.09414,3.93,4,3.88,3.99,120766065,760419950 247262194,Cosmos,0.0687,0.0687,0.02386,180320769,0.72927,2019-11-15T23:27:29.055421,247262194,0.0942,4.02,4.14,3.86,3.93,159604699,748906249 247215584,Cosmos,0.068727,0.068727,0.02383,180366384,0.72959,2019-11-14T23:25:41.594320,247215584,0.0942,3.99,4.02,3.82,4.02,145523380,765966045 247169045,Cosmos,0.068737,0.068737,0.0238,180399345,0.72986,2019-11-13T23:25:45.916417,247169045,0.09418,4.21,4.23,3.98,4,174490242,761863902 247122512,Cosmos,0.068751,0.068751,0.02383,180322250,0.72969,2019-11-12T23:25:47.097467,247122512,0.09422,4.36,4.36,4.05,4.22,190695133,804250701 247075932,Cosmos,0.068769,0.068769,0.02382,180328327,0.72985,2019-11-11T23:25:42.671004,247075932,0.09422,4.21,4.38,4.07,4.36,187973925,831135433 247030151,Cosmos,0.068788,0.068788,0.02442,179075733,0.72491,2019-11-10T23:52:02.174885,247030151,0.09489,3.97,4.29,3.91,4.21,175582529,802408393 246983313,Cosmos,0.068805,0.068805,0.02411,179692462,0.72755,2019-11-09T23:41:24.532472,246983313,0.09457,3.81,3.98,3.81,3.96,138378897,755704287 246936232,Cosmos,0.068827,0.068827,0.02411,179670426,0.7276,2019-11-08T23:25:48.866180,246936232,0.0946,3.89,4.03,3.68,3.81,162184081,726952590 246889596,Cosmos,0.068853,0.068853,0.02399,179895604,0.72865,2019-11-07T23:26:04.609961,246889596,0.09449,3.76,3.9,3.66,3.89,138168547,741610195 246843783,Cosmos,0.068879,0.068879,0.02392,180026285,0.72931,2019-11-06T23:52:45.996973,246843783,0.09444,3.76,3.87,3.69,3.76,119134299,717109050 246797082,Cosmos,0.068907,0.068907,0.02379,180266805,0.73042,2019-11-05T23:52:41.935973,246797082,0.09434,3.62,3.81,3.54,3.75,198537684,715727237 246750420,Cosmos,0.068929,0.068929,0.0238,180227623,0.7304,2019-11-04T23:52:43.024923,246750420,0.09437,3.39,3.66,3.35,3.62,167015305,691042409 246703665,Cosmos,0.068954,0.068954,0.0236,180620418,0.73214,2019-11-03T23:52:42.550328,246703665,0.09418,3.43,3.46,3.31,3.4,134586294,647561219 246656835,Cosmos,0.068965,0.068965,0.0236,180594363,0.73217,2019-11-02T23:52:41.094313,246656835,0.09419,3.27,3.47,3.26,3.43,146612238,654660477 246609950,Cosmos,0.068973,0.068973,0.02353,180706002,0.73276,2019-11-01T23:52:39.814303,246609950,0.09413,3.22,3.31,3.14,3.27,141989599,623512129 246562975,Cosmos,0.068979,0.068979,0.02348,180771640,0.73317,2019-10-31T23:52:34.132502,246562975,0.09408,3.03,3.3,3.03,3.21,123316945,611175820 246516060,Cosmos,0.068971,0.068971,0.02347,180765259,0.73328,2019-10-30T23:52:48.613011,246516060,0.09406,3.15,3.2,2.97,3.04,159635853,578792666 246469208,Cosmos,0.068979,0.068979,0.02345,180779257,0.73348,2019-10-29T23:52:47.269397,246469208,0.09404,3.11,3.2,3.08,3.16,174949603,601809776 246422748,Cosmos,0.069019,0.069019,0.02349,180684096,0.73323,2019-10-28T23:52:56.167881,246422748,0.09413,3.2,3.33,3.08,3.11,201010232,593950561 246376383,Cosmos,0.069062,0.069062,0.02337,180921365,0.73433,2019-10-27T23:52:41.690631,246376383,0.09405,3.09,3.29,2.98,3.2,202467915,610752427 246329901,Cosmos,0.069084,0.069084,0.02337,180895791,0.73436,2019-10-26T23:52:43.652307,246329901,0.09407,3.02,3.27,3.01,3.09,247034524,588786104 246283356,Cosmos,0.068906,0.068906,0.0233,180891179,0.73448,2019-10-25T23:52:48.449859,246283356,0.09382,2.85,3.11,2.79,3.02,202151948,575105054 246236799,Cosmos,0.068934,0.068934,0.02316,181174694,0.73577,2019-10-24T23:52:44.314837,246236799,0.09369,2.69,2.87,2.66,2.85,121047890,543146436 246190197,Cosmos,0.068972,0.068972,0.02315,181183857,0.73595,2019-10-23T23:52:44.039977,246190197,0.09372,2.88,2.91,2.6,2.69,154724341,512752506 246143801,Cosmos,0.069029,0.069029,0.0232,181092072,0.73572,2019-10-22T23:52:48.343863,246143801,0.09383,2.99,3.02,2.87,2.88,139307790,548912904 246097240,Cosmos,0.069082,0.069082,0.02311,181274259,0.7366,2019-10-21T23:52:53.993077,246097240,0.09379,2.91,3.01,2.85,2.99,138325074,570027385 246050478,Cosmos,0.069127,0.069127,0.023,181489568,0.73761,2019-10-20T23:52:44.082482,246050478,0.09372,2.76,2.94,2.71,2.9,123509827,553775159 246003602,Cosmos,0.069168,0.069168,0.02301,181459462,0.73763,2019-10-19T23:52:58.332229,246003602,0.09377,2.75,2.81,2.71,2.76,123206076,526511272 245956793,Cosmos,0.069211,0.069211,0.02302,181443066,0.7377,2019-10-18T23:52:50.585810,245956793,0.09382,2.92,2.93,2.72,2.75,139559230,525121084 245909961,Cosmos,0.069254,0.069254,0.02364,180160504,0.73263,2019-10-17T23:52:39.751809,245909961,0.09453,2.85,2.96,2.76,2.92,130110997,556695074 245863098,Cosmos,0.06967,0.06967,0.02371,180247978,0.73312,2019-10-16T23:52:48.740355,245863098,0.09503,2.95,2.96,2.72,2.85,145829662,543831446 245816176,Cosmos,0.069254,0.069254,0.02359,180184672,0.73301,2019-10-15T23:52:47.990599,245816176,0.09448,3.1,3.15,2.91,2.95,159637351,562462768 245769583,Cosmos,0.069699,0.069699,0.02445,178708203,0.72714,2019-10-14T23:52:35.880853,245769583,0.09585,2.88,3.12,2.88,3.1,160775420,591511951 245722830,Cosmos,0.069133,0.069133,0.02375,179706805,0.73134,2019-10-13T23:52:43.971580,245722830,0.09453,2.84,2.92,2.8,2.88,138183164,549067250 245676316,Cosmos,0.06928,0.06928,0.0238,179673360,0.73134,2019-10-12T23:52:45.596216,245676316,0.09473,2.84,2.87,2.8,2.84,130032625,541481340 245629713,Cosmos,0.069363,0.069363,0.02429,178712694,0.72757,2019-10-11T23:52:39.302710,245629713,0.09534,2.91,2.92,2.75,2.84,147536935,540687492 245583086,Cosmos,0.06961,0.06961,0.02448,178464379,0.7267,2019-10-10T23:52:49.147425,245583086,0.09579,2.91,3,2.74,2.9,170166340,553772569 245536269,Cosmos,0.069518,0.069518,0.02441,178499824,0.72698,2019-10-09T23:52:30.692467,245536269,0.09563,2.91,3.02,2.84,2.91,133198475,555297981 245489530,Cosmos,0.069614,0.069614,0.02444,178472824,0.72701,2019-10-08T23:52:43.502122,245489530,0.09575,2.91,3.06,2.84,2.91,143729013,555690359 245442740,Cosmos,0.069847,0.069847,0.02454,178382340,0.72678,2019-10-07T23:52:32.744501,245442740,0.0961,2.67,2.95,2.59,2.91,116735139,554766043 245395810,Cosmos,0.069964,0.069964,0.02457,178375707,0.72689,2019-10-06T23:52:34.259748,245395810,0.09625,2.75,2.77,2.61,2.67,99964727,508541850 245348803,Cosmos,0.070024,0.070024,0.02459,178329368,0.72684,2019-10-05T23:52:41.519386,245348803,0.09634,2.59,2.77,2.56,2.75,105799482,523752708 245301750,Cosmos,0.069788,0.069788,0.02456,178212195,0.7265,2019-10-04T23:52:32.398406,245301750,0.09606,2.58,2.62,2.5,2.59,93827667,493133634 245254941,Cosmos,0.070009,0.070009,0.02482,177804443,0.72498,2019-10-03T23:54:02.671293,245254941,0.09657,2.61,2.66,2.52,2.58,112791728,492272917 245207909,Cosmos,0.069756,0.069756,0.02478,177684413,0.72463,2019-10-02T23:52:46.156483,245207909,0.09626,2.55,2.62,2.44,2.6,116200106,496552363 245161065,Cosmos,0.069645,0.069645,0.02466,177807741,0.72527,2019-10-01T23:52:53.062186,245161065,0.09603,2.65,2.65,2.49,2.55,118931113,486332754 245114289,Cosmos,0.069648,0.069648,0.02677,173706998,0.70868,2019-09-30T23:52:53.361054,245114289,0.09828,2.21,2.65,2.19,2.63,136780367,501571355 245067509,Cosmos,0.069323,0.069323,0.02661,173740056,0.70895,2019-09-29T23:52:53.208259,245067509,0.09778,2.28,2.29,2.12,2.21,106690215,420753478 245020949,Cosmos,0.069339,0.069339,0.02671,173528981,0.70822,2019-09-28T23:52:39.018000,245020949,0.09791,2.29,2.31,2.21,2.28,96812584,435186653 244974470,Cosmos,0.070036,0.070036,0.02694,173535037,0.70838,2019-09-27T23:52:58.459112,244974470,0.09887,2.22,2.29,2.17,2.29,113206441,436934670 244927531,Cosmos,0.070081,0.070081,0.02715,173143158,0.70692,2019-09-26T23:52:59.826120,244927531,0.09914,2.3,2.35,2.09,2.22,140448613,423708570 244880551,Cosmos,0.069602,0.069602,0.027,173065690,0.70674,2019-09-25T23:52:57.546709,244880551,0.09848,2.23,2.42,2.16,2.3,177658028,439268852 244833890,Cosmos,0.063987,0.063987,0.02443,174115915,0.71116,2019-09-24T23:52:46.950000,244833890,0.08998,2.58,2.66,2.09,2.24,188249041,427485956 244791736,Cosmos,0.070012,0.070012,0.0273,172723504,0.70559,2019-09-23T23:53:06.749220,244791736,0.09922,2.92,2.92,2.58,2.58,129682436,491987769 2.45E+14,Cosmos,0.07035,0.07035,0.02698,1.74E+14,0.70899,2019-09-22T12:00:09.503313,2.45E+14,0.09923,3.07,3.08,2.81,2.91,140188584,555000113 2.45E+14,Cosmos,0.070574,0.070574,0.02706,1.73E+14,0.70895,2019-09-21T12:00:06.780502,2.45E+14,0.09955,3.18,3.29,3.04,3.07,146995495,586276849 2.45E+14,Cosmos,0.070624,0.070624,0.02639,1.75E+14,0.71423,2019-09-20T12:00:06.602354,2.45E+14,0.09888,3.14,3.26,3.08,3.18,148024573,607338024 2.45E+14,Cosmos,0.070586,0.070586,0.02626,1.75E+14,0.71512,2019-09-19T12:00:10.889324,2.45E+14,0.0987,3.31,3.31,2.94,3.13,184157575,596904964 2.45E+14,Cosmos,0.070636,0.070636,0.02628,1.75E+14,0.71515,2019-09-18T12:00:11.430920,2.45E+14,0.09877,3.31,3.4,3.26,3.31,163496342,631189165 2.44E+14,Cosmos,0.070698,0.070698,0.02643,1.75E+14,0.71417,2019-09-17T12:00:11.978574,2.44E+14,0.09899,3.33,3.44,3.22,3.32,177431367,633548174 2.44E+14,Cosmos,0.070632,0.070632,0.02634,1.75E+14,0.71463,2019-09-16T12:00:16.292094,2.44E+14,0.09884,3.44,3.56,3.18,3.32,180803360,632979343 2.44E+14,Cosmos,0.070465,0.070465,0.02623,1.75E+14,0.71506,2019-09-15T12:00:10.764077,2.44E+14,0.09854,3.11,3.54,3.1,3.45,189272974,657552909 2.44E+14,Cosmos,0.070444,0.070444,0.02627,1.75E+14,0.71469,2019-09-14T12:00:48.837088,2.44E+14,0.09857,3.17,3.24,3,3.11,173629172,592230157 2.44E+14,Cosmos,0.070499,0.070499,0.02623,1.75E+14,0.71515,2019-09-13T12:00:17.915990,2.44E+14,0.09858,3.08,3.3,3.01,3.17,199583060,605163896 2.44E+14,Cosmos,0.070195,0.070195,0.02638,1.74E+14,0.71315,2019-09-12T12:00:11.540867,2.44E+14,0.09843,2.58,3.2,2.51,3.08,192961557,587383710 2.44E+14,Cosmos,0.070085,0.070085,0.02603,1.75E+14,0.71558,2019-09-11T12:00:11.427783,2.44E+14,0.09794,2.6,2.7,2.42,2.57,144069231,490934316 2.44E+14,Cosmos,0.070106,0.070106,0.02605,1.75E+14,0.7155,2019-09-10T12:00:13.599783,2.44E+14,0.09798,2.74,2.93,2.54,2.59,189092871,494703405 2.44E+14,Cosmos,0.070164,0.070164,0.02637,1.74E+14,0.71317,2019-09-09T12:00:17.249018,2.44E+14,0.09838,2.73,2.96,2.45,2.74,225072497,522540638 2.44E+14,Cosmos,0.069764,0.069764,0.02617,1.74E+14,0.71366,2019-09-08T12:00:11.058340,2.44E+14,0.09776,2.18,2.75,2.16,2.73,196201839,521361739 2.44E+14,Cosmos,0.069922,0.069922,0.02391,1.79E+14,0.73216,2019-09-07T12:00:07.366141,2.44E+14,0.0955,2.05,2.29,2.04,2.18,146368019,414893698 2.44E+14,Cosmos,0.070112,0.070112,0.0244,1.78E+14,0.72865,2019-09-06T12:00:15.494159,2.44E+14,0.09622,1.95,2.25,1.94,2.04,133395732,389639446 2.44E+14,Cosmos,0.069901,0.069901,0.02446,1.77E+14,0.7276,2019-09-05T12:00:13.065484,2.44E+14,0.09607,2.05,2.05,1.91,1.95,113255491,371475988 2.44E+14,Cosmos,0.070256,0.070256,0.02449,1.78E+14,0.72829,2019-09-03T12:00:06.559717,2.44E+14,0.09647,2.12,2.22,2.12,2.16,127964524,412176574 2.44E+14,Cosmos,0.070234,0.070234,0.02445,1.78E+14,0.7286,2019-09-02T12:00:09.010180,2.44E+14,0.0964,2.14,2.17,2.07,2.12,117415985,404413303 2.44E+14,Cosmos,0.070213,0.070213,0.02443,1.78E+14,0.7287,2019-09-01T12:00:08.064605,2.44E+14,0.09635,2.04,2.23,2.01,2.14,110298864,407758260 2.44E+14,Cosmos,0.070415,0.070415,0.02451,1.78E+14,0.72855,2019-08-31T12:00:09.719690,2.44E+14,0.09665,2.16,2.17,2.01,2.04,107053453,388605920 2.44E+14,Cosmos,0.070424,0.070424,0.02461,1.77E+14,0.72776,2019-08-30T14:58:25.746105,2.44E+14,0.09677,2.17,2.23,2.11,2.16,99188202,411781269 2.43E+14,Cosmos,0.070794,0.070794,0.02442,1.78E+14,0.73029,2019-08-27T12:00:08.122425,2.43E+14,0.09694,2.62,2.64,2.5,2.56,123595893,488442591 2.43E+14,Cosmos,0.070994,0.070994,0.02445,1.78E+14,0.73054,2019-08-26T12:00:08.122904,2.43E+14,0.09718,2.63,2.7,2.59,2.62,103446660,500489628 2.43E+14,Cosmos,0.070932,0.070932,0.02449,1.78E+14,0.73008,2019-08-25T12:00:09.685833,2.43E+14,0.09716,2.7,2.74,2.61,2.62,104651642,499349869 2.43E+14,Cosmos,0.07098,0.07098,0.02437,1.78E+14,0.73116,2019-08-24T12:00:14.163145,2.43E+14,0.09708,2.7,2.74,2.61,2.7,106694697,514937893 2.43E+14,Cosmos,0.070882,0.070882,0.02453,1.78E+14,0.72964,2019-08-23T12:00:07.163866,2.43E+14,0.09715,2.72,2.76,2.59,2.7,129721582,515720515 2.43E+14,Cosmos,0.071084,0.071084,0.02479,1.77E+14,0.72807,2019-08-22T12:00:07.847285,2.43E+14,0.09763,2.65,2.74,2.57,2.72,102851813,518612507 2.43E+14,Cosmos,0.071041,0.071041,0.02493,1.77E+14,0.72679,2019-08-21T12:00:11.763928,2.43E+14,0.09775,2.87,2.88,2.6,2.65,130044350,505698204 2.43E+14,Cosmos,0.071152,0.071152,0.02496,1.77E+14,0.72686,2019-08-20T12:00:08.692132,2.43E+14,0.09789,2.91,2.93,2.78,2.89,120939299,550687053 2.43E+14,Cosmos,0.071208,0.071208,0.02512,1.76E+14,0.72574,2019-08-19T12:00:07.304306,2.43E+14,0.09812,2.99,2.99,2.81,2.91,120726904,554912060 2.43E+14,Cosmos,0.071155,0.071155,0.02512,1.76E+14,0.7256,2019-08-18T12:00:09.817891,2.43E+14,0.09806,2.91,2.99,2.87,2.98,104947554,567604545 2.43E+14,Cosmos,0.071208,0.071208,0.02518,1.76E+14,0.72528,2019-08-17T12:00:08.453000,2.43E+14,0.09818,2.95,2.95,2.84,2.9,100937146,553141768 2.43E+14,Cosmos,0.07125,0.07125,0.02503,1.77E+14,0.72661,2019-08-16T12:00:06.506302,2.43E+14,0.09806,2.95,3.02,2.83,2.92,128767169,556632355 2.43E+14,Cosmos,0.071427,0.071427,0.02498,1.77E+14,0.7274,2019-08-15T12:00:07.149420,2.43E+14,0.0982,2.84,2.99,2.72,2.95,118159631,562660160 2.43E+14,Cosmos,0.071313,0.071313,0.02513,1.76E+14,0.72591,2019-08-14T12:00:10.955023,2.43E+14,0.09824,3.25,3.28,2.84,2.84,143341869,542120033 2.43E+14,Cosmos,0.071306,0.071306,0.0287,1.70E+14,0.69873,2019-08-13T12:00:07.133264,2.43E+14,0.10205,3.33,3.34,3.15,3.25,130277229,619723678 2.43E+14,Cosmos,0.071274,0.071274,0.02873,1.70E+14,0.69838,2019-08-12T12:00:14.439964,2.43E+14,0.10206,3.53,3.64,3.33,3.33,136927300,635407748 2.43E+14,Cosmos,0.071331,0.071331,0.02876,1.70E+14,0.69835,2019-08-11T12:00:10.136815,2.43E+14,0.10214,3.34,3.53,3.29,3.52,119824702,672076520 2.43E+14,Cosmos,0.071367,0.071367,0.02877,1.69E+14,0.69835,2019-08-10T12:00:08.095525,2.43E+14,0.10219,3.14,3.37,3.14,3.34,131283352,636214333 2.43E+14,Cosmos,0.071242,0.071242,0.02874,1.69E+14,0.69824,2019-08-09T12:00:08.236860,2.43E+14,0.10203,3.27,3.31,3.09,3.14,121369452,598683603 2.43E+14,Cosmos,0.07107,0.07107,0.0283,1.70E+14,0.70101,2019-08-08T12:00:12.007217,2.43E+14,0.10138,3.5,3.5,3.16,3.26,129180828,622079898 2.43E+14,Cosmos,0.071082,0.071082,0.02823,1.70E+14,0.70155,2019-08-07T12:00:11.051209,2.43E+14,0.10132,3.55,3.68,3.47,3.5,127921987,666501619 2.43E+14,Cosmos,0.071153,0.071153,0.02816,1.70E+14,0.70228,2019-08-06T12:00:06.339947,2.43E+14,0.10132,3.79,3.8,3.51,3.55,126484099,677875125 2.42E+14,Cosmos,0.071342,0.071342,0.02826,1.70E+14,0.70208,2019-08-05T12:00:08.538325,2.42E+14,0.10162,3.61,3.87,3.61,3.79,132794918,722946974 2.42E+14,Cosmos,0.071502,0.071502,0.02829,1.70E+14,0.70228,2019-08-04T12:00:06.482353,2.42E+14,0.10181,3.7,3.78,3.59,3.61,90515499,688488764 2.42E+14,Cosmos,0.071452,0.071452,0.02831,1.70E+14,0.70196,2019-08-03T12:00:13.472642,2.42E+14,0.10179,3.66,3.79,3.64,3.71,94736604,706528201 2.42E+14,Cosmos,0.0715,0.0715,0.02837,1.70E+14,0.70167,2019-08-02T12:00:05.855550,2.42E+14,0.1019,3.55,3.9,3.53,3.66,106897992,697565673 2.42E+14,Cosmos,0.071314,0.071314,0.02821,1.70E+14,0.70233,2019-08-01T12:00:05.649921,2.42E+14,0.10154,3.66,3.68,3.48,3.56,68444005,678390927 2.42E+14,Cosmos,0.071294,0.071294,0.02809,1.70E+14,0.70321,2019-07-31T12:00:11.242914,2.42E+14,0.10138,3.6,3.75,3.6,3.66,115217467,697645163 2.42E+14,Cosmos,0.071376,0.071376,0.02808,1.70E+14,0.70349,2019-07-30T12:00:10.708351,2.42E+14,0.10146,3.6,3.66,3.52,3.6,114588229,685797659 2.42E+14,Cosmos,0.071496,0.071496,0.02812,1.70E+14,0.70353,2019-07-29T12:00:12.423595,2.42E+14,0.10162,3.62,3.68,3.55,3.6,119873997,687142202 2.42E+14,Cosmos,0.071558,0.071558,0.02786,1.71E+14,0.70563,2019-07-28T12:00:07.446068,2.42E+14,0.10141,3.62,3.67,3.5,3.62,110281449,689863878 2.42E+14,Cosmos,0.071681,0.071681,0.02767,1.71E+14,0.7074,2019-07-27T12:00:16.403607,2.42E+14,0.10133,3.9,4.01,3.57,3.62,117266920,689671448 -------------------------------------------------------------------------------- /parametrization/df_dash.csv: -------------------------------------------------------------------------------- 1 | circulating_supply,currency,inflation,inflation_total,real_yield,staked_supply,staking_rate,timestamp,total_supply,yield,open,high,low,close,volume,market_cap 9281465,Dash,0.033522,0.074493,-0.00671,4624000,0.4982,2020-01-19T23:25:55.515511,9281465,0.06729,101.63,108.44,93.42,104.79,1186646796,972138555 9279766,Dash,0.033538,0.074528,-0.00668,4621000,0.49796,2020-01-18T23:25:48.147402,9279766,0.06735,114.13,115.25,97.52,101.56,1315737751,941967758 9278057,Dash,0.033539,0.074532,-0.00668,4620000,0.49795,2020-01-17T23:25:45.360911,9278057,0.06735,127.63,127.69,110.55,114.38,1536993729,1060686346 9276370,Dash,0.033543,0.07454,-0.00653,4608000,0.49675,2020-01-16T23:25:49.679328,9276370,0.06753,132.4,134.05,113.62,128.16,1925351036,1188236312 9274649,Dash,0.033537,0.074526,-0.00657,4610000,0.49705,2020-01-15T23:25:45.374232,9274649,0.06747,88.62,140.7,88.62,132.27,2736888861,1226142431 9272947,Dash,0.033544,0.074541,-0.00712,4650000,0.50146,2020-01-14T23:25:48.714064,9272947,0.06689,69.61,88.7,69.58,88.7,1090046613,822067637 9271238,Dash,0.03355,0.074556,-0.00748,4676000,0.50436,2020-01-13T23:25:47.444305,9271238,0.06652,66.25,71.11,64.15,69.58,476814382,644783979 9269551,Dash,0.033567,0.074593,-0.00744,4672000,0.50402,2020-01-12T23:25:41.989549,9269551,0.0666,63.53,67.81,62.53,66.3,535827585,614252950 9267839,Dash,0.033564,0.074588,-0.00746,4673000,0.50422,2020-01-11T23:27:56.987982,9267839,0.06657,56.6,66.84,55.81,63.4,581950368,587294276 9266137,Dash,0.033577,0.074615,-0.00737,4665000,0.50345,2020-01-10T23:27:56.478715,9266137,0.06669,50.89,56.59,50.26,56.59,360608270,524062302 9264438,Dash,0.033592,0.074648,-0.00747,4671000,0.50419,2020-01-09T23:25:54.154373,9264438,0.06663,52.88,53.28,50.5,50.89,247077074,471257294 9262726,Dash,0.033584,0.074632,-0.0075,4673000,0.5045,2020-01-08T23:30:52.362805,9262726,0.06657,54.8,56.53,51.72,52.92,314320136,489899216 9252356,Dash,0.033607,0.074683,-0.00764,4678000,0.5056,2020-01-02T21:27:58.500672,9252356,0.06647,41.91,42.04,40.18,40.22,200098184,371971196 9250797,Dash,0.033624,0.074719,-0.0077,4681000,0.50601,2020-01-01T23:25:42.417850,9250797,0.06645,41.19,42.61,40.97,41.87,209558954,387089111 9249110,Dash,0.03363,0.074734,-0.00772,4682000,0.50621,2019-12-31T23:27:56.470058,9249110,0.06644,42.57,42.84,41.15,41.2,228348982,380819459 9247376,Dash,0.033638,0.074751,-0.00779,4686000,0.50674,2019-12-30T23:25:50.323415,9247376,0.06638,44.75,45,42.52,42.57,236575767,393500251 9240791,Dash,0.033653,0.074783,-0.00758,4667000,0.50504,2019-12-29T23:25:50.228276,9240791,0.06663,41.9,45.42,41.66,44.75,291554835,413310786 9239113,Dash,0.033672,0.074826,-0.00764,4670000,0.50546,2019-12-28T23:25:49.843199,9239113,0.06662,39.87,43.01,39.83,41.89,258317069,386836063 9237389,Dash,0.033656,0.074791,-0.00779,4681000,0.50674,2019-12-27T23:28:02.409386,9237389,0.06642,40.13,40.53,38.97,39.87,228790249,368137394 9235686,Dash,0.033675,0.074834,-0.00787,4686000,0.50738,2019-12-26T23:27:57.902352,9235686,0.06637,41.23,41.34,38.96,40.16,297344626,370729978 9233987,Dash,0.033681,0.074847,-0.0084,4725000,0.5117,2019-12-25T23:25:46.888916,9233987,0.06582,42.02,42.08,41.16,41.25,231213797,380677900 9232297,Dash,0.033693,0.074874,-0.00859,4739000,0.51331,2019-12-24T23:27:56.109860,9232297,0.06564,43.07,43.39,41.87,42.02,234610156,387771587 9230607,Dash,0.033724,0.074941,-0.00883,4756000,0.51524,2019-12-23T23:25:49.813416,9230607,0.06545,44.32,44.91,42.84,43.05,221437668,397172828 9228889,Dash,0.033712,0.074916,-0.00882,4755000,0.51523,2019-12-22T23:25:50.217759,9228889,0.06543,43.04,44.36,42.7,44.34,207633884,409023239 9227174,Dash,0.033713,0.074919,-0.00885,4756000,0.51543,2019-12-21T23:25:56.648841,9227174,0.06541,43.52,43.66,42.77,43.05,202625006,397001323 9225490,Dash,0.033737,0.07497,-0.0089,4759000,0.51585,2019-12-20T23:27:57.269261,9225490,0.0654,43.54,44.11,43.06,43.52,236620822,401322904 9223782,Dash,0.033722,0.074939,-0.00894,4761000,0.51617,2019-12-19T23:25:56.640315,9223782,0.06533,44.55,44.94,42.29,43.54,246793993,401355359 9222067,Dash,0.03374,0.074978,-0.00899,4764000,0.51659,2019-12-18T23:25:53.632173,9222067,0.06531,41.49,45.23,40.83,44.52,274331819,410325000 9220386,Dash,0.03375,0.075001,-0.00912,4773000,0.51766,2019-12-17T23:25:50.265310,9220386,0.0652,46.42,46.46,41.01,41.37,262627863,381266341 9218675,Dash,0.033757,0.075016,-0.00927,4784000,0.51895,2019-12-16T23:25:49.791233,9218675,0.06505,51.03,51.08,46.07,46.42,255386554,427712733 9216966,Dash,0.033761,0.075025,-0.00966,4814000,0.5223,2019-12-15T23:25:45.227427,9216966,0.06464,49.95,51.42,49.14,51.03,274840843,470140384 9215260,Dash,0.033775,0.075055,-0.0097,4816000,0.52261,2019-12-14T23:25:52.111770,9215260,0.06463,50.74,51.23,49.59,49.94,251838983,460001543 9213570,Dash,0.033781,0.075069,-0.00961,4808000,0.52184,2019-12-13T23:25:51.320131,9213570,0.06473,50.17,50.92,50.01,50.71,263841028,466985550 9211862,Dash,0.03379,0.075089,-0.00984,4825000,0.52378,2019-12-12T23:25:55.272091,9211862,0.06451,49.82,50.54,49.07,50.19,269911451,462055963 9210147,Dash,0.033781,0.07507,-0.00964,4808000,0.52203,2019-12-11T23:25:44.832727,9210147,0.06471,50.25,51.17,49.49,49.76,254820772,458025959 9208441,Dash,0.033773,0.075052,-0.00968,4811000,0.52246,2019-12-10T23:25:55.219944,9208441,0.06464,51.5,51.91,49.9,50.24,263294458,462399634 9206736,Dash,0.033783,0.075074,-0.00973,4814000,0.52288,2019-12-09T23:26:51.376150,9206736,0.06461,52.22,53.13,51.19,51.51,279494268,474025810 9205040,Dash,0.033799,0.075109,-0.00974,4813000,0.52287,2019-12-08T23:25:59.879534,9205040,0.06464,52.8,52.92,51.87,52.2,250165556,480207234 9198442,Dash,0.033822,,,4810000,0.52292,2019-12-07T23:26:22.680000,,0.06468,52.59,53.33,52.04,52.81,254685506,485736262 9196761,Dash,0.033818,,,4813000,0.52334,2019-12-06T23:32:35.992175,,0.06462,50.49,52.94,50.42,52.57,261395845,483511302 9195068,Dash,0.033831,,,4814000,0.52354,2019-12-05T23:28:23.348586,,0.06462,50.75,52.78,49.57,50.49,246865711,464235340 9193335,Dash,0.033841,,,4848000,0.52734,2019-12-04T23:32:42.093106,,0.06417,51.57,52.1,50.19,50.81,241426048,467081593 9191651,Dash,0.033844,,,4842000,0.52678,2019-12-03T23:34:53.579711,,0.06425,51.8,52.32,50.8,51.58,228015501,474091039 9189954,Dash,0.033854,,,4844000,0.5271,2019-12-02T23:35:02.043583,,0.06423,53.27,54.14,51.69,51.8,277709857,476074330 9188233,Dash,0.033849,,,4842000,0.52698,2019-12-01T23:37:09.347706,,0.06423,55.23,55.23,52.63,53.28,328909553,489531887 9186537,Dash,0.033855,,,4842000,0.52708,2019-11-30T23:30:53.837359,,0.06423,57.15,58.36,54.87,55.23,320421131,507371437 9179333,Dash,0.03389,,,4845000,0.52782,2019-11-29T23:28:37.492378,,0.06421,52.47,58.62,52.45,57.12,368092447,524354054 9177646,Dash,0.033887,,,4841000,0.52748,2019-11-28T23:26:33.533143,,0.06424,50.86,54.56,50.01,52.45,376437951,481350806 9175972,Dash,0.033902,,,4847000,0.52823,2019-11-27T23:30:42.095296,,0.06418,50.64,52.7,48.89,50.83,370160658,466425677 9174266,Dash,0.033896,,,4881000,0.53203,2019-11-26T23:26:43.350767,,0.06371,50.18,51.41,49.87,50.71,286122207,465265002 9172523,Dash,0.033933,,,4896000,0.53377,2019-11-25T23:30:43.350575,,0.06357,51.95,53.1,48.49,50.23,365912975,460743260 9170858,Dash,0.03392,,,4904000,0.53474,2019-11-24T23:30:42.001036,,0.06343,55.38,55.49,51.96,51.96,352239563,476490493 9169153,Dash,0.033933,,,4902000,0.53462,2019-11-23T23:26:22.112100,,0.06347,55.54,56.91,54.54,55.38,404485563,507815255 9167447,Dash,0.033932,,,4921000,0.53679,2019-11-22T23:26:21.390427,,0.06321,60.55,61.09,54.57,55.54,401613025,509133947 9165726,Dash,0.03395,,,4936000,0.53853,2019-11-21T23:32:41.126538,,0.06304,63.92,64.61,60.2,60.54,374750653,554890020 9164035,Dash,0.033941,,,4922000,0.5371,2019-11-20T23:30:28.598954,,0.06319,65.82,66.24,63.85,63.97,372158855,586247668 9162339,Dash,0.033935,,,4926000,0.53764,2019-11-19T23:26:31.372880,,0.06312,65.3,66.42,63.6,65.81,345463406,603021841 9160633,Dash,0.033958,,,4930000,0.53817,2019-11-18T23:36:27.696893,,0.0631,68.3,68.83,65.08,65.32,328968065,598376266 9158915,Dash,0.033948,,,4929000,0.53816,2019-11-17T23:29:40.063752,,0.06308,68.42,69.17,67.95,68.3,297447134,625601663 9157231,Dash,0.033958,,,4932000,0.53859,2019-11-16T23:26:19.829696,,0.06305,68.23,68.57,67.86,68.41,292160865,626422073 9155526,Dash,0.033958,,,4923000,0.53771,2019-11-15T23:27:59.767802,,0.06315,69.2,69.5,67.42,68.21,301568783,624491375 9153799,Dash,0.033981,,,4925000,0.53803,2019-11-14T23:26:11.457495,,0.06316,69.98,70.1,69.08,69.16,350588076,633039775 9152111,Dash,0.033984,,,4922000,0.5378,2019-11-13T23:26:15.496001,,0.06319,70.35,71.04,69.85,70,376668496,640618726 9150409,Dash,0.033977,,,4930000,0.53877,2019-11-12T23:26:17.047893,,0.06306,70.36,70.82,69.52,70.38,401213177,643975116 9148694,Dash,0.033982,,,4931000,0.53898,2019-11-11T23:26:12.426085,,0.06305,71.55,72.42,69.9,70.36,388797176,643725981 9147012,Dash,0.033993,,,4929000,0.53886,2019-11-10T23:52:31.992020,,0.06308,69.87,72,69.41,71.57,460446749,654651376 9145328,Dash,0.033996,,,4932000,0.53929,2019-11-09T23:41:56.444899,,0.06304,69.75,70.66,69.51,69.86,374833272,638925671 9143623,Dash,0.034008,,,4927000,0.53884,2019-11-08T23:26:19.614813,,0.06311,73.03,73.07,68.62,69.76,322249497,637901780 9141901,Dash,0.034007,,,4924000,0.53862,2019-11-07T23:26:35.704379,,0.06314,74.55,74.77,72.5,73.03,309817947,667601627 9140233,Dash,0.034008,,,4923000,0.53861,2019-11-06T23:53:15.379793,,0.06314,74.34,74.77,73.42,74.56,290115887,681490450 9138531,Dash,0.034038,,,4923000,0.53871,2019-11-05T23:53:11.836002,,0.06318,72.89,74.54,72.11,74.38,303746079,679686672 9136804,Dash,0.034028,,,4917000,0.53815,2019-11-04T23:53:17.610521,,0.06323,71.42,73.53,71.2,72.82,290544571,665350731 9135117,Dash,0.034044,,,4919000,0.53847,2019-11-03T23:53:13.099700,,0.06322,72.46,72.93,70.64,71.42,273155769,652416407 9133437,Dash,0.034048,,,4921000,0.53879,2019-11-02T23:53:10.827565,,0.06319,72.07,72.81,71.84,72.45,286468980,661733807 9131722,Dash,0.034038,,,4917000,0.53845,2019-11-01T23:53:09.636765,,0.06321,72.15,72.33,70.91,72.08,275488580,658257776 9130007,Dash,0.034038,,,4919000,0.53877,2019-10-31T23:53:03.922589,,0.06318,72.56,73.67,70.54,72.17,274591865,658950740 9122665,Dash,0.034089,,,4921000,0.53943,2019-10-30T23:53:17.947997,,0.06319,73.54,74.8,71.79,72.55,291498994,661894469 9120965,Dash,0.034083,,,4924000,0.53986,2019-10-29T23:53:16.561827,,0.06313,72.17,76.24,72.05,73.51,271525879,670491139 9119238,Dash,0.034094,,,4921000,0.53963,2019-10-28T23:53:26.571391,,0.06318,71.76,75.94,71.72,72.26,272906938,659006422 9117534,Dash,0.034093,,,4922000,0.53984,2019-10-27T23:53:11.131506,,0.06315,70.75,73.26,69.54,71.76,260742874,654270107 9115851,Dash,0.034122,,,4912000,0.53884,2019-10-26T23:53:12.990384,,0.06332,70.38,73.7,68.37,70.73,322560996,644725479 9114142,Dash,0.034106,,,4923000,0.54015,2019-10-25T23:53:19.649429,,0.06314,63.36,70.36,63.26,70.36,281153017,641280988 9112439,Dash,0.034112,,,4929000,0.54091,2019-10-24T23:53:14.085843,,0.06306,63.17,63.63,62.05,63.31,194869718,576915741 9110743,Dash,0.034111,,,4933000,0.54145,2019-10-23T23:53:13.596002,,0.063,67.6,67.72,62.62,63.19,213776689,575671706 9109050,Dash,0.034117,,,4926000,0.54078,2019-10-22T23:53:21.444816,,0.06309,69.01,69.78,67.39,67.59,219451615,615696243 9107366,Dash,0.034127,,,4926000,0.54088,2019-10-21T23:53:23.376067,,0.0631,69.31,69.92,68.4,69.02,230907074,628601126 9105636,Dash,0.03415,,,4933000,0.54175,2019-10-20T23:53:15.251333,,0.06304,67.76,69.97,67.46,69.3,193642159,631038167 9103968,Dash,0.034149,,,4932000,0.54174,2019-10-19T23:53:27.482564,,0.06304,68.17,68.65,67.61,67.72,185203945,616545235 9102259,Dash,0.034153,,,4932000,0.54184,2019-10-18T23:57:34.783101,,0.06303,69.29,69.37,67.38,68.17,209379703,620470571 9085692,Dash,0.034217,,,4929000,0.5425,2019-10-17T23:55:36.822297,,0.06307,68.5,70.21,67.8,69.27,207219637,630378882 9103660,Dash,0.034117,0.075816,-0.01175,4916000,0.54,2019-10-16T23:52:54.392393,9103660,0.06318,71.65,71.8,67.33,68.5,234108416,623298827 9101936,Dash,0.034155,0.075899,-0.01196,4932000,0.54186,2019-10-15T23:52:52.913333,9101936,0.06303,71.32,73.02,70.99,71.65,232619259,651789258 9100262,Dash,0.03418,0.075955,-0.01161,4901000,0.53856,2019-10-14T23:52:40.605679,9100262,0.06347,70.87,71.78,70.59,71.32,214932952,648708282 9098562,Dash,0.034232,0.076071,-0.01198,4930000,0.54184,2019-10-13T23:52:47.228142,9098562,0.06318,71.13,72.14,70.81,70.91,218051256,644877127 9096869,Dash,0.034216,0.076035,-0.01207,4937000,0.54271,2019-10-12T23:52:48.725620,9096869,0.06305,70.48,72.61,70.43,71.11,221773195,646550853 9095170,Dash,0.03427,0.076156,-0.01212,4939000,0.54304,2019-10-11T23:52:45.023822,9095170,0.06311,72.8,73.29,70.44,70.5,220205963,640890170 9093458,Dash,0.034207,0.076016,-0.01214,4941000,0.54336,2019-10-10T23:52:52.289682,9093458,0.06296,74.02,74.49,70.94,72.8,255488611,661640315 9091762,Dash,0.034214,0.076031,-0.0122,4945000,0.5439,2019-10-09T23:52:34.325766,9091762,0.06291,71.33,74.6,70.81,74.12,232323935,673548176 9085586,Dash,0.03423,0.076066,-0.01214,4936000,0.54328,2019-10-06T08:52:47.208851,9085586,0.06301,70.53,72.11,69.76,70.54,213763280,640641899 9084949,Dash,0.034259,0.076132,-0.01212,4933000,0.54299,2019-10-05T23:52:44.611764,9084949,0.06309,70.06,70.77,68.96,70.59,190166360,640993974 9083234,Dash,0.034239,0.076088,-0.01211,4932000,0.54298,2019-10-04T23:52:38.207876,9083234,0.06306,70.05,71.18,69.2,70.12,197176401,636603527 9081529,Dash,0.034225,0.076056,-0.01213,4933000,0.54319,2019-10-03T23:54:08.287486,9081529,0.06301,70.94,71.28,68.93,70.04,224161131,635744751 9079817,Dash,0.034226,0.076058,-0.01221,4939000,0.54395,2019-10-02T23:52:51.983854,9079817,0.06292,70.55,70.87,69.65,70.86,164619887,643049844 9078121,Dash,0.034213,0.07603,-0.01223,4940000,0.54416,2019-10-01T23:52:56.492781,9078121,0.06287,71.06,72.7,69.87,70.51,214628256,639794753 9070742,Dash,0.034321,0.076269,-0.01231,4940000,0.54461,2019-09-30T23:52:56.729576,9070742,0.06302,69.41,71.96,67.55,71.09,218298028,644490956 9069027,Dash,0.034253,0.076117,-0.01217,4929000,0.5435,2019-09-29T23:52:56.747650,9069027,0.06302,71.84,71.84,68.05,69.44,187343276,629405017 9067334,Dash,0.034324,0.076276,-0.01226,4934000,0.54415,2019-09-28T23:52:43.159298,9067334,0.06308,71.95,72.36,70.92,71.85,212554942,651170189 9065631,Dash,0.034288,0.076196,-0.01202,4914000,0.54205,2019-09-27T23:55:44.032739,9065631,0.06326,69.23,72.2,67.85,71.97,242836100,652131225 9063941,Dash,0.034352,0.076338,-0.0121,4918000,0.54259,2019-09-26T23:53:03.146471,9063941,0.06331,73.12,73.63,67.15,69.19,209364896,626812674 9062214,Dash,0.034309,0.076241,-0.01211,4919000,0.5428,2019-09-25T23:53:01.485267,9062214,0.06321,72.72,76.17,70.01,73.09,281828717,662008601 9060515,Dash,0.034328,0.076284,-0.01251,4951000,0.54644,2019-09-24T23:52:52.430556,9060515,0.06282,87.4,88.5,70.88,72.9,261957987,660151235 9042642,Dash,0.034375,0.076389,-0.01275,4960000,0.54851,2019-09-14T12:00:52.785459,9042642,0.06267,93.28,94.6,90.74,91.52,253643873,827271734 9040918,Dash,0.03437,0.076377,-0.01278,4962000,0.54884,2019-09-13T12:00:21.115162,9040918,0.06262,85.28,94.27,85.11,93.27,235816614,842847025 9039244,Dash,0.034408,0.076462,-0.01277,4959000,0.54861,2019-09-12T12:00:14.628786,9039244,0.06272,82.8,90.79,81.99,85.29,238978713,770648577 9037520,Dash,0.034378,0.076397,-0.01278,4960000,0.54882,2019-09-11T12:00:14.435616,9037520,0.06264,83.85,85.34,82.34,82.8,173750574,747991225 9035827,Dash,0.034387,0.076415,-0.01288,4967000,0.5497,2019-09-10T12:00:16.903623,9035827,0.06256,87.11,87.78,82.98,83.83,164513699,757159326 9034127,Dash,0.034427,0.076504,-0.0129,4967000,0.5498,2019-09-09T12:00:20.577436,9034127,0.06262,87.8,89.02,85.93,87.13,184918831,786844141 9032409,Dash,0.034417,0.076481,-0.01291,4967000,0.54991,2019-09-08T12:00:14.221277,9032409,0.06259,84.28,87.86,84.13,87.75,170509823,792223214 9030722,Dash,0.034468,0.076594,-0.0129,4964000,0.54968,2019-09-07T12:00:10.615565,9030722,0.0627,80.37,84.45,80.29,84.25,186581412,760557889 9029029,Dash,0.034441,0.076535,-0.01294,4967000,0.55011,2019-09-06T12:00:18.793425,9029029,0.06261,80.58,83.13,78.57,80.35,212197139,725219112 9027327,Dash,0.034451,0.076559,-0.01258,4935000,0.54667,2019-09-05T12:00:19.214051,9027327,0.06302,81.23,82.11,80.4,80.57,180982478,726989061 9023906,Dash,0.03445,0.076556,-0.01253,4929000,0.54622,2019-09-03T12:00:35.325211,9023906,0.06307,81.64,83.96,80.36,82.95,192725799,748237440 9022204,Dash,0.034452,0.07656,-0.01249,4925000,0.54588,2019-09-02T12:00:27.443588,9022204,0.06311,79.98,83.23,79.93,81.61,195249831,735948934 9020517,Dash,0.034496,0.076658,-0.01248,4922000,0.54564,2019-09-01T12:00:18.198592,9020517,0.06322,80.21,81.04,78.8,80.07,149634077,721956273 9013257,Dash,0.034559,0.076798,-0.01257,4924000,0.54631,2019-08-31T12:00:12.828884,9013257,0.06326,80.55,81.01,78.79,80.19,206431548,722882315 9011772,Dash,0.034546,0.07677,-0.01253,4920000,0.54595,2019-08-30T14:58:28.879721,9011772,0.06328,80.25,82.07,79.47,80.58,157841920,725837019 9006444,Dash,0.034543,0.076761,-0.01238,4905000,0.54461,2019-08-27T12:00:14.317110,9006444,0.06343,92.35,92.74,90.2,90.7,125590276,816566032 9003033,Dash,0.034542,0.07676,-0.01235,4900000,0.54426,2019-08-25T12:00:12.912835,9003033,0.06347,92.35,92.99,90.9,91.43,148936751,822765308 9001340,Dash,0.034586,0.076857,-0.01235,4898000,0.54414,2019-08-24T12:00:17.343836,9001340,0.06356,93.71,93.96,90.34,92.38,145816130,831218616 8999622,Dash,0.03457,0.076821,-0.01234,4897000,0.54413,2019-08-23T12:00:10.444290,8999622,0.06353,91.25,95.23,90.32,93.73,225009605,843219319 8997904,Dash,0.034526,0.076724,-0.01213,4880000,0.54235,2019-08-22T12:00:14.048974,8997904,0.06366,89.86,92.4,87.97,91.24,245507277,820594475 8996211,Dash,0.034592,0.07687,-0.01232,4893000,0.5439,2019-08-21T12:00:15.462966,8996211,0.0636,93.96,93.96,87.28,90.23,175275582,811348926 8994530,Dash,0.03462,0.076932,-0.01217,4879000,0.54244,2019-08-20T12:00:11.905252,8994530,0.06382,98.13,98.19,93.35,93.94,152098244,844604955 8992806,Dash,0.034575,0.076833,-0.01209,4872000,0.54177,2019-08-19T12:00:25.645953,8992806,0.06382,95.13,98.11,94.27,98.11,138241467,881946323 8991094,Dash,0.034547,0.07677,-0.0122,4881000,0.54287,2019-08-18T12:00:13.032340,8991094,0.06364,92.75,96.63,91.76,95.11,130360202,854767039 8989401,Dash,0.034626,0.076947,-0.01216,4875000,0.5423,2019-08-17T12:00:11.609632,8989401,0.06385,94.23,94.4,91.31,92.74,126384743,833294378 8987705,Dash,0.034606,0.076901,-0.01229,4885000,0.54352,2019-08-16T12:00:12.701652,8987705,0.06367,95.22,95.54,92.07,94.24,153973787,846627669 8986005,Dash,0.034627,0.076949,-0.01228,4883000,0.5434,2019-08-15T12:00:10.339957,8986005,0.06372,95.62,96.92,92.35,95.18,203677926,854959202 8984300,Dash,0.034672,0.077049,-0.01225,4878000,0.54295,2019-08-14T12:00:14.174914,8984300,0.06386,101.44,102.31,95.52,95.52,193825014,857808290 8982604,Dash,0.034672,0.077048,-0.01207,4863000,0.54138,2019-08-13T12:00:10.431921,8982604,0.06404,104.51,106.73,101.08,101.44,203406782,910823491 8980886,Dash,0.034682,0.07707,-0.01195,4852000,0.54026,2019-08-12T12:00:17.572278,8980886,0.06419,106.91,106.91,102.83,104.96,164675849,942219501 8979177,Dash,0.034639,0.076977,-0.01217,4870000,0.54237,2019-08-11T12:00:15.562789,8979177,0.06387,99.43,108.71,99.29,106.92,224599771,959670387 8977484,Dash,0.034677,0.077061,-0.0122,4870000,0.54247,2019-08-10T12:00:11.234864,8977484,0.06393,103.53,104.51,98,99.41,209200269,892091552 8975781,Dash,0.034657,0.077016,-0.01267,4909000,0.54692,2019-08-09T12:05:30.450238,8975781,0.06337,105.39,105.53,102.96,103.57,200936269,929193681 8974060,Dash,0.034681,0.07707,-0.01294,4930000,0.54936,2019-08-08T12:00:15.170839,8974060,0.06313,107.62,107.85,103.77,105.33,211407418,944886676 8972380,Dash,0.034758,0.07724,-0.01305,4936000,0.55013,2019-08-07T12:00:15.278843,8972380,0.06318,106.94,110.06,106.33,107.68,187404291,965726788 8970652,Dash,0.034705,0.077123,-0.01292,4926000,0.54912,2019-08-06T12:00:09.549675,8970652,0.0632,111.81,112.35,104.28,106.91,171131524,958653277 8968956,Dash,0.03472,0.077156,-0.01294,4926000,0.54923,2019-08-05T12:00:11.700040,8968956,0.06322,107.23,113.59,107.14,111.21,170830744,997065751 8967266,Dash,0.034727,0.077172,-0.0126,4896000,0.54599,2019-08-04T12:00:13.554387,8967266,0.0636,107.43,108.3,104.35,107.2,150889264,960930852 8963849,Dash,0.03471,0.077133,-0.01231,4871000,0.5434,2019-08-02T12:00:08.925251,8963849,0.06387,107.79,109.51,105.2,105.52,219195431,945485901 8962137,Dash,0.034685,0.077077,-0.0123,4870000,0.5434,2019-08-01T12:00:10.730490,8962137,0.06383,109.28,109.36,105.44,107.79,163095470,965605793 8954801,Dash,0.03477,0.077266,-0.01249,4879000,0.54485,2019-07-31T12:00:15.263057,8954801,0.06382,105.45,109.2,105.28,109.2,169370085,977419290 8953096,Dash,0.034797,0.077328,-0.01254,4882000,0.54529,2019-07-30T12:00:13.823152,8953096,0.06382,105.99,107.84,104.2,105.52,162697638,944320202 8951384,Dash,0.034774,0.077276,-0.01257,4884000,0.54561,2019-07-29T12:00:15.578772,8951384,0.06373,108.36,109.18,105.04,105.98,329780599,948316015 8949691,Dash,0.034825,0.077388,-0.01256,4881000,0.54538,2019-07-28T12:00:10.550903,8949691,0.06385,110.52,112.07,103.75,108.39,318393082,969657236 8947970,Dash,0.034769,0.077263,-0.01258,4883000,0.54571,2019-07-27T12:00:19.484242,8947970,0.06371,115.4,117.18,108.97,110.51,311051445,988407523 -------------------------------------------------------------------------------- /parametrization/df_horizen.csv: -------------------------------------------------------------------------------- 1 | circulating_supply,currency,inflation,inflation_total,real_yield,staked_supply,staking_rate,timestamp,yield,open,high,low,close,volume,market_cap 8293350,Horizen,0.063368,0.316839,-0.12109,3152366,0.38011,2020-01-27T23:25:48.177684,0.15739,10.07,10.58,9.91,10.24,1811553,84962705 8286250,Horizen,0.064037,0.320183,-0.12259,3115410,0.37597,2020-01-26T23:25:51.671825,0.15834,9.91,10.21,9.61,10.04,1210483,83228484 8279087,Horizen,0.063529,0.317644,-0.12063,3116270,0.3764,2020-01-25T23:25:53.993436,0.1587,10.13,10.28,9.83,9.91,1067854,82073238 8272037,Horizen,0.065029,0.325147,-0.12533,3070024,0.37113,2020-01-24T23:25:57.406519,0.15907,9.89,10.47,9.67,10.17,1397655,84089597 8264837,Horizen,0.063109,0.315546,-0.11828,3106366,0.37585,2020-01-23T23:25:58.527932,0.15994,10.42,10.61,9.56,9.89,1585715,81723983 8257700,Horizen,0.062991,0.314953,-0.11794,3102506,0.37571,2020-01-22T23:25:42.716980,0.15987,10.76,10.97,10.36,10.43,1443416,86094329 8250512,Horizen,0.061142,0.305711,-0.11214,3096398,0.3753,2020-01-21T23:25:48.783979,0.15929,11.09,11.23,10.56,10.76,1264581,88806744 8242812,Horizen,0.064094,0.32047,-0.12135,3098128,0.37586,2020-01-20T21:25:48.640468,0.16024,11.07,11.41,10.64,11.1,1471899,91497910 8236337,Horizen,0.064401,0.322003,-0.12226,3094890,0.37576,2020-01-19T23:25:56.314144,0.16038,11.98,11.98,10.84,11.06,2117927,91069871 8229125,Horizen,0.061605,0.308023,-0.11254,3082050,0.37453,2020-01-18T23:25:49.146949,0.16082,10.77,12.08,10.51,12,2274785,98753559 8221925,Horizen,0.063196,0.315981,-0.11829,3089092,0.37571,2020-01-17T23:25:46.732071,0.16031,10.5,10.91,10.35,10.77,2419004,88583976 8214900,Horizen,0.069368,0.346839,-0.13844,3078192,0.37471,2020-01-16T23:25:50.589291,0.16038,10.16,10.75,9.91,10.5,1646017,86273427 8207637,Horizen,0.063159,0.315794,-0.11745,3059342,0.37274,2020-01-15T23:25:46.559037,0.16126,10.08,10.67,9.86,10.16,1862542,83371751 8200450,Horizen,0.062249,0.311247,-0.11489,3031136,0.36963,2020-01-14T23:25:49.906975,0.1606,9.98,10.56,9.71,10.07,1833712,82571899 8193400,Horizen,0.064709,0.323545,-0.12333,2989976,0.36492,2020-01-13T23:25:48.688584,0.16031,9.91,10.53,9.55,9.99,2165060,81814348 8186225,Horizen,0.064506,0.322528,-0.12282,3008258,0.36748,2020-01-12T23:25:43.135147,0.16009,8.87,10.08,8.75,9.94,2001420,81373313 8179075,Horizen,0.06569,0.328449,-0.12618,2961272,0.36206,2020-01-11T23:27:57.875051,0.16082,8.44,9.18,8.2,8.9,1500232,72772401 8171887,Horizen,0.064321,0.321606,-0.11956,3021990,0.3698,2020-01-10T23:27:57.854252,0.16359,8.51,8.58,8.06,8.44,1219300,68991143 8164875,Horizen,0.067208,0.336038,-0.12984,3011556,0.36884,2020-01-09T23:25:55.136428,0.16257,8.9,9.13,8.31,8.53,1263537,69615076 8157562,Horizen,0.062823,0.314116,-0.11388,2998286,0.36755,2020-01-08T23:30:53.305633,0.16447,8.18,9.31,7.99,8.9,1954829,72596678 8150512,Horizen,0.061942,0.309708,-0.11067,2958970,0.36304,2020-01-07T23:47:08.317378,0.16476,7.45,8.39,7.31,8.2,1654536,66821915 8143375,Horizen,0.063421,0.317105,-0.11544,2932992,0.36017,2020-01-06T23:49:11.716010,0.16505,7.45,7.64,7.32,7.46,1144051,60751427 8135912,Horizen,0.062986,0.314931,-0.11465,2899588,0.35639,2020-01-05T22:51:18.514464,0.16418,8.02,8.06,7.44,7.45,1166178,60602862 8129062,Horizen,0.062657,0.313284,-0.11337,2897762,0.35647,2020-01-04T23:47:12.554716,0.1644,8.13,8.27,7.84,8.01,1049435,65084862 8121950,Horizen,0.061039,0.305197,-0.10793,2900946,0.35717,2020-01-03T23:45:27.174511,0.16432,7.59,8.34,7.49,8.17,1174898,66395543 8114812,Horizen,0.064604,0.323019,-0.1194,2864030,0.35294,2020-01-02T23:49:19.509333,0.16505,8.41,8.62,7.61,7.61,1162329,61728756 8107675,Horizen,0.065769,0.328843,-0.12414,2902578,0.358,2020-01-01T23:25:43.541978,0.16388,9.18,9.28,8.08,8.39,1889388,68033151 8100387,Horizen,0.066458,0.33229,-0.12712,2908834,0.3591,2019-12-31T23:27:57.441168,0.16294,7.66,9.2,7.45,9.18,2831147,74388539 8093337,Horizen,0.067935,0.339676,-0.13231,2947558,0.3642,2019-12-30T23:25:51.412224,0.16242,7.6,8.08,7.05,7.66,1916777,61963879 8085962,Horizen,0.068815,0.344077,-0.13466,2931400,0.36253,2019-12-29T23:25:51.420269,0.16308,6.43,7.99,6.43,7.6,2554956,61462378 8078850,Horizen,0.065059,0.325295,-0.12245,2947994,0.3649,2019-12-28T23:25:50.700998,0.16301,6.16,6.49,6.14,6.44,1343587,52054411 8071737,Horizen,0.063963,0.319816,-0.12025,2922156,0.36202,2019-12-27T23:28:03.468643,0.16111,6.24,6.32,6.01,6.17,1258456,49818404 8064512,Horizen,0.063602,0.318009,-0.1176,2942330,0.36485,2019-12-26T23:27:59.335626,0.16301,6.74,6.85,6.22,6.24,1111262,50325660 8057337,Horizen,0.062781,0.313903,-0.11684,2910424,0.36121,2019-12-25T23:25:47.975765,0.16038,6.81,7,6.66,6.74,889425,54308595 8050237,Horizen,0.064306,0.321531,-0.12194,2918160,0.36249,2019-12-24T23:27:57.176900,0.16038,6.73,7.1,6.71,6.81,925838,54834711 8043137,Horizen,0.064549,0.322746,-0.12286,2879596,0.35802,2019-12-23T23:25:50.789378,0.16024,7.27,7.32,6.76,6.76,1408675,54371078 8035962,Horizen,0.065078,0.32539,-0.12444,2880620,0.35847,2019-12-22T23:25:51.710109,0.16045,7.17,8.26,6.7,7.27,2035222,58456867 8028862,Horizen,0.06541,0.327048,-0.12581,2876160,0.35823,2019-12-21T23:25:57.809979,0.16009,6.87,7.24,6.54,7.17,1667597,57581372 8021650,Horizen,0.062573,0.312867,-0.11604,2897084,0.36116,2019-12-20T23:27:58.350923,0.16053,7.52,7.58,6.83,6.87,1845320,55145143 8014637,Horizen,0.065457,0.327287,-0.1252,2897750,0.36156,2019-12-19T23:25:57.669179,0.16111,7.41,7.65,7.15,7.52,1772422,60297976 8007450,Horizen,0.066311,0.331556,-0.12883,2901408,0.36234,2019-12-18T23:25:55.018802,0.16002,6.63,7.47,6.36,7.41,1572982,59332786 8000137,Horizen,0.065502,0.32751,-0.12623,2905260,0.36315,2019-12-17T23:25:51.291914,0.15994,7.24,7.66,6.59,6.63,2615926,53070663 7993125,Horizen,0.067117,0.335585,-0.13238,2895230,0.36222,2019-12-16T23:25:51.336265,0.15878,6.49,8.06,6.22,7.24,2545675,57876390 7985850,Horizen,0.063817,0.319084,-0.12181,2898820,0.363,2019-12-15T23:25:46.636023,0.15841,6.49,6.8,6.41,6.48,2626065,51762650 7978887,Horizen,0.070704,0.35352,-0.14404,2890874,0.36232,2019-12-14T23:25:53.347967,0.15856,5.98,7.36,5.86,6.49,1957501,51776966 7971662,Horizen,0.069451,0.347256,-0.14001,2890126,0.36255,2019-12-13T23:25:52.380827,0.15863,6.09,6.21,5.97,5.98,985518,47683435 7964587,Horizen,0.067448,0.337238,-0.13236,2884724,0.36219,2019-12-12T23:25:56.494973,0.16024,6.22,6.27,5.93,6.1,1044093,48622031 7957350,Horizen,0.065787,0.328936,-0.12837,2878994,0.3618,2019-12-11T23:25:45.970682,0.15834,6.13,6.26,5.88,6.22,969504,49456332 7950150,Horizen,0.065313,0.326564,-0.12643,2864798,0.36034,2019-12-10T23:25:56.295323,0.15885,6.05,6.44,5.89,6.13,1957268,48727627 7942950,Horizen,0.064361,0.321804,-0.12411,2869122,0.36122,2019-12-09T23:26:52.451841,0.15775,5.4,6.25,5.37,6.04,1442042,47992441 7935787,Horizen,0.06249,0.312449,-0.11787,2883548,0.36336,2019-12-08T23:26:00.863391,0.15775,5.39,5.46,5.32,5.41,514338,42900409 7928700,Horizen,0.066599,0.332997,-0.13048,2886354,0.36404,2019-12-07T23:26:24.195558,0.15907,5.59,5.63,5.38,5.39,603237,42721640 7921650,Horizen,0.06638,0.331898,-0.1302,2850084,0.35978,2019-12-06T23:32:37.047922,0.15848,4.9,5.58,4.9,5.58,1391823,44232377 7914362,Horizen,0.067391,0.336955,-0.13338,2881328,0.36406,2019-12-05T23:28:24.606277,0.15863,4.99,5,4.69,4.9,1075246,38792290 7907175,Horizen,0.064179,0.320894,-0.12251,2853274,0.36085,2019-12-04T23:32:42.954942,0.15907,5.3,5.3,4.97,5,581356,39523370 7900187,Horizen,0.070284,0.351419,-0.14179,2849680,0.36071,2019-12-03T23:34:54.581092,0.1598,5.47,5.71,5.29,5.3,633035,41859397 7893012,Horizen,0.065971,0.329855,-0.12854,2832656,0.35888,2019-12-02T23:35:03.087387,0.15892,5.54,5.59,5.36,5.47,448862,43171536 7885862,Horizen,0.068767,0.343833,-0.13755,2855030,0.36204,2019-12-01T23:37:10.358269,0.15899,5.77,5.82,5.37,5.54,621166,43716215 7878700,Horizen,0.066062,0.330311,-0.1268,2846390,0.36128,2019-11-30T23:30:54.891089,0.16162,5.7,5.77,5.49,5.77,709277,45431558 7871437,Horizen,0.062654,0.313272,-0.11759,2839280,0.36071,2019-11-29T23:28:38.363086,0.15885,5.65,5.87,5.55,5.7,597331,44890712 7864400,Horizen,0.066544,0.332718,-0.12783,2844412,0.36168,2019-11-28T23:26:34.440239,0.16235,5.63,5.87,5.51,5.65,601175,44448724 7857200,Horizen,0.067599,0.337994,-0.13384,2843042,0.36184,2019-11-27T23:30:43.186385,0.15892,5.51,5.79,5.32,5.62,851623,44193960 7850087,Horizen,0.068059,0.340296,-0.13543,2828812,0.36035,2019-11-26T23:26:44.432772,0.15878,4.96,5.6,4.92,5.55,1554007,43573762 7842887,Horizen,0.067604,0.338021,-0.13396,2832188,0.36112,2019-11-25T23:30:44.572421,0.15878,4.78,5.16,4.44,4.96,785238,38920254 7835675,Horizen,0.064615,0.323075,-0.12429,2825150,0.36055,2019-11-24T23:30:42.984360,0.15863,5.07,5.11,4.78,4.78,529517,37468466 7828487,Horizen,0.065374,0.326868,-0.12657,2835528,0.36221,2019-11-23T23:26:23.320337,0.15892,5.04,5.26,4.98,5.07,921623,39668978 7821362,Horizen,0.071626,0.358131,-0.14534,2845340,0.36379,2019-11-22T23:26:22.442787,0.16075,5.39,5.42,4.49,5.04,967779,39443317 7814162,Horizen,0.066082,0.330411,-0.12934,2830158,0.36218,2019-11-21T23:32:42.222895,0.15834,5.19,6.19,5.1,5.39,1892168,42120991 7807025,Horizen,0.067553,0.337767,-0.13336,2824884,0.36184,2019-11-20T23:30:29.752910,0.15936,5.13,5.47,5.13,5.19,986793,40522166 7799800,Horizen,0.065659,0.328297,-0.12532,2829614,0.36278,2019-11-19T23:26:32.359150,0.16184,5.13,5.63,4.99,5.13,1416231,40030448 7792725,Horizen,0.068805,0.344026,-0.13376,2792710,0.35837,2019-11-18T23:36:28.947415,0.16425,5.54,5.56,5.12,5.13,817465,39950034 7785487,Horizen,0.064421,0.322103,-0.11724,2752158,0.3535,2019-11-17T23:29:41.032433,0.1671,5.68,5.77,5.53,5.53,901714,43092258 7778337,Horizen,0.066655,0.333277,-0.12448,2747084,0.35317,2019-11-16T23:26:20.814726,0.16732,5.87,6.36,5.67,5.68,2002580,44157125 7771200,Horizen,0.063757,0.318785,-0.11563,2746700,0.35345,2019-11-15T23:28:00.710198,0.16629,5.43,6.97,5.36,5.87,3798448,45600096 7764000,Horizen,0.068752,0.343761,-0.13131,2746444,0.35374,2019-11-14T23:26:12.282869,0.16732,5.25,5.58,5.02,5.42,1153645,42094599 7756875,Horizen,0.06565,0.328252,-0.12144,2730100,0.35196,2019-11-13T23:26:16.305109,0.16695,4.97,5.32,4.82,5.25,1372188,40724089 7749737,Horizen,0.071584,0.357918,-0.14074,2721704,0.3512,2019-11-12T23:26:18.270132,0.1668,4.92,4.98,4.8,4.97,1129207,38516938 7742550,Horizen,0.068674,0.343371,-0.13089,2708738,0.34985,2019-11-11T23:26:13.877224,0.16754,4.83,4.96,4.7,4.92,788396,38094546 7735562,Horizen,0.067858,0.339292,-0.12819,2730544,0.35299,2019-11-10T23:52:33.103805,0.16761,4.81,4.84,4.68,4.81,637695,37208997 7728425,Horizen,0.068352,0.341761,-0.13039,2728854,0.35309,2019-11-09T23:41:57.562969,0.1668,4.82,4.89,4.7,4.81,578135,37160047 7721150,Horizen,0.071079,0.355396,-0.1386,2723784,0.35277,2019-11-08T23:26:20.671464,0.16754,5.25,5.26,4.75,4.82,1054314,37247167 7714075,Horizen,0.074067,0.370337,-0.14799,2711488,0.3515,2019-11-07T23:26:36.791811,0.16754,4.8,5.36,4.63,5.26,1566954,40545341 7706925,Horizen,0.064632,0.323162,-0.11679,2713564,0.35209,2019-11-06T23:53:16.165281,0.16863,4.91,4.94,4.77,4.79,684634,36950698 7699875,Horizen,0.06776,0.338802,-0.127,2688670,0.34918,2019-11-05T23:53:12.803483,0.16878,4.86,4.99,4.8,4.91,550426,37835647 7692762,Horizen,0.070266,0.351328,-0.13423,2670466,0.34714,2019-11-04T23:53:18.647637,0.16994,4.96,5.03,4.7,4.86,1104320,37368270 7685537,Horizen,0.069473,0.347365,-0.13233,2683012,0.3491,2019-11-03T23:53:14.162962,0.16907,4.91,5.09,4.69,4.93,1635718,37878801 7678087,Horizen,0.065797,0.328984,-0.11984,2673220,0.34816,2019-11-02T22:53:19.552625,0.16972,4.91,5.08,4.72,4.89,1548886,37536817 7671312,Horizen,0.071103,0.355514,-0.13658,2670742,0.34815,2019-11-01T23:53:10.614709,0.17038,4.66,5.25,4.52,4.92,2425112,37722700 7664112,Horizen,0.067559,0.337793,-0.11799,2624902,0.34249,2019-10-31T23:53:04.887289,0.17994,4.79,5,4.47,4.67,1658499,35768152 7657037,Horizen,0.068144,0.340721,-0.11872,2581426,0.33713,2019-10-30T23:53:21.431807,0.18155,5.03,5.09,4.63,4.77,1554905,36503735 7649887,Horizen,0.069523,0.347613,-0.12377,2562046,0.33491,2019-10-29T23:53:17.401823,0.18082,4.82,5.14,4.51,5.03,2070082,38495803 7642737,Horizen,0.069415,0.347073,-0.11973,2580524,0.33764,2019-10-28T23:53:27.567650,0.18578,4.81,5.02,4.56,4.82,1671958,36820463 7635675,Horizen,0.071197,0.355987,-0.10824,2572508,0.33691,2019-10-27T23:53:11.977994,0.20922,4.88,4.99,4.61,4.81,1203213,36693704 7628550,Horizen,0.073295,0.366473,-0.14136,2529808,0.33162,2019-10-26T23:53:14.060224,0.1733,4.2,5.32,4.17,4.89,3065845,37267228 7621287,Horizen,0.067815,0.339073,-0.12472,2646094,0.3472,2019-10-25T23:53:20.482204,0.17206,3.75,4.23,3.68,4.2,1620556,31990632 7614162,Horizen,0.066903,0.334514,-0.12244,2648964,0.3479,2019-10-24T23:53:15.190361,0.17111,3.6,4.02,3.6,3.75,1546117,28517834 7606987,Horizen,0.068465,0.342325,-0.12733,2652110,0.34864,2019-10-23T23:53:14.156501,0.1714,4.13,4.18,3.44,3.6,1325333,27404566 7599862,Horizen,0.06992,0.3496,-0.13177,2639652,0.34733,2019-10-22T23:53:22.323005,0.17177,4.08,4.33,4,4.13,2703177,31378554 7592675,Horizen,0.067409,0.337045,-0.12356,2644154,0.34825,2019-10-21T23:53:23.995356,0.17184,3.84,4.68,3.67,4.07,3730702,30939297 7585575,Horizen,0.066196,0.330982,-0.11979,2649446,0.34927,2019-10-20T23:53:16.347102,0.17155,3.94,4.36,3.8,3.86,3641754,29304049 7578500,Horizen,0.072268,0.361341,-0.13963,2654646,0.35029,2019-10-19T23:53:28.236691,0.17126,3.29,3.95,3.28,3.94,3069650,29823988 7571225,Horizen,0.069174,0.34587,-0.12871,2655154,0.35069,2019-10-18T23:57:38.442541,0.17264,3.31,3.43,3.21,3.29,3766299,24925431 7564125,Horizen,0.070512,0.352558,-0.13361,2656036,0.35114,2019-10-17T23:55:37.334291,0.17184,3.34,3.43,3.23,3.31,2173689,25069816 7556862,Horizen,0.068566,0.34283,-0.12793,2656372,0.35152,2019-10-16T23:52:55.112162,0.17104,3.5,3.54,3.22,3.32,3048170,25078265 7549862,Horizen,0.069051,0.345255,-0.12967,2675378,0.35436,2019-10-15T23:52:53.530511,0.17082,3.47,3.61,3.38,3.5,5032550,26423907 7542750,Horizen,0.073368,0.366841,-0.14389,2668084,0.35373,2019-10-14T23:52:41.137330,0.17016,3.36,3.51,3.24,3.46,2516278,26120463 7535337,Horizen,0.065181,0.325904,-0.11741,2682566,0.356,2019-10-13T23:52:48.020233,0.17024,3.36,3.43,3.21,3.36,2078158,25331433 7528337,Horizen,0.066354,0.331771,-0.12124,2674090,0.3552,2019-10-12T23:52:49.431481,0.17031,3.3,3.41,3.25,3.36,2237329,25282931 7521287,Horizen,0.070775,0.353875,-0.13548,2680444,0.35638,2019-10-11T23:52:45.677812,0.17046,3.47,3.52,3.24,3.35,3222732,25225373 7514012,Horizen,0.065517,0.327587,-0.11841,2670342,0.35538,2019-10-10T23:52:52.880200,0.17038,3.42,3.51,3.36,3.47,3623476,26083267 7506862,Horizen,0.068141,0.340704,-0.12737,2669350,0.35559,2019-10-09T23:52:35.207087,0.16994,3.51,3.63,3.37,3.47,3352345,26069844 7499825,Horizen,0.072869,0.364343,-0.14206,2666490,0.35554,2019-10-08T23:53:11.735840,0.17053,3.48,3.54,3.35,3.51,2732889,26298734 7492562,Horizen,0.067633,0.338167,-0.12615,2665314,0.35573,2019-10-07T23:53:00.820071,0.16936,3.42,3.52,3.32,3.47,4772806,26015337 7485500,Horizen,0.071408,0.357041,-0.13841,2672754,0.35706,2019-10-06T23:53:02.281463,0.16921,3.5,3.6,3.32,3.42,3233327,25593571 7478350,Horizen,0.071705,0.358524,-0.1393,2671896,0.35728,2019-10-05T23:52:45.076465,0.16929,3.48,3.59,3.34,3.57,3148232,26668763 7471050,Horizen,0.068,0.339998,-0.1262,2665184,0.35674,2019-10-04T23:52:39.035853,0.17089,3.4,3.56,3.33,3.49,3323450,26085644 7464012,Horizen,0.073541,0.367707,-0.14443,2660228,0.35641,2019-10-03T23:54:08.907833,0.17016,3.47,3.49,3.26,3.4,3053243,25409007 7456825,Horizen,0.069493,0.347467,-0.1324,2648084,0.35512,2019-10-02T23:52:52.650583,0.16907,3.42,3.48,3.33,3.45,2381254,25737027 7449712,Horizen,0.075204,0.376018,-0.14992,2660292,0.3571,2019-10-01T23:52:57.219972,0.16972,3.4,3.49,3.33,3.42,5451483,25444341 7442487,Horizen,0.067921,0.339606,-0.12671,2648910,0.35592,2019-09-30T23:52:57.145713,0.16987,3.36,3.42,3.14,3.39,4768278,25258979 7435375,Horizen,0.07142,0.357101,-0.13764,2637246,0.35469,2019-09-29T23:52:57.317869,0.17031,3.53,3.56,3.28,3.35,3352789,24938412 7428200,Horizen,0.066959,0.334794,-0.12296,2648482,0.35654,2019-09-28T23:52:43.951944,0.17067,3.51,3.59,3.38,3.52,2502121,26150700 7421237,Horizen,0.071484,0.357418,-0.13714,2653100,0.3575,2019-09-27T23:55:44.576862,0.17126,3.34,3.52,3.23,3.5,3763336,26008658 7414037,Horizen,0.071313,0.356564,-0.13542,2659604,0.35872,2019-09-26T23:53:03.826350,0.17286,3.64,3.66,3.18,3.34,3818205,24741995 7406737,Horizen,0.072602,0.363008,-0.14031,2668182,0.36024,2019-09-25T23:53:02.309857,0.17177,3.87,4.04,3.61,3.64,10039377,26985326 7399687,Horizen,0.069393,0.346966,-0.12877,2681310,0.36235,2019-09-24T23:52:53.077565,0.17352,4.06,4.17,3.45,3.82,11728447,28298316 7392600,Horizen,0.069662,0.348311,-0.13007,2678504,0.36232,2019-09-23T23:53:36.414013,0.17294,4.07,4.35,3.98,4.09,3640263,30206283 7381850,Horizen,0.071262,0.356312,-0.13612,2675802,0.36248,2019-09-22T12:00:37.146153,0.1717,4.04,4.1,3.95,4.06,4257327,29990572 7374850,Horizen,0.076412,0.382061,-0.15253,2674434,0.36264,2019-09-21T12:00:57.428021,0.17126,4.16,4.2,3.99,4.04,3251066,29816765 7367575,Horizen,0.070299,0.351495,-0.13336,2669656,0.36235,2019-09-20T12:00:35.859663,0.17126,4.09,4.16,3.96,4.12,3142822,30352633 7360462,Horizen,0.073469,0.367343,-0.14293,2670030,0.36275,2019-09-19T12:00:38.846764,0.17192,4.2,4.22,3.92,4.1,5273845,30211276 7353287,Horizen,0.072215,0.361077,-0.13893,2674496,0.36371,2019-09-18T12:00:41.194064,0.17199,4.13,4.27,4.05,4.21,4359437,30956714 7346250,Horizen,0.076627,0.383134,-0.15234,2673050,0.36387,2019-09-17T12:01:02.258092,0.17243,4,4.19,3.89,4.09,4667661,30024629 7339000,Horizen,0.0734,0.367,-0.14223,2668984,0.36367,2019-09-16T12:00:51.802608,0.17257,4.08,4.14,3.92,3.99,4227906,29277716 7331725,Horizen,0.066504,0.332521,-0.12058,2663632,0.3633,2019-09-15T12:00:42.308247,0.17184,3.98,4.12,3.9,4.09,3745773,29976247 7324750,Horizen,0.071741,0.358703,-0.13656,2660804,0.36326,2019-09-14T12:00:53.229408,0.17316,4.01,4.06,3.87,3.98,4270746,29175732 7317687,Horizen,0.075571,0.377857,-0.14899,2644252,0.36135,2019-09-13T12:00:21.856059,0.17257,3.98,4.05,3.84,4.01,2535060,29333438 7310375,Horizen,0.073212,0.366058,-0.14169,2658072,0.3636,2019-09-12T12:00:15.149740,0.1725,4.01,4.06,3.85,4.01,2886570,29357517 7303250,Horizen,0.073437,0.367184,-0.14213,2657564,0.36389,2019-09-11T12:00:14.928706,0.17286,4.09,4.14,3.94,4.02,3595247,29369985 7296075,Horizen,0.069389,0.346946,-0.12854,2654040,0.36376,2019-09-10T12:00:17.408785,0.17381,4.31,4.38,4.04,4.09,4419930,29869383 7289050,Horizen,0.073177,0.365887,-0.13923,2650924,0.36369,2019-09-09T12:00:21.363018,0.17571,4.3,4.41,4.19,4.32,6161628,31529993 7281775,Horizen,0.07037,0.351849,-0.13262,2642472,0.36289,2019-09-08T12:00:14.736017,0.17257,4.17,4.34,4.17,4.29,4582858,31244517 7274762,Horizen,0.071748,0.358742,-0.13686,2634970,0.36221,2019-09-07T12:00:11.207285,0.17279,4.05,4.29,3.98,4.17,5667274,30350996 7267512,Horizen,0.070476,0.352378,-0.13301,2633084,0.36231,2019-09-06T12:00:19.312962,0.1725,4.05,4.38,4.03,4.05,4262813,29421777 7260387,Horizen,0.071537,0.357684,-0.13656,2617518,0.36052,2019-09-05T12:00:19.725221,0.17228,4.13,4.19,4.01,4.05,3878375,29429353 7246050,Horizen,0.069635,0.348174,-0.13052,2552626,0.35228,2019-09-03T12:00:36.003801,0.17221,4.66,4.71,4.51,4.52,4992073,32774996 7238987,Horizen,0.071639,0.358193,-0.13715,2582044,0.35669,2019-09-02T12:00:28.062156,0.17192,4.74,4.98,4.65,4.66,3098963,33728381 7231887,Horizen,0.076105,0.380526,-0.1509,2575274,0.3561,2019-09-01T12:00:18.812716,0.17221,4.73,4.87,4.63,4.74,2358315,34275776 7224712,Horizen,0.073601,0.368003,-0.14297,2574950,0.35641,2019-08-31T12:00:13.517686,0.17243,4.77,4.9,4.65,4.73,2199592,34196327 7218375,Horizen,0.071023,0.355116,-0.13455,2558088,0.35439,2019-08-30T14:58:29.561669,0.17279,4.98,5.02,4.71,4.77,3478943,34432597 7196037,Horizen,0.069058,0.345289,-0.12681,2600114,0.36133,2019-08-27T12:00:15.310293,0.17469,5.11,5.13,5.03,5.07,3344928,36493918 7188975,Horizen,0.074372,0.371858,-0.14452,2587274,0.3599,2019-08-26T12:10:54.197156,0.17359,5.16,5.34,5.05,5.11,3901244,36751975 7181637,Horizen,0.070645,0.353226,-0.13334,2579626,0.3592,2019-08-25T12:00:14.033162,0.17279,5.22,5.34,5.12,5.16,4501756,37044777 7174575,Horizen,0.072002,0.360011,-0.13804,2577058,0.35919,2019-08-24T12:00:18.362905,0.17228,5.13,5.23,5.01,5.22,4121833,37495886 7167412,Horizen,0.072221,0.361104,-0.1391,2573930,0.35912,2019-08-23T12:00:11.397892,0.17177,5.1,5.23,5.04,5.13,4867463,36822024 7160287,Horizen,0.072594,0.362971,-0.14044,2576210,0.35979,2019-08-22T12:00:15.029636,0.17155,5.05,5.18,4.97,5.1,6229902,36565082 7153212,Horizen,0.075095,0.375476,-0.14805,2581726,0.36092,2019-08-21T12:00:16.592627,0.17184,5.27,5.3,4.98,5.05,2090277,36149022 7146012,Horizen,0.073844,0.369221,-0.14506,2604750,0.3645,2019-08-20T12:00:12.900692,0.1706,5.44,5.53,5.14,5.27,1796396,37653223 7138825,Horizen,0.073626,0.368132,-0.14454,2591922,0.36307,2019-08-19T12:00:27.302515,0.17038,5.29,5.49,5.2,5.48,2084345,39127801 7131675,Horizen,0.071192,0.355961,-0.13665,2594400,0.36379,2019-08-18T12:00:14.067761,0.17067,5.32,5.5,5.27,5.29,1860469,37726766 7124512,Horizen,0.070093,0.350464,-0.13297,2593966,0.36409,2019-08-17T12:00:12.622704,0.17089,5.23,5.36,5.11,5.33,1899899,37959032 7117337,Horizen,0.070715,0.353575,-0.06347,2583680,0.36301,2019-08-16T12:00:13.725388,0.26767,5.16,5.45,4.98,5.23,2034030,37249152 7110262,Horizen,0.075728,0.378638,-0.08049,2592210,0.36457,2019-08-15T12:00:11.375234,0.26767,4.98,5.26,4.76,5.15,2018547,36665368 7103062,Horizen,0.071969,0.359843,-0.0697,2564018,0.36097,2019-08-14T12:00:15.190459,0.26506,5.63,5.64,4.97,4.97,1820828,35347536 7096087,Horizen,0.076814,0.38407,-0.08661,2573192,0.36262,2019-08-13T12:00:11.234535,0.26419,5.83,5.9,5.46,5.64,2091702,40007488 7088787,Horizen,0.069214,0.34607,-0.05889,2569600,0.36249,2019-08-12T12:00:18.442554,0.2668,5.93,6.04,5.83,5.83,1812537,41362971 7081700,Horizen,0.077427,0.387137,-0.08675,2575134,0.36363,2019-08-11T12:00:16.181376,0.2668,6.19,6.33,5.91,5.93,1917818,42037823 7074575,Horizen,0.076691,0.383454,-0.08432,2513050,0.35522,2019-08-10T12:00:12.212883,0.2668,6.18,6.39,6.04,6.19,1524277,43819307 7067362,Horizen,0.073547,0.367734,-0.07253,2517526,0.35622,2019-08-09T12:05:31.494635,0.26854,7.05,7.06,6.15,6.18,1818598,43688939 7060200,Horizen,0.072733,0.363666,-0.06912,2505798,0.35492,2019-08-08T12:00:16.176789,0.2694,6.88,7.36,6.64,7.05,2114513,49832387 7053087,Horizen,0.074859,0.374297,-0.07443,2549898,0.36153,2019-08-07T12:00:16.380806,0.27201,6.83,6.96,6.6,6.88,1874290,48540020 7045887,Horizen,0.072723,0.363616,-0.06781,2546752,0.36145,2019-08-06T12:00:10.663680,0.27114,7.42,7.43,6.74,6.84,1912693,48198655 7038800,Horizen,0.074339,0.371697,-0.07521,2545756,0.36168,2019-08-05T12:00:17.368136,0.26854,7.7,7.93,7.26,7.44,2418275,52385027 7031687,Horizen,0.076692,0.38346,-0.08495,2542150,0.36153,2019-08-04T12:00:15.602417,0.26593,7.85,8.66,7.66,7.7,4654322,54199859 7024487,Horizen,0.075819,0.379097,-0.07954,2568352,0.36563,2019-08-03T12:00:43.616906,0.2694,6.72,8.65,6.54,7.85,4876368,55182695 7017350,Horizen,0.074433,0.372164,-0.07362,2578236,0.36741,2019-08-02T12:00:10.483890,0.27114,6.52,6.72,6.38,6.72,1768279,47197718 7010150,Horizen,0.078253,0.391264,-0.08509,2563018,0.36562,2019-08-01T12:00:11.710900,0.27288,6.87,6.87,6.45,6.52,1757664,45743736 7003075,Horizen,0.078783,0.393917,-0.08683,2546212,0.36358,2019-07-31T12:00:16.337694,0.27288,6.97,7.06,6.75,6.86,1293502,48071147 6995875,Horizen,0.073317,0.366586,-0.0692,2540368,0.36312,2019-07-30T12:00:15.244640,0.27201,7.04,7.06,6.96,6.97,848215,48817375 6988725,Horizen,0.072343,0.361714,-0.06715,2540698,0.36354,2019-07-29T12:00:16.603627,0.27027,7.48,7.48,6.94,7.04,1760203,49197455 6981550,Horizen,0.076421,0.382106,-0.08029,2550868,0.36537,2019-07-28T12:00:11.580434,0.27114,7.02,7.67,6.98,7.48,1811036,52235333 6974425,Horizen,0.079065,0.395326,-0.08838,2543156,0.36464,2019-07-27T12:00:20.477959,0.27201,7.76,7.81,6.99,7.02,1905859,49009580 -------------------------------------------------------------------------------- /parametrization/df_livepeer.csv: -------------------------------------------------------------------------------- 1 | circulating_supply,currency,inflation,inflation_total,real_yield,staked_supply,staking_rate,timestamp,total_supply,yield,open,high,low,close,volume, 18855515,Livepeer,0.522615,0.522615,0.26823,12043330,0.63872,2020-01-27T23:26:03.149008,18855515,0.93102,2.54,3.14,1.84,2.48,7022, 18830978,Livepeer,0.516869,0.516869,0.26563,12026078,0.63863,2020-01-26T23:26:06.706623,18830978,0.91979,2.39,2.53,1.9,2.53,3431, 18800192,Livepeer,0.513845,0.513845,0.26522,11991463,0.63784,2020-01-25T23:26:08.583348,18800192,0.91535,2.4,2.4,2.31,2.39,950, 18781135,Livepeer,0.50892,0.50892,0.26324,11974051,0.63756,2020-01-24T23:26:12.804559,18781135,0.90613,2.14,2.4,2.09,2.4,2090, 18761640,Livepeer,0.504169,0.504169,0.26126,11957463,0.63734,2020-01-23T23:26:14.151584,18761640,0.89715,2.66,2.67,2.13,2.14,3093, 18742108,Livepeer,0.499194,0.499194,0.25888,11945141,0.63734,2020-01-22T23:25:56.651495,18742108,0.8873,2.36,2.92,2.21,2.66,8084, 18722541,Livepeer,0.494861,0.494861,0.25701,11929659,0.63718,2020-01-21T23:26:02.596206,18722541,0.87905,2.22,2.36,1.85,2.36,1108, 18701212,Livepeer,0.490192,0.490192,0.2552,11909548,0.63683,2020-01-20T23:26:12.766368,18701212,0.87049,1.83,2.22,1.74,2.22,5796, 18683300,Livepeer,0.485618,0.485618,0.25351,11890476,0.63642,2020-01-19T23:26:09.947579,18683300,0.86223,1.83,1.96,1.77,1.83,3078, 18664311,Livepeer,0.481408,0.481408,0.25267,11859982,0.63544,2020-01-18T23:26:03.296560,18664311,0.85572,2.03,2.04,1.78,1.83,1287, 18626384,Livepeer,0.478523,0.478523,0.25239,11818717,0.63452,2020-01-17T23:26:00.989949,18626384,0.85169,2.06,2.16,1.86,2.03,3181, 18606587,Livepeer,0.474351,0.474351,0.25016,11809173,0.63468,2020-01-16T23:26:04.377959,18606587,0.84318,1.95,2.06,1.78,2.06,6750, 18586755,Livepeer,0.470303,0.470303,0.25807,11645171,0.62653,2020-01-15T23:26:00.353529,18586755,0.84974,1.95,1.98,1.76,1.95,2153, 18566888,Livepeer,0.466952,0.466952,0.46028,9334038,0.50272,2020-01-14T23:26:04.145412,18566888,1.14216,1.91,2.08,1.68,1.95,8052, 18546988,Livepeer,0.463061,0.463061,0.23291,11960555,0.64488,2020-01-13T20:26:06.920249,18546988,0.80382,1.67,2.08,1.64,1.9,6813, 18526566,Livepeer,0.461831,0.461831,0.23271,11941191,0.64454,2020-01-12T23:25:57.503023,18526566,0.80202,1.29,3.04,1.29,1.67,14865, 18507690,Livepeer,0.460821,0.460821,0.23201,11932895,0.64475,2020-01-11T23:28:12.002557,18507690,0.79974,1.69,1.7,1.21,1.3,2470, 18468259,Livepeer,0.460867,0.460867,0.23284,11894204,0.64404,2020-01-10T23:28:12.316937,18468259,0.80101,1.32,1.69,1.26,1.69,5078, 18448491,Livepeer,0.459844,0.459844,0.22532,11998682,0.65039,2020-01-09T23:26:08.782826,18448491,0.78877,1.45,1.45,1.15,1.32,2870, 18428690,Livepeer,0.458567,0.458567,0.2253,11976263,0.64987,2020-01-08T23:31:07.189966,18428690,0.78719,1.47,1.55,1.42,1.45,3385, 18408857,Livepeer,0.457417,0.457417,0.22529,11954762,0.6494,2020-01-07T23:47:21.632765,18408857,0.78577,1.43,1.47,1.4,1.47,1948, 18388626,Livepeer,0.456114,0.456114,0.22533,11931123,0.64883,2020-01-06T23:49:25.561135,18388626,0.78421,1.37,1.53,1.37,1.43,1944, 18370824,Livepeer,0.454666,0.454666,0.22487,11916228,0.64865,2020-01-05T23:47:29.045408,18370824,0.78177,1.35,1.44,1.35,1.37,215, 18354734,Livepeer,0.453414,0.453414,0.22462,11900328,0.64835,2020-01-04T23:47:26.879382,18354734,0.77988,1.33,1.36,1.32,1.35,2136, 18337320,Livepeer,0.452205,0.452205,0.22564,11862477,0.6469,2020-01-03T23:45:41.553659,18337320,0.77988,1.26,1.35,1.26,1.33,328, 18306377,Livepeer,0.45246,0.45246,0.22656,11828967,0.64617,2020-01-02T23:49:33.494511,18306377,0.78153,1.37,1.37,1.25,1.26,537, 18286301,Livepeer,0.454058,0.454058,0.2277,11809386,0.6458,2020-01-01T23:25:57.669724,18286301,0.78514,1.32,1.46,1.32,1.37,462, 18286301,Livepeer,0.455894,0.455894,0.22852,11809772,0.64583,2019-12-31T23:28:11.535567,18286301,0.7886,1.32,1.4,1.32,1.32,1034, 18266194,Livepeer,0.45939,0.45939,0.23056,11789831,0.64544,2019-12-30T23:26:04.817695,18266194,0.79587,1.41,1.47,1.32,1.33,3274, 18246057,Livepeer,0.46278,0.46278,0.23742,11691762,0.64078,2019-12-29T23:26:05.752959,18246057,0.81007,1.32,1.41,1.32,1.41,499, 18225623,Livepeer,0.466066,0.466066,0.23949,11670515,0.64034,2019-12-28T23:26:04.729576,18225623,0.81717,1.31,1.34,1.31,1.32,240, 18205692,Livepeer,0.469383,0.469383,0.24147,11651388,0.63999,2019-12-27T23:28:17.246200,18205692,0.8242,1.29,1.42,1.23,1.31,3882, 18185464,Livepeer,0.473678,0.473678,0.24418,11627995,0.63941,2019-12-26T23:28:13.331725,18185464,0.83353,1.24,1.4,1.23,1.29,2331, 18163854,Livepeer,0.478355,0.478355,0.24698,11605469,0.63893,2019-12-25T23:26:02.151272,18163854,0.84348,1.23,1.24,1.22,1.24,2151, 18144915,Livepeer,0.483057,0.483057,0.24972,11585703,0.63851,2019-12-24T23:28:10.948604,18144915,0.85341,1.24,1.27,1.22,1.23,840, 18144238,Livepeer,0.485998,0.485998,0.25114,11585087,0.6385,2019-12-23T23:26:04.574560,18144238,0.85919,1.28,1.38,1.23,1.24,226, 18123917,Livepeer,0.490636,0.490636,0.25322,11573916,0.6386,2019-12-22T23:26:05.953133,18123917,0.8681,1.28,1.36,1.24,1.28,2016, 18104245,Livepeer,0.495462,0.495462,0.25602,11554008,0.63819,2019-12-21T23:26:11.644995,18104245,0.87833,1.32,1.32,1.27,1.28,442, 18083866,Livepeer,0.500005,0.500005,0.25955,11521217,0.6371,2019-12-20T23:28:12.413031,18083866,0.88933,1.31,1.32,1.23,1.32,1806, 18063456,Livepeer,0.504735,0.504735,0.26086,11521731,0.63785,2019-12-19T23:26:11.403104,18063456,0.89726,1.26,1.45,1.22,1.31,2367, 18043017,Livepeer,0.509468,0.509468,0.26377,11499276,0.63733,2019-12-18T23:26:10.973310,18043017,0.90762,1.28,1.44,1.24,1.26,6231, 18022548,Livepeer,0.514851,0.514851,0.26637,11485634,0.63729,2019-12-17T23:26:05.509742,18022548,0.91837,1.33,1.35,1.27,1.28,5855, 18002048,Livepeer,0.519748,0.519748,0.26606,11509123,0.63932,2019-12-16T23:26:05.415499,18002048,0.92409,1.45,1.45,1.32,1.33,593, 18001779,Livepeer,0.52277,0.52277,0.26728,11511708,0.63948,2019-12-15T23:26:08.821123,18001779,0.92977,1.45,1.45,1.36,1.45,6277, 17981519,Livepeer,0.52764,0.52764,0.27038,11487576,0.63886,2019-12-14T23:26:15.530919,17981519,0.94068,1.54,1.54,1.43,1.45,2721, 17960962,Livepeer,0.532352,0.532352,0.27314,11466986,0.63844,2019-12-13T23:26:14.520088,17960962,0.9509,1.45,1.54,1.39,1.54,3193, 17940375,Livepeer,0.53613,0.53613,0.27538,11447564,0.63809,2019-12-12T23:26:18.378314,17940375,0.95916,1.42,1.45,1.37,1.45,1312, 17919760,Livepeer,0.539047,0.539047,0.27733,11426814,0.63767,2019-12-11T23:25:59.935571,17919760,0.96587,1.42,1.56,1.39,1.42,288, 17899117,Livepeer,0.542201,0.542201,0.27926,11407756,0.63734,2019-12-10T23:26:10.376187,17899117,0.97288,1.57,1.59,1.06,1.42,8108, 17878445,Livepeer,0.544778,0.544778,0.28088,11389268,0.63704,2019-12-09T23:27:06.222692,17878445,0.97868,1.6,1.63,1.54,1.57,1531, 17857745,Livepeer,0.548331,0.548331,0.28297,11370778,0.63674,2019-12-08T23:26:14.444971,17857745,0.98646,1.64,1.67,1.56,1.6,4989, 17837017,Livepeer,0.552064,0.552064,0.28519,11351724,0.63641,2019-12-07T23:26:37.787304,17837017,0.99469,1.66,1.74,1.61,1.64,1388, 17816261,Livepeer,0.555759,0.555759,0.28754,11330814,0.63598,2019-12-06T23:32:51.416959,17816261,1.0031,1.77,1.77,1.58,1.66,3576, 17795477,Livepeer,0.559548,0.559548,0.2894,11316672,0.63593,2019-12-05T23:28:38.995606,17795477,1.01089,1.67,1.77,1.64,1.76,362, 17774665,Livepeer,0.563845,0.563845,0.29204,11295852,0.6355,2019-12-04T23:32:56.796047,17774665,1.02055,1.71,1.77,1.66,1.67,2092, 17753826,Livepeer,0.568083,0.568083,0.2947,11274526,0.63505,2019-12-03T23:35:08.355269,17753826,1.0302,1.76,1.78,1.71,1.71,2228, 17732960,Livepeer,0.57187,0.57187,0.29711,11253800,0.63463,2019-12-02T23:35:17.977124,17732960,1.03889,1.94,1.97,1.57,1.76,9119, 17712066,Livepeer,0.576082,0.576082,0.29695,11266692,0.6361,2019-12-01T23:37:23.961346,17712066,1.0441,1.94,1.94,1.72,1.94,5745, 17691145,Livepeer,0.580288,0.580288,0.29937,11248005,0.6358,2019-11-30T23:31:08.877489,17691145,1.05338,2.03,2.06,1.88,1.94,5662, 17670198,Livepeer,0.584336,0.584336,0.30174,11229126,0.63548,2019-11-29T23:28:51.798310,17670198,1.06239,1.98,2.05,1.89,2.03,2469, 17650062,Livepeer,0.588534,0.588534,0.30435,11208854,0.63506,2019-11-28T23:26:47.897596,17650062,1.072,2,2.08,1.97,1.98,1427, 17629902,Livepeer,0.592652,0.592652,0.30718,11185590,0.63447,2019-11-27T23:30:56.676794,17629902,1.08189,1.9,2.04,1.88,2,845, 17609717,Livepeer,0.597131,0.597131,0.31008,11163705,0.63395,2019-11-26T23:26:58.141824,17609717,1.09237,1.89,1.94,1.88,1.92,1455, 17588663,Livepeer,0.601157,0.601157,0.32021,11057098,0.62865,2019-11-25T23:30:59.342261,17588663,1.11387,1.85,1.94,1.74,1.89,1521, 17567584,Livepeer,0.604571,0.604571,0.32202,11042269,0.62856,2019-11-24T23:30:56.769335,17567584,1.12127,1.98,1.99,1.85,1.85,4463, 17546478,Livepeer,0.607246,0.607246,0.32401,11021363,0.62812,2019-11-23T23:26:36.899065,17546478,1.12801,1.99,2.12,1.92,1.98,646, 17525348,Livepeer,0.609709,0.609709,0.32593,11000153,0.62767,2019-11-22T23:26:35.843005,17525348,1.13436,2.04,2.12,1.84,1.99,2109, 17504191,Livepeer,0.612708,0.612708,0.32807,10979505,0.62725,2019-11-21T23:32:57.503812,17504191,1.14179,2.2,2.24,2.04,2.04,5478, 17483009,Livepeer,0.615433,0.615433,0.32997,10960057,0.6269,2019-11-20T23:30:43.192555,17483009,1.14848,2.16,2.34,2.15,2.2,3315, 17461803,Livepeer,0.618954,0.618954,0.33202,10943271,0.6267,2019-11-19T23:26:47.006718,17461803,1.15648,2.22,2.25,2.16,2.16,3867, 17440571,Livepeer,0.62307,0.62307,0.33462,10923747,0.62634,2019-11-18T23:36:44.032322,17440571,1.16618,2.3,2.4,2.21,2.22,1028, 17419314,Livepeer,0.626287,0.626287,0.33699,10902109,0.62586,2019-11-17T23:29:54.413360,17419314,1.17432,2.29,2.37,2.24,2.3,7964, 17398033,Livepeer,0.629787,0.629787,0.33949,10880634,0.6254,2019-11-16T23:26:34.488492,17398033,1.18308,2.26,2.31,2.13,2.29,2257, 17376727,Livepeer,0.633282,0.633282,0.34181,10861051,0.62503,2019-11-15T23:28:15.102358,17376727,1.19155,2.35,2.35,2.21,2.26,1082, 17355397,Livepeer,0.636645,0.636645,0.34419,10840287,0.62461,2019-11-14T23:26:25.924016,17355397,1.19996,2.42,2.42,2.29,2.35,1524, 17334285,Livepeer,0.639957,0.639957,0.34618,10823429,0.62439,2019-11-13T23:26:29.712772,17334285,1.20768,2.36,3.26,2.32,2.42,7312, 17313149,Livepeer,0.643638,0.643638,0.34892,10800895,0.62386,2019-11-12T23:26:32.325501,17313149,1.21714,2.38,2.43,2.27,2.36,4745, 17291990,Livepeer,0.647047,0.647047,0.35731,10721229,0.62001,2019-11-11T23:26:27.756290,17291990,1.23555,2.41,2.44,2.35,2.38,2767, 17271573,Livepeer,0.650897,0.650897,0.36009,10700339,0.61954,2019-11-10T23:52:48.522052,17271573,1.24537,2.21,2.52,2.19,2.41,7632, 17250759,Livepeer,0.654313,0.654313,0.36338,10672352,0.61866,2019-11-09T23:42:10.900707,17250759,1.25546,2.22,2.29,2.21,2.21,1522, 17212151,Livepeer,0.659731,0.659731,0.36767,10633790,0.61781,2019-11-08T23:26:33.986632,17212151,1.26996,2.36,2.36,2.21,2.22,5213, 17192145,Livepeer,0.662531,0.662531,0.37004,10612530,0.61729,2019-11-07T23:26:50.700286,17192145,1.27773,2.48,2.5,2.34,2.36,9411, 17170709,Livepeer,0.665234,0.665234,0.37501,10565749,0.61534,2019-11-06T23:53:29.421217,17170709,1.28972,2.5,2.54,2.34,2.48,9753, 17149253,Livepeer,0.667999,0.667999,0.37707,10546751,0.615,2019-11-05T23:53:26.836381,17149253,1.29694,2.65,2.65,2.44,2.5,1531, 17127791,Livepeer,0.67056,0.67056,0.38109,10508885,0.61356,2019-11-04T23:53:34.383858,17127791,1.30719,2.52,2.66,2.48,2.65,1768, 17106309,Livepeer,0.673776,0.673776,0.38606,10465919,0.61182,2019-11-03T23:53:28.972914,17106309,1.31995,2.06,2.63,2.06,2.52,4014, 17085819,Livepeer,0.676391,0.676391,0.38844,10444370,0.61129,2019-11-02T23:53:25.782054,17085819,1.32757,2.29,2.7,2.06,2.06,6018, 17065327,Livepeer,0.67965,0.67965,0.39105,10423920,0.61082,2019-11-01T23:53:24.542146,17065327,1.33647,2.27,2.43,2.15,2.29,9651, 17044886,Livepeer,0.68236,0.68236,0.39366,10401022,0.61021,2019-10-31T23:53:20.547211,17044886,1.34464,2.55,2.66,2.17,2.27,17147, 17024161,Livepeer,0.68541,0.68541,0.40961,10265518,0.603,2019-10-30T23:53:35.420652,17024161,1.37577,2.81,2.81,2.51,2.55,13650, 17002943,Livepeer,0.688249,0.688249,0.41237,10242702,0.60241,2019-10-29T23:53:30.867082,17002943,1.38442,2.76,2.93,2.61,2.68,2314, 16981771,Livepeer,0.691191,0.691191,0.415,10221547,0.60191,2019-10-28T23:53:41.735368,16981771,1.39303,2.73,3.01,2.6,2.76,20526, 16959997,Livepeer,0.694078,0.694078,0.41932,10186069,0.60059,2019-10-27T23:53:25.527218,16959997,1.40443,2.53,3.05,2.5,2.74,12892, 16916985,Livepeer,0.699076,0.699076,0.42433,10142174,0.59953,2019-10-26T23:53:27.378139,16916985,1.42004,2.42,2.76,2.34,2.53,8479, 16895149,Livepeer,0.701972,0.701972,0.42682,10122065,0.59911,2019-10-25T23:53:33.782688,16895149,1.42841,2.13,2.43,2.03,2.42,7347, 16873293,Livepeer,0.705211,0.705211,0.42948,10102227,0.59871,2019-10-24T23:53:29.091554,16873293,1.43757,2.03,2.17,1.99,2.13,9132, 16851417,Livepeer,0.708016,0.708016,0.43236,10078839,0.5981,2019-10-23T23:53:26.081635,16851417,1.4465,2.32,2.33,1.97,2.03,8140, 16829520,Livepeer,0.710181,0.710181,0.43482,10056020,0.59752,2019-10-22T23:53:34.071398,16829520,1.4538,2.56,2.56,2.19,2.32,16508, 16807603,Livepeer,0.712007,0.712007,0.43752,10029981,0.59675,2019-10-21T23:53:35.668376,16807603,1.46104,2.07,2.86,2.07,2.56,24629, 16785666,Livepeer,0.71426,0.71426,0.43929,10013067,0.59652,2019-10-20T23:53:30.009846,16785666,1.46731,2.31,2.31,2.03,2.07,6006, 16763709,Livepeer,0.716653,0.716653,0.4417,9991830,0.59604,2019-10-19T23:53:40.015942,16763709,1.47491,2.42,2.42,2.12,2.31,24779, 16741733,Livepeer,0.718749,0.718749,0.44406,9969854,0.59551,2019-10-18T23:57:50.256594,16741733,1.48198,2.43,2.56,2.15,2.42,39027, 16719737,Livepeer,0.721434,0.721434,0.44662,9948989,0.59504,2019-10-17T23:55:42.763402,16719737,1.49026,2.46,2.58,2.18,2.43,39428, 16688316,Livepeer,0.724245,0.724245,0.4649,9807404,0.58768,2019-10-16T23:53:02.567425,16688316,1.52585,2.67,2.81,2.34,2.46,6111, 16653644,Livepeer,0.728375,0.728375,0.46917,9774059,0.5869,2019-10-15T23:53:00.913496,16653644,1.53928,2.75,3.12,2.62,2.67,17368, 16631576,Livepeer,0.730764,0.730764,0.47122,9756672,0.58664,2019-10-14T23:52:48.457426,16631576,1.54633,2.93,3.27,2.68,2.75,12561, 16609490,Livepeer,0.733137,0.733137,0.47376,9735805,0.58616,2019-10-13T23:52:55.929198,16609490,1.55422,3.09,3.17,2.92,2.93,2054, 16587907,Livepeer,0.735622,0.735622,0.47654,9714099,0.58561,2019-10-12T23:52:55.888036,16587907,1.56271,3.1,3.19,3.07,3.09,5414, 16566306,Livepeer,0.738006,0.738006,0.47931,9692143,0.58505,2019-10-11T23:52:51.775074,16566306,1.57105,3.38,3.39,3.01,3.1,19185, 16544164,Livepeer,0.740526,0.740526,0.48466,9652782,0.58346,2019-10-10T23:52:57.349687,16544164,1.58409,3.44,3.46,3.15,3.38,30688, 16521063,Livepeer,0.742543,0.742543,0.48884,9619193,0.58224,2019-10-09T23:52:44.595302,16521063,1.59437,3.34,3.51,3.29,3.44,16259, 16499826,Livepeer,0.74513,0.74513,0.49189,9596936,0.58164,2019-10-08T23:53:14.139843,16499826,1.60354,3.37,3.49,3.3,3.34,10802, 16477631,Livepeer,0.747691,0.747691,0.49486,9574651,0.58107,2019-10-07T23:53:08.090709,16477631,1.61256,3.38,3.55,3.29,3.37,19995, 16433189,Livepeer,0.751977,0.751977,0.50035,9530025,0.57993,2019-10-06T23:53:07.214441,16433189,1.62858,3.33,3.41,3.2,3.38,5883, 16410942,Livepeer,0.754147,0.754147,0.50321,9507198,0.57932,2019-10-05T23:52:49.743419,16410942,1.63685,3.38,3.41,3.31,3.33,2651, 16388962,Livepeer,0.755976,0.755976,0.50607,9483237,0.57864,2019-10-04T23:52:50.991678,16388962,1.64463,3.39,3.46,3.32,3.38,10735, 16366681,Livepeer,0.75814,0.75814,0.50832,9464529,0.57828,2019-10-03T23:54:13.889613,16366681,1.65184,3.36,3.43,3.27,3.39,3514, 16344386,Livepeer,0.760124,0.760124,0.5199,9386022,0.57427,2019-10-02T23:53:00.505614,16344386,1.67521,3.35,3.57,3.21,3.36,25550, 16322074,Livepeer,0.762971,0.762971,0.52393,9359416,0.57342,2019-10-01T23:53:06.918364,16322074,1.68664,3.45,3.57,3.32,3.35,18806, 16299749,Livepeer,0.764877,0.764877,0.53805,9267654,0.56858,2019-09-30T23:53:07.146172,16299749,1.71448,3.28,3.49,3.23,3.45,29288, 16277407,Livepeer,0.767141,0.767141,0.54133,9244240,0.56792,2019-09-29T23:53:04.396992,16277407,1.72375,3.62,3.62,3.25,3.28,7458, 16255050,Livepeer,0.769297,0.769297,0.54436,9221983,0.56733,2019-09-28T23:52:50.865455,16255050,1.73244,3.61,3.68,3.41,3.62,2329, 16210289,Livepeer,0.77344,0.77344,0.55076,9175142,0.56601,2019-09-27T23:55:53.319048,16210289,1.75018,3.65,3.71,3.45,3.61,11109, 16187886,Livepeer,0.776012,0.776012,0.56045,9116376,0.56316,2019-09-26T23:53:09.771145,16187886,1.77138,3.75,3.95,3.52,3.65,12074, 16165471,Livepeer,0.778316,0.778316,0.57337,9039636,0.55919,2019-09-25T23:53:14.905470,16165471,1.79794,3.5,4.16,3.46,3.75,28620, 16143040,Livepeer,0.780891,0.780891,0.56097,9107054,0.56415,2019-09-24T23:53:04.250231,16143040,1.77992,4,4.27,3.38,3.5,21035, 16120619,Livepeer,0.784129,0.784129,0.67023,8541901,0.52987,2019-09-23T23:53:47.352047,16120619,1.97991,4.02,4.56,3.98,4,13389, -------------------------------------------------------------------------------- /parametrization/df_tezos.csv: -------------------------------------------------------------------------------- 1 | circulating_supply,currency,inflation,inflation_total,real_yield,staked_supply,staking_rate,total_supply,yield,timestamp,open,high,low,close,volume,market_cap 824008438,Tezos,0.050605,0.050605,0.01428,635616000,0.77137,824008438,0.0656,2020-01-27,1.52,1.54,1.49,1.53,44520219,1059238633 823896218,Tezos,0.050616,0.050616,0.01425,635816000,0.77172,823896218,0.06559,2020-01-26,1.5,1.53,1.47,1.52,43363397,1057063607 823783057,Tezos,0.050616,0.050616,0.01425,635776000,0.77178,823783057,0.06558,2020-01-25,1.52,1.52,1.47,1.5,44078895,1038410748 823670606,Tezos,0.05061,0.05061,0.01472,630904000,0.76597,823670606,0.06607,2020-01-24,1.56,1.57,1.5,1.52,48576603,1053322115 823558333,Tezos,0.050611,0.050611,0.01506,627376000,0.76179,823558333,0.06644,2020-01-23,1.59,1.62,1.5,1.55,65348600,1078286026 823446817,Tezos,0.050605,0.050605,0.01508,627144000,0.76161,823446817,0.06644,2020-01-22,1.54,1.64,1.53,1.59,47055144,1105004314 823334898,Tezos,0.050604,0.050604,0.01515,626336000,0.76073,823334898,0.06652,2020-01-21,1.59,1.61,1.5,1.53,51586798,1065444584 823223424,Tezos,0.050609,0.050609,0.01514,626328000,0.76082,823223424,0.06652,2020-01-20,1.42,1.59,1.41,1.59,60224151,1102454966 823095080,Tezos,0.050617,0.050617,0.01439,633744000,0.76995,823095080,0.06574,2020-01-19,1.49,1.52,1.37,1.42,46261834,987050590 823003294,Tezos,0.050623,0.050623,0.01446,633064000,0.76921,823003294,0.06581,2020-01-18,1.47,1.54,1.42,1.49,49645136,1033489226 822890494,Tezos,0.050614,0.050614,0.01448,632728000,0.76891,822890494,0.06583,2020-01-17,1.49,1.53,1.44,1.48,63542861,1024091459 822777605,Tezos,0.050578,0.050578,0.01447,632608000,0.76887,822777605,0.06578,2020-01-16,1.34,1.52,1.3,1.49,67302241,1037213520 822664294,Tezos,0.050549,0.050549,0.0145,632136000,0.7684,822664294,0.06578,2020-01-15,1.33,1.4,1.3,1.34,59355419,932175745 822551019,Tezos,0.050536,0.050536,0.01467,630360000,0.76635,822551019,0.06594,2020-01-14,1.28,1.36,1.27,1.33,53074477,924801443 822437429,Tezos,0.050517,0.050517,0.01476,629256000,0.76511,822437429,0.06603,2020-01-13,1.31,1.31,1.27,1.28,36870088,888218070 822327378,Tezos,0.050522,0.050522,0.01491,627680000,0.7633,822327378,0.06619,2020-01-12,1.31,1.32,1.3,1.31,30492207,909993423 822218662,Tezos,0.050542,0.050542,0.01494,627368000,0.76302,822218662,0.06624,2020-01-11,1.31,1.35,1.3,1.31,39100862,906142415 822106440,Tezos,0.050547,0.050547,0.01501,626616000,0.76221,822106440,0.06632,2020-01-10,1.29,1.33,1.26,1.31,41884562,906795252 821995456,Tezos,0.05056,0.05056,0.01541,622672000,0.75751,821995456,0.06675,2020-01-09,1.33,1.37,1.27,1.29,47676368,895458247 821885702,Tezos,0.050575,0.050575,0.01568,619944000,0.7543,821885702,0.06705,2020-01-08,1.3,1.4,1.27,1.33,49431499,925780956 821775174,Tezos,0.050583,0.050583,0.01574,619336000,0.75366,821775174,0.06712,2020-01-07,1.31,1.33,1.26,1.3,49139469,901265968 821665275,Tezos,0.050603,0.050603,0.01581,618656000,0.75293,821665275,0.06721,2020-01-06,1.26,1.34,1.26,1.31,43088423,906258204 821555819,Tezos,0.05061,0.05061,0.01586,618112000,0.75237,821555819,0.06727,2020-01-05,1.26,1.3,1.25,1.26,36629230,877159747 821445753,Tezos,0.050612,0.050612,0.01582,618352000,0.75276,821445753,0.06723,2020-01-04,1.28,1.3,1.23,1.26,38156086,876029669 821337825,Tezos,0.050627,0.050627,0.01588,617760000,0.75214,821337825,0.06731,2020-01-03,1.24,1.31,1.24,1.28,43721354,890109980 821228930,Tezos,0.050643,0.050643,0.01595,617040000,0.75136,821228930,0.0674,2020-01-02,1.37,1.38,1.23,1.24,37676355,861516905 821117022,Tezos,0.050656,0.050656,0.01589,617624000,0.75218,821117022,0.06735,2020-01-01,1.35,1.37,1.32,1.37,35642475,951188893 821005799,Tezos,0.050664,0.050664,0.01595,616904000,0.7514,821005799,0.06743,2019-12-31,1.33,1.4,1.31,1.35,42638601,938725945 820893849,Tezos,0.050667,0.050667,0.01595,616824000,0.7514,820893849,0.06743,2019-12-30,1.31,1.36,1.3,1.33,41116951,924752288 820782270,Tezos,0.050683,0.050683,0.016,616304000,0.75087,820782270,0.0675,2019-12-29,1.33,1.36,1.29,1.31,45413699,911327054 820670046,Tezos,0.050681,0.050681,0.01602,616048000,0.75066,820670046,0.06752,2019-12-28,1.38,1.39,1.33,1.33,43957470,921074564 820557233,Tezos,0.050665,0.050665,0.01597,616456000,0.75126,820557233,0.06744,2019-12-27,1.37,1.41,1.36,1.38,38176059,960368527 820445165,Tezos,0.050656,0.050656,0.016,615992000,0.7508,820445165,0.06747,2019-12-26,1.41,1.43,1.35,1.37,47649174,952053087 820335604,Tezos,0.050652,0.050652,0.01602,615776000,0.75064,820335604,0.06748,2019-12-25,1.5,1.5,1.4,1.41,40558090,981628328 820225008,Tezos,0.050624,0.050624,0.01602,615576000,0.7505,820225008,0.06745,2019-12-24,1.52,1.54,1.49,1.5,37812261,1038174056 820115958,Tezos,0.050606,0.050606,0.01589,616656000,0.75191,820115958,0.0673,2019-12-23,1.47,1.58,1.46,1.52,56083425,1054365471 820007303,Tezos,0.05058,0.05058,0.01597,615776000,0.75094,820007303,0.06736,2019-12-22,1.48,1.53,1.45,1.47,50459429,1018816410 819896827,Tezos,0.050544,0.050544,0.01598,615480000,0.75068,819896827,0.06733,2019-12-21,1.6,1.61,1.48,1.48,49226920,1026339209 819785969,Tezos,0.050514,0.050514,0.01603,614864000,0.75003,819785969,0.06735,2019-12-20,1.51,1.6,1.49,1.6,58433436,1110696671 819675786,Tezos,0.050483,0.050483,0.01629,612208000,0.74689,819675786,0.06759,2019-12-19,1.59,1.62,1.47,1.51,62825585,1051017023 819566437,Tezos,0.050447,0.050447,0.01673,607816000,0.74163,819566437,0.06802,2019-12-18,1.54,1.62,1.45,1.6,90681124,1107937773 819460527,Tezos,0.05043,0.05043,0.01679,607136000,0.7409,819460527,0.06807,2019-12-17,1.67,1.77,1.52,1.54,92967379,1017781983 819354944,Tezos,0.050405,0.050405,0.01685,606456000,0.74016,819354944,0.0681,2019-12-16,1.68,1.71,1.61,1.67,68707545,1104646482 810904882,Tezos,0.051032,0.051032,0.01919,581200000,0.71673,810904882,0.0712,2019-10-18,0.895843,0.898314,0.869977,0.877796,10666948,579673087 810904892,Tezos,0.051036,0.051036,0.01919,581200000,0.71673,810904892,0.07121,2019-10-17,0.876521,0.899669,0.872991,0.895843,11185558,591591209 810904943,Tezos,0.051017,0.051017,0.01918,581200000,0.71673,810904943,0.07118,2019-10-16,0.909666,0.913004,0.861378,0.876968,12766002,579126752 810904999,Tezos,0.05096,0.05096,0.01916,581200000,0.71673,810904999,0.0711,2019-10-15,0.939501,0.961195,0.902323,0.907378,17300340,599208238 810579940,Tezos,0.050983,0.050983,0.01959,577384000,0.71231,810579940,0.07157,2019-10-14,0.903695,0.942667,0.897807,0.941266,16242661,621587341 810580010,Tezos,0.050956,0.050956,0.01958,577384000,0.71231,810580010,0.07154,2019-10-13,0.893087,0.967,0.88628,0.903695,19773441,596776442 810580062,Tezos,0.051001,0.051001,0.0196,577384000,0.71231,810580062,0.0716,2019-10-12,0.911203,0.921544,0.850423,0.8931,19332567,589779872 810256675,Tezos,0.05107,0.05107,0.01962,577160000,0.71232,810256675,0.07169,2019-10-11,0.913683,0.920685,0.885656,0.914116,18114188,603658112 810256750,Tezos,0.051048,0.051048,0.01962,577160000,0.71232,810256750,0.07166,2019-10-10,0.942845,0.944412,0.913233,0.915035,24538307,604264912 810257025,Tezos,0.051047,0.051047,0.01962,577160000,0.71232,810257025,0.07166,2019-10-09,0.899704,0.957093,0.894856,0.942926,16465901,622683648 809932251,Tezos,0.051129,0.051129,0.01967,576680000,0.71201,809932251,0.07181,2019-10-08,0.906241,0.915839,0.895083,0.899704,18299070,594140600 809932325,Tezos,0.051152,0.051152,0.01968,576680000,0.71201,809932325,0.07184,2019-10-07,0.87599,0.924249,0.867754,0.906686,16375621,598751227 809932374,Tezos,0.051145,0.051145,0.01976,576000000,0.71117,809932374,0.07192,2019-10-06,0.912324,0.91377,0.872431,0.876948,12691818,579113086 809607257,Tezos,0.051216,0.051216,0.01976,576000000,0.71146,809607257,0.07199,2019-10-05,0.923275,0.924122,0.902212,0.912535,13070972,602614044 809607309,Tezos,0.051192,0.051192,0.01975,576000000,0.71146,809607309,0.07195,2019-10-04,0.934931,0.93567,0.901729,0.923275,14953450,609706365 809607367,Tezos,0.051182,0.051182,0.01983,575320000,0.71062,809607367,0.07202,2019-10-03,0.943783,0.965669,0.917273,0.935255,11184781,617617831 809283287,Tezos,0.051214,0.051214,0.01981,575320000,0.7109,809283287,0.07204,2019-10-02,0.953811,0.953811,0.893671,0.943158,17174252,622836475 809283349,Tezos,0.051198,0.051198,0.01981,575320000,0.7109,809283349,0.07202,2019-10-01,0.90424,0.997532,0.898776,0.953637,13349266,629756396 809283414,Tezos,0.051187,0.051187,0.0198,575320000,0.7109,809283414,0.072,2019-09-30,0.888097,0.91842,0.853907,0.903533,15800572,596669068 808959502,Tezos,0.051206,0.051206,0.0199,574336000,0.70997,808959502,0.07212,2019-09-29,0.893418,0.916808,0.869514,0.887902,11871749,586346796 808959561,Tezos,0.051171,0.051171,0.01989,574336000,0.70997,808959561,0.07207,2019-09-28,0.895378,0.916559,0.868757,0.893673,9062006,590158131 808637615,Tezos,0.051205,0.051205,0.01944,577952000,0.71472,808637615,0.07164,2019-09-27,0.850902,0.899908,0.824431,0.895409,17459138,591304774 808637676,Tezos,0.051158,0.051158,0.01943,577952000,0.71472,808637676,0.07158,2019-09-26,0.854433,0.913537,0.821401,0.851353,12848761,562210845 808637616,Tezos,0.051153,0.051153,0.01942,577952000,0.71472,808637616,0.07157,2019-09-25,0.889105,0.909275,0.818959,0.854977,24468658,564604498 808317149,Tezos,0.051163,0.051163,0.01967,575656000,0.71217,808317149,0.07184,2019-09-24,1.05,1.09,0.852477,0.892636,25188778,589473410 808317242,Tezos,0.051183,0.051183,0.01968,575656000,0.71217,808317242,0.07187,2019-09-23,1.05,1.14,1.02,1.05,18341225,696104355 808317309,Tezos,0.051079,0.051079,0.01964,575656000,0.71217,808317309,0.07172,2019-09-22,1.07,1.08,1.05,1.06,8594941,696868198 807995519,Tezos,0.050847,0.050847,0.01954,575552000,0.71232,807995519,0.07138,2019-09-20,1.1,1.11,1.05,1.06,14160437,701240151 807995525,Tezos,0.0508,0.0508,0.01952,575552000,0.71232,807995525,0.07132,2019-09-19,1.09,1.12,1.03,1.1,12359739,727542370 807685226,Tezos,0.050649,0.050649,0.0194,575880000,0.713,807685226,0.07104,2019-09-17,1,1.1,0.997298,1.1,10580481,723533677 807360752,Tezos,0.0507,0.0507,0.0195,574976000,0.71217,807360752,0.07119,2019-09-16,1,1.01,0.985511,1,7211469,662162197 807360759,Tezos,0.050717,0.050717,0.01951,574976000,0.71217,807360759,0.07121,2019-09-15,1,1.02,0.988586,1,9925484,662384863 807360768,Tezos,0.050617,0.050617,0.01947,574976000,0.71217,807360768,0.07107,2019-09-14,0.977167,1.01,0.961925,1,8114227,661750058 807037659,Tezos,0.050431,0.050431,0.01942,574648000,0.71205,807037659,0.07083,2019-09-13,1.01,1.02,0.957123,0.975547,9376392,644225711 807037668,Tezos,0.05015,0.05015,0.01931,574648000,0.71205,807037668,0.07043,2019-09-12,1.01,1.02,0.993832,1.01,9235470,666508432 807037676,Tezos,0.049932,0.049932,0.01923,574648000,0.71205,807037676,0.07012,2019-09-11,1.02,1.03,0.994984,1.01,8953230,664542321 806714584,Tezos,0.050105,0.050105,0.0196,571808000,0.70881,806714584,0.07069,2019-09-10,1.04,1.04,1.02,1.02,9247187,675748704 806714594,Tezos,0.050135,0.050135,0.01961,571808000,0.70881,806714594,0.07073,2019-09-09,1.06,1.11,1.03,1.04,11308139,687583237 806714603,Tezos,0.050192,0.050192,0.01963,571808000,0.70881,806714603,0.07081,2019-09-08,1.03,1.08,1.02,1.07,10251627,703564280 806392299,Tezos,0.05025,0.05025,0.02003,568424000,0.7049,806392299,0.07129,2019-09-07,0.998955,1.04,0.977403,1.03,13451858,679683395 806392311,Tezos,0.050258,0.050258,0.02003,568424000,0.7049,806392311,0.0713,2019-09-06,1.01,1.03,0.993146,1,11010600,660508589 806392323,Tezos,0.050192,0.050192,0.02001,568424000,0.7049,806392323,0.07121,2019-09-05,1.03,1.04,1,1.01,9221482,669826900 806071727,Tezos,0.050389,0.050389,0.02015,567656000,0.70422,806071727,0.07155,2019-09-03,1.06,1.07,1.03,1.04,11137913,688841250 806071743,Tezos,0.050616,0.050616,0.02023,567656000,0.70422,806071743,0.07188,2019-09-02,1.03,1.08,1.03,1.06,9758386,697810467 805753486,Tezos,0.051052,0.051052,0.02041,567328000,0.7041,805753486,0.07251,2019-09-01,1.05,1.06,1.01,1.03,8250825,681637980 805753493,Tezos,0.050967,0.050967,0.02038,567328000,0.7041,805753493,0.07239,2019-08-31,1.07,1.08,1.01,1.04,10847063,687684125 805753499,Tezos,0.05095,0.05095,0.02037,567328000,0.7041,805753499,0.07236,2019-08-30,0.998172,1.07,0.991567,1.06,10015534,703253249 805435054,Tezos,0.050798,0.050798,0.0204,566376000,0.70319,805435054,0.07224,2019-08-27,1.16,1.17,1.12,1.13,8137996,745097752 805115445,Tezos,0.050686,0.050686,0.02049,565088000,0.70187,805115445,0.07222,2019-08-26,1.14,1.18,1.13,1.16,8943795,765358762 805115454,Tezos,0.050512,0.050512,0.02042,565088000,0.70187,805115454,0.07197,2019-08-25,1.15,1.16,1.13,1.14,7996369,754098350 805115460,Tezos,0.050442,0.050442,0.0204,565088000,0.70187,805115460,0.07187,2019-08-24,1.17,1.18,1.12,1.15,9414392,758721110 804765427,Tezos,0.050386,0.050386,0.02044,564344000,0.70125,804765427,0.07185,2019-08-23,1.14,1.2,1.13,1.17,9906828,772431594 804765438,Tezos,0.050343,0.050343,0.02042,564344000,0.70125,804765438,0.07179,2019-08-22,1.12,1.15,1.1,1.14,8824747,752276973 804765447,Tezos,0.050338,0.050338,0.02042,564344000,0.70125,804765447,0.07178,2019-08-21,1.16,1.16,1.1,1.12,11809364,738442909 804442503,Tezos,0.050306,0.050306,0.02024,565520000,0.703,804442503,0.07156,2019-08-20,1.21,1.22,1.16,1.16,6759399,766459768 804442511,Tezos,0.050273,0.050273,0.02022,565520000,0.703,804442511,0.07151,2019-08-19,1.2,1.24,1.2,1.21,7024532,801513726 804442521,Tezos,0.05035,0.05035,0.02025,565520000,0.703,804442521,0.07162,2019-08-18,1.19,1.24,1.18,1.2,5300851,794345202 803794629,Tezos,0.050687,0.050687,0.02043,564680000,0.70252,803794629,0.07215,2019-08-14,1.26,1.28,1.15,1.16,10844927,769123801 803794639,Tezos,0.050866,0.050866,0.0205,564680000,0.70252,803794639,0.07241,2019-08-13,1.36,1.37,1.26,1.26,10432675,829436539 803794652,Tezos,0.050912,0.050912,0.02051,564680000,0.70252,803794652,0.07247,2019-08-12,1.38,1.39,1.36,1.36,8575614,899603980 803474396,Tezos,0.051053,0.051053,0.01989,570040000,0.70947,803474396,0.07196,2019-08-11,1.39,1.41,1.37,1.38,8402166,908558771 803474411,Tezos,0.051078,0.051078,0.0199,570040000,0.70947,803474411,0.07199,2019-08-10,1.43,1.44,1.36,1.39,11888934,919898719 803474424,Tezos,0.051133,0.051133,0.01992,570040000,0.70947,803474424,0.07207,2019-08-09,1.55,1.56,1.37,1.43,23985476,946513275 803213428,Tezos,0.051185,0.051185,0.01983,570744000,0.71058,803213428,0.07203,2019-08-08,1.35,1.73,1.34,1.55,36246315,1023902326 803213438,Tezos,0.051178,0.051178,0.01983,570744000,0.71058,803213438,0.07202,2019-08-07,1.47,1.48,1.35,1.35,11480552,892389418 803213449,Tezos,0.051063,0.051063,0.01979,570744000,0.71058,803213449,0.07186,2019-08-06,1.46,1.6,1.37,1.47,19160485,971497468 802894255,Tezos,0.051016,0.051016,0.01979,570376000,0.7104,802894255,0.07181,2019-08-05,1.44,1.5,1.35,1.46,12705167,964815639 802894268,Tezos,0.050996,0.050996,0.01978,570376000,0.7104,802894268,0.07178,2019-08-04,1.43,1.49,1.4,1.44,9783266,948979104 802894285,Tezos,0.05092,0.05092,0.01975,570376000,0.7104,802894285,0.07168,2019-08-03,1.43,1.46,1.38,1.43,9722877,942911870 802576881,Tezos,0.050716,0.050716,0.01982,568936000,0.70889,802576881,0.07154,2019-08-01,1.27,1.45,1.25,1.4,12828552,927016196 802265028,Tezos,0.050659,0.050659,0.0198,568744000,0.70892,802265028,0.07146,2019-07-31,1.22,1.29,1.21,1.27,11125338,837805544 802265038,Tezos,0.050612,0.050612,0.01978,568744000,0.70892,802265038,0.07139,2019-07-30,1.01,1.27,1,1.22,14364108,806101102 802265047,Tezos,0.050501,0.050501,0.01974,568744000,0.70892,802265047,0.07124,2019-07-29,1.02,1.04,1.01,1.01,5208906,669420206 801947367,Tezos,0.05046,0.05046,0.0197,568728000,0.70918,801947367,0.07115,2019-07-27,1.04,1.06,0.992433,1.02,4429452,670518156 -------------------------------------------------------------------------------- /parametrization/inflation_performanceBTC.csv: -------------------------------------------------------------------------------- 1 | Network,Early_InflationRate,Mainnet_Date,FirstPriceData_Date,BTCRate_@FirstPriceDate,BTCRate_@FirstPriceDate+6Months,Change_BTCRate cosmos,0.07,14/03/19,14/03/19,0.00165187,0.00030028,-0.818218141 livepeer,0.15,01/05/18,20/12/18,0.00242712,0.00087723,-0.63857164 iris,0.04,01/03/19,19/04/19,0.00002318,0.00000214,-0.907679034 algorand,0.07,11/06/19,21/06/19,0.00006761,0.00002797,-0.586303801 synthetix,0,19/03/18,14/03/18,0.00006052,0.00004133,-0.317085261 tezos (from first price),0,30/06/18,02/10/17,0.00044281,0.00038946,-0.120480567 tezos (from mainnet),0.055,30/06/18,02/10/17,0.00029161,0.000127,-0.564486815 -------------------------------------------------------------------------------- /slashing-proto.tex: -------------------------------------------------------------------------------- 1 | % !TEX root = mint-paper.tex 2 | 3 | \section{The slashing protocol} 4 | --------------------------------------------------------------------------------