-
Notifications
You must be signed in to change notification settings - Fork 5
/
paper.tex
69 lines (51 loc) · 1.84 KB
/
paper.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
%
% The first command in your LaTeX source must be the \documentclass command.
\documentclass{article}
\usepackage[]{todonotes} % notes not showed
%% \usepackage[draft]{todonotes} % notes showed
\usepackage{hyperref}
\usepackage{graphics}
\usepackage{multicol}
\usepackage{csquotes}
\newcommand{\blockchain}{{\ae}ternity blockchain}
\newcommand{\aet}{{\ae}ternity}
%
% \BibTeX command to typeset BibTeX logo in the docs
\AtBeginDocument{%
\providecommand\BibTeX{{%
\normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}}
\begin{document}
\title{DRAFT: The \blockchain\ \\white paper}
\author{Aeternity\\development team \and Thomas Arts \and
Yanislav Malahov \and Sascha Hanse}
\maketitle
%
% The abstract is a short summary of the work to be presented in the article.
\begin{abstract}
The \blockchain\ aims to be a development platform for advanced blockchain
applications that can be used by millions of users.
On the one hand the \blockchain\ is scalable due to a next generation
consensus algorithm and the use of state channels. On the other hand,
the \blockchain\ is a excellent development platform for
applications by offering native support for commonly used
blockchain features, as well as secure and highly efficient
contract language and virtual machine.
In this white paper we explain the above mentioned concepts of the
\blockchain\ and highlight the design decisions. The
paper provides a high-level overview of the technology. For detailed
and specific implementation details we refer to the \aet\ protocol
description.
\end{abstract}
%%\keywords{blockchain, state channels}
\newpage
\tableofcontents
\newpage
\input{intro.tex}
\input{mining.tex}
\input{transactions.tex}
\input{scaling.tex}
\input{sophia.tex}
\input{vision.tex}
%\input{conclusions.tex}
\bibliographystyle{acm} \bibliography{paper}
\end{document}