<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Assessment Organization Service Based on Ethereum Platform</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Pavel</forename><forename type="middle">I</forename><surname>Danilin</surname></persName>
						</author>
						<author>
							<persName><forename type="first">Artur</forename><forename type="middle">A</forename><surname>Lukin</surname></persName>
						</author>
						<author>
							<persName><forename type="first">Elena</forename><forename type="middle">N</forename><surname>Reshetova</surname></persName>
						</author>
						<title level="a" type="main">Assessment Organization Service Based on Ethereum Platform</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">55024AFBC25E0C455F8908FD2DE33633</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-23T22:17+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<textClass>
				<keywords>
					<term>blockchain</term>
					<term>cryptocurrency</term>
					<term>distributed ledger</term>
					<term>mining</term>
					<term>smartcontracts</term>
					<term>decentralized applications</term>
					<term>Ethereum</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>This work is dedicated to the description of principles of construction a decentralized application designed for experts' assessment of different kinds of works based on Ethereum blockchain platform. The activity of experts' assessment is organized by generation and publishing a smart contract and generation of a web widget for interaction with it. We have developed a web service for the automatization of the process. The blockchain technology gives the opportunity to store reviews securely and exclude forgery.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1">Introduction</head><p>The developed service is a software module that can be used to organize assessment activity. This module allows you to securely store reviews on various types of work in electronic form, such as: innovative projects, essays, diploma and course works. The blockchain technology will ensure the safety, immutability of these reviews. We have identified three parties involved in the process of reviewing a work. These are the author of the work, the expert assessing the work and the platform on which the work was done or at which we work (hereinafter simply referred to as the "platform"). A platform could be a university, an innovative projects competition, or a conference). All these parties are interested in the introduction of the provided service. The author of the work will be sure that his work will be preserved in the bockchain and correctly assessed by the expert. For the expert, the blockchain keeps the history of his assessments, that is, creates a kind of resume that confirms his competence. And for platforms, this service will provide transparency in the assessment of works. This is a step towards decentralization in assessment issues.</p><p>In this article, we first describe the general concepts of the system. Then the following subsystems for creating smart contracts and web widgets will be described. Finally, the results of the project will be presented.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">Common concepts</head><p>The organizers of the assessment process use their private solutions to automate it. Usually this is a web portal, using which authors load projects, experts assess. In such a case it might be possible to change the grade, because you cannot verify the func-tionality of the private system the platform uses. Our solution, using the properties of blockchain, allows to guarantee to a certain extent the transparency of the assessment process.</p><p>While working on a project it was necessary to decide on the blockchain platform on which our solution will be based. The main criteria were as follows:</p><p>1. The possibility for creating and executing smart contracts 2. The availability of tools for interaction with the site and a smart contract 3. The size of platform capitalization 4. The size of the platform community</p><p>The first two criteria were necessary for the technical side of our project, the last two were to ensure the reliability of the platform.</p><p>After comparing the options, we chose the Ethereum platform <ref type="bibr" target="#b0">[1]</ref>[2] as the most promising and popular blockchain platform, supporting smart contracts, we have today.</p><p>The user of our service is a platform administrator, on which the assessment takes place. The administrator interacts with a web page, enters the necessary parameters for the assessments and configures some properties of the smart contract. The service creates a smart contract, loads it into the Ethereum network, and loads the archive with the source files of the widgets to interact with the smart contract. To use the widgets, it's enough to insert their contents into the source files of the site. To interact with widgets, you need the Metamask <ref type="bibr" target="#b2">[3]</ref> extension installed in the browser. This extension allows you to interact with the Ethereum network, taking responsibility for communication with an Ethereum network node. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Administrator</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Web-site</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Smart contract generation subsystem</head><p>This subsystem is a Node.js[4] module that processes post requests that accept the assessment parameters. Based on the received parameters, the module generates the source code of the corresponding smart contract on the Ethereum smart contract programming language of Solidity. The generated text of the smart contract is compiled into a bytecode and placed on the Ethereum network using Metamask in the Ethereum network block. The resulting address and smart contract interface are passed to the web widget creation subsystem.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">Web widget generation subsystem</head><p>This subsystem is a Node.js[4] module that processes post requests, accepts the assessment parameters, the address and abi of the smart contract. The first query creates a cache object that contains the widget templates. The module makes some substitutions into the templates and forms the source code for the widgets, that are archived and sent in response.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">Conclusion</head><p>In this paper, a description was given of the principles for constructing a decentralized application designed to organize expert evaluation of various types of projects based on the Ethereum platform blockchain platform. The mechanism of an expert assessment based on blockchain was demonstrated in work. Now assessment processes can be organised based on blockchain that allows to store securely the reviews and excludes possibility of forgery</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Fig. 1 .Fig. 2 .</head><label>12</label><figDesc>Fig. 1. Interaction with DAPP diagramIn the course of our work, we identified two subsystems of the product -a subsystem for the generation of a smart contract and a subsystem for generating a widget.</figDesc></figure>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<monogr>
		<ptr target="https://www.ethereum.org/(Ac-cessed2017-" />
		<title level="m">Ethereum Blockchain App Platform</title>
				<imprint>
			<date>06-25</date>
		</imprint>
		<respStmt>
			<orgName>Ethereum Project</orgName>
		</respStmt>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<monogr>
		<ptr target="https://github.com/ethereum/wiki/wiki/White-Paper" />
		<title level="m">White Paper</title>
				<imprint>
			<date type="published" when="2017-06-25">2017-06-25</date>
		</imprint>
		<respStmt>
			<orgName>Ethereum White Paper</orgName>
		</respStmt>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<monogr>
		<author>
			<persName><surname>Metamask</surname></persName>
		</author>
		<ptr target="https://metamask.io/" />
		<title level="m">Metamask Brings Ethereum to your browser</title>
				<imprint>
			<date type="published" when="2017-06-25">2017-06-25</date>
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
