-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
147 lines (123 loc) · 4.6 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
\documentclass[12pt,french,english,notitlepage]{report} % main lang last
%\documentclass[12pt,english, spanish, french]{thesis}
%
% usage notes:
% - Place figures in the /fig folder
% - Place chapters in the /chapters folder.
% - References should be included in ./mybib.bib
% Some page styling:
%\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
\usepackage[margin=0.7in]{geometry}
%\usepackage{fancyhdr}
%\pagestyle{fancy}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{caption}
\usepackage{subcaption}
% Interlineado
%\usepackage{setspace}
%\setstretch{1.5}
% Bibtex
%\usepackage{cite} % use cite with natbib but not with biblatex
%\usepackage{natbib}
\usepackage[style=numeric,backend=bibtex]{biblatex}
\bibliography{refs} % put here in preamble when using biblatex
\usepackage[titletoc]{appendix}
\usepackage{float}
\usepackage{graphicx}
\usepackage{rotating}
%\usepackage{eso-pic}
%\usepackage{multicol}
\usepackage{enumerate} % custom lists
%\usepackage{url}
%\usepackage{soul}
% for working with eps
\usepackage{epstopdf}
\usepackage{color} % color text
\usepackage{titlesec} % to change the way \paragraph formats the titles
\usepackage{textcomp} % for copyright symbol
\usepackage{quotchap} % for chapter openning quotes
\usepackage{titling}
\usepackage{tablefootnote}
% Define a path for the fig folder
% nota: imges must be in the same folder or subfolders of this file, if not pdf2latex will complain
% ---------------------- %
\newcommand{\figpath}{./fig}
%\graphicspath{ {./fig/} }
% Bibligraphy path
% ---------------------- %
\newcommand{\bibpath}{.}
\usepackage[hidelinks]{hyperref}
% ---------------------- %
% Title
% ---------------------- %
\title{The Legacy Project}
\author{
Almonacid, Vicente\\
\texttt{[email protected]}
\and
Michel, Nicolas\\
\texttt{[email protected]}
}
\date{\today\\v0.7.3}
% end preamble
%
% Start content
% -------------------------------------------------------------------------------------- %
\begin{document}
% \begin{titlingpage}
% \maketitle
% \begin{abstract}
% Legacy is a blockchain-based application that allows people to easily distribute assets upon their dead (or, in general, upon any verifiable event).
% \end{abstract}
% \end{titlingpage}
{
\noindent
\large
\textbf{DISCLAIMER: This version of Legacy's whitepaper is now considered as deprecated, but is still publicly accessible for consultation purposes. Please note that Legacy is no longer considering a token sale. \\}
\vspace{0.3cm} \\
}
{\let\newpage\relax\maketitle}
% \maketitle
\begin{abstract}
Legacy is a blockchain-based application allowing people to easily distribute assets upon their death or upon any set of verifiable events.
The application integrates a variety of services that will be developed progressively as blockchain technology consolidates.
This paper mainly describes Legacy's initial releases, which allow the transfer of digital assets, such as images, videos and text documents.
The application's core functionalities will be initially developed on the Ethereum blockchain. These include a Proof of Life engine responsible for determining whether the user is alive or not, and a smart contract that manages user assets and schedules their distribution according to a given set of triggering events.
Leveraging the unique characteristics of blockchain platforms, Legacy is designed to ensure security, reliability and long-term availability.
Typical use cases include transfer of sensitive data (\textit{e.g.}, personal meaningful information), cryptocurrency holdings and confidential data such as online service credentials.
In the long-term, Legacy expects to integrate smart property and other blockchain-based digital assets, as well as to provide a platform for peer-to-peer legal and technical assistance, thus becoming a next-generation smart-will solution.
\end{abstract}
% acknowledgements
\chapter*{}
\include{chapters/acks}
\include{chapters/disclaimer}
\tableofcontents
% \listoffigures
% ---------------------- %
% Main Content
% ---------------------- %
\include{chapters/exec_summ}
%\include{chapters/business_model}
\include{chapters/implementation}
\include{chapters/architecture}
\include{chapters/token}
%\include{chapters/roadmap}
\include{chapters/legal}
%\include{chapters/crowdfunding}
%\include{chapters/team}
% ---------------------- %
% Appendix
% ---------------------- %
%\include{chapters/appendix}
% ---------------------- %
% Bibliography
% ---------------------- %
%
% 1. using natbib
%\bibliographystyle{plain}
%\bibliography{\bibpath/refs}
%
% 2. uing biblatex
\printbibliography
\end{document}}