-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
71 lines (54 loc) · 1.58 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
\input{config/package}
\input{config/config}
\begin{document}
\input{config/titlepage}
\newpage
\tableofcontents
\newpage
\bstctlcite{IEEEexample:BSTcontrol}
\input{./res/sections/introduction.tex}
% Part 1
\input{./res/sections/architecture.tex}
% Network layer
\input{./res/sections/network-layer.tex}
% Propagation layer
\input{./res/sections/propagation-layer.tex}
\input{./res/sections/rlp.tex}
\input{./res/sections/rlpx-transport.tex}
\input{./res/sections/ethereum-wire-protocol.tex}
% Data layer
\input{./res/sections/data-layer.tex}
\input{./res/sections/state.tex}
\input{./res/sections/transactions.tex}
% Consensus layer
\input{./res/sections/consensus-layer.tex}
\input{./res/sections/transaction-execution.tex}
\input{./res/sections/contract-creation.tex}
\input{./res/sections/message-call.tex}
% Application layer
\input{./res/sections/application-layer.tex}
\input{./res/sections/evm.tex}
\input{./res/sections/smart-contract.tex}
\input{./res/sections/json-rpc.tex}
\input{./res/sections/dapp.tex}
% Part 2
\input{./res/sections/scalability.tex}
\input{./res/sections/to-scale-or-not.tex}
\input{./res/sections/scalability-background.tex}
% Scale Cube
\input{./res/sections/scale-cube.tex}
\input{./res/sections/x-axis.tex}
\input{./res/sections/y-axis.tex}
\input{./res/sections/z-axis.tex}
% Test
\input{./res/sections/test.tex}
\input{./res/sections/conclusions.tex}
\newpage
\appendix
\input{./res/sections/node-types.tex}
\input{./res/sections/solidity.tex}
\newpage
%\bibliographystyle{unsrt}
\bibliographystyle{IEEEtran}
\bibliography{ethereum-scalability.bib}
\end{document}