Update on Overleaf.
This commit is contained in:
70
ccs-template.tex
Normal file
70
ccs-template.tex
Normal file
@@ -0,0 +1,70 @@
|
||||
\documentclass[sigconf, anonymous]{acmart}
|
||||
|
||||
%\usepackage[usenames]{xcolor}
|
||||
\PassOptionsToPackage{usenames,dvipsnames}{xcolor}
|
||||
\newcommand{\todo}[1]{\textcolor{red}{#1}}
|
||||
\newcommand{\suggestion}[1]{\textcolor{blue}{#1}}
|
||||
\newcommand{\solution}[1]{\textcolor{ACMGreen}{#1}}
|
||||
\newcommand{\failed}[1]{\textcolor{ACMPurple}{#1}}
|
||||
|
||||
|
||||
% Tables
|
||||
\usepackage{tabularx}
|
||||
\usepackage{booktabs}
|
||||
\usepackage{adjustbox}
|
||||
\usepackage{array}
|
||||
|
||||
|
||||
\fancyhf{} % Remove fancy page headers
|
||||
\fancyhead[C]{Anonymous submission \#9999 to ACM CCS 2023} % TODO: replace 9999 with your paper number
|
||||
\fancyfoot[C]{\thepage}
|
||||
|
||||
\setcopyright{none} % No copyright notice required for submissions
|
||||
\acmConference[Anonymous Submission to ACM CCS 2023]{ACM Conference on Computer and Communications Security}{Due 15 May 2023}{London, TBD}
|
||||
\acmYear{2023}
|
||||
|
||||
\settopmatter{printacmref=false, printccs=true, printfolios=true} % We want page numbers on submissions
|
||||
|
||||
%%\ccsPaper{9999} % TODO: replace with your paper number once obtained
|
||||
|
||||
\begin{document}
|
||||
\title{Mining in Logarithmic Space with Variable Difficulty} % TODO: replace with your title
|
||||
|
||||
\begin{abstract}
|
||||
This paper addresses the lack of scalability in current blockchain technology and its hindrance to widespread adoption.
|
||||
Blockchain data is categorized into application data and consensus data, with consensus data growing unboundedly at a constant linear rate in time.
|
||||
Recently, a protocol to reduce storage and communication complexity of blockchains to $O(polylog(n))$ was proposed, but its security was only proven in a static context.
|
||||
This paper focuses on modifying the protocol to fit a dynamic environment, with participants joining or leaving the network, and proving the upkeep of security properties in this context.
|
||||
The contributions of this paper include a study of the protocol in the dynamic context, its modification, and proof of properties in the dynamic context.
|
||||
\end{abstract}
|
||||
|
||||
% TODO: replace this section with code generated by the tool at https://dl.acm.org/ccs.cfm
|
||||
\begin{CCSXML}
|
||||
<ccs2012>
|
||||
<concept>
|
||||
<concept_id>10002978.10003006.10003013</concept_id>
|
||||
<concept_desc>Security and privacy~Distributed systems security</concept_desc>
|
||||
<concept_significance>500</concept_significance>
|
||||
</concept>
|
||||
<concept>
|
||||
<concept_id>10002978.10002979</concept_id>
|
||||
<concept_desc>Security and privacy~Cryptography</concept_desc>
|
||||
<concept_significance>300</concept_significance>
|
||||
</concept>
|
||||
</ccs2012>
|
||||
\end{CCSXML}
|
||||
|
||||
\ccsdesc[500]{Security and privacy~Distributed systems security}
|
||||
\ccsdesc[300]{Security and privacy~Cryptography}
|
||||
% -- end of section to replace with generated code
|
||||
|
||||
\keywords{blockchains; proof-of-work; logspace mining; superlight clients; NIPoPoWs; superblocks; variable difficulty} % TODO: replace with your keywords
|
||||
|
||||
\maketitle
|
||||
|
||||
\input{ccs-body} % TODO: replace with your brilliant paper!
|
||||
|
||||
\bibliographystyle{ACM-Reference-Format}
|
||||
\bibliography{ccs-sample}
|
||||
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user