|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
|
|
<title>Solidity realtime compiler</title>
|
|
|
|
<link rel="stylesheet" href="stylesheets/styles.css">
|
|
|
|
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
padding: 0px;
|
|
|
|
font-size: 12px;
|
|
|
|
color: #111111;
|
|
|
|
}
|
|
|
|
#optimizeBox {
|
|
|
|
position: absolute;
|
|
|
|
top: 30px;
|
|
|
|
left: 720px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
#input {
|
|
|
|
position: absolute;
|
|
|
|
top: 120px;
|
|
|
|
left: 0px;
|
|
|
|
width: 700px;
|
|
|
|
bottom: 0px;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
#output {
|
|
|
|
position: absolute;
|
|
|
|
top: 120px;
|
|
|
|
left: 720px;
|
|
|
|
right: 10px;
|
|
|
|
bottom: 0px;
|
|
|
|
font-size: 14px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
#header {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
.col1 {
|
|
|
|
width: 18ex;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.col2 {
|
|
|
|
width: 60ex;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script src="libs/jquery-2.1.3.min.js"></script>
|
|
|
|
<script src="libs/ace.js"></script>
|
|
|
|
<script src="mode-solidity.js"></script>
|
|
|
|
<script src="soljson.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1 id="header">Solidity realtime compiler</h1>
|
|
|
|
Source code on the left, compiled code and AST on the right (or error).<br/>
|
|
|
|
<b>Note:</b> Chrome/Chromium currently reports "Uncaught JavaScript Exception".
|
|
|
|
To work around this problem, enable the debug console (Ctrl+Shift+i) and reload.<br/>
|
|
|
|
Version: <a href="https://github.com/ethereum/cpp-ethereum/commit/d810b3d1b41375220c2e90124e612b0311a63eea">d810b3d1...</a> 2015-06-12
|
|
|
|
<div id="optimizeBox">
|
|
|
|
<input id="optimize" type="checkbox"><label for="optimize">optimize</label>
|
|
|
|
</div>
|
|
|
|
<div id="input"> contract Ballot {
|
|
|
|
// Create a new ballot with $(_numProposals) different proposals.
|
|
|
|
function Ballot(uint8 _numProposals) {
|
|
|
|
address sender = msg.sender;
|
|
|
|
chairperson = sender;
|
|
|
|
numProposals = _numProposals;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Give $(voter) the right to vote on this ballot.
|
|
|
|
// May only be called by $(chairperson).
|
|
|
|
function giveRightToVote(address voter) {
|
|
|
|
if (msg.sender != chairperson || voted[voter]) return;
|
|
|
|
voterWeight[voter] = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delegate your vote to the voter $(to).
|
|
|
|
function delegate(address to) {
|
|
|
|
address sender = msg.sender;
|
|
|
|
if (voted[sender]) return;
|
|
|
|
while (delegations[to] != address(0) && delegations[to] != sender)
|
|
|
|
to = delegations[to];
|
|
|
|
if (to == sender) return;
|
|
|
|
voted[sender] = true;
|
|
|
|
delegations[sender] = to;
|
|
|
|
if (voted[to]) voteCounts[votes[to]] += voterWeight[sender];
|
|
|
|
else voterWeight[to] += voterWeight[sender];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Give a single vote to proposal $(proposal).
|
|
|
|
function vote(uint8 proposal) {
|
|
|
|
address sender = msg.sender;
|
|
|
|
if (voted[sender] || proposal >= numProposals) return;
|
|
|
|
voted[sender] = true;
|
|
|
|
votes[sender] = proposal;
|
|
|
|
voteCounts[proposal] += voterWeight[sender];
|
|
|
|
}
|
|
|
|
|
|
|
|
function winningProposal() constant returns (uint8 winningProposal) {
|
|
|
|
uint256 winningVoteCount = 0;
|
|
|
|
uint8 proposal = 0;
|
|
|
|
while (proposal < numProposals) {
|
|
|
|
if (voteCounts[proposal] > winningVoteCount) {
|
|
|
|
winningVoteCount = voteCounts[proposal];
|
|
|
|
winningProposal = proposal;
|
|
|
|
}
|
|
|
|
++proposal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
address chairperson;
|
|
|
|
uint8 numProposals;
|
|
|
|
mapping(address => uint256) voterWeight;
|
|
|
|
mapping(address => bool) voted;
|
|
|
|
mapping(address => uint8) votes;
|
|
|
|
mapping(address => address) delegations;
|
|
|
|
mapping(uint8 => uint256) voteCounts;
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
<div id="output"></div>
|
|
|
|
|
|
|
|
<div style="height: 100px;"></div>
|
|
|
|
<p><small>Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var editor = ace.edit("input");
|
|
|
|
editor.setTheme("ace/theme/monokai");
|
|
|
|
editor.getSession().setMode("ace/mode/javascript");
|
|
|
|
editor.getSession().setTabSize(4);
|
|
|
|
editor.getSession().setUseSoftTabs(true);
|
|
|
|
|
|
|
|
var compileJSON = Module.cwrap("compileJSON", "string", ["string", "number"]);
|
|
|
|
var ready = false;
|
|
|
|
Module['onRuntimeInitialized'] = function() { ready = true; onChange(); };
|
|
|
|
|
|
|
|
var previousInput = '';
|
|
|
|
var compile = function() {
|
|
|
|
if (!ready)
|
|
|
|
return;
|
|
|
|
var input = editor.getValue();
|
|
|
|
var optimize = document.querySelector('#optimize').checked;
|
|
|
|
try {
|
|
|
|
var data = $.parseJSON(compileJSON(input, optimize ? 1 : 0));
|
|
|
|
} catch (exception) {
|
|
|
|
renderError("Uncaught JavaScript Exception:\n" + exception);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (data['error'] !== undefined)
|
|
|
|
renderError(data['error']);
|
|
|
|
else
|
|
|
|
renderContracts(data, input);
|
|
|
|
}
|
|
|
|
var compileTimeout = null;
|
|
|
|
var onChange = function() {
|
|
|
|
if (!ready)
|
|
|
|
return;
|
|
|
|
var input = editor.getValue();
|
|
|
|
if (input == previousInput)
|
|
|
|
return;
|
|
|
|
previousInput = input;
|
|
|
|
if (compileTimeout) window.clearTimeout(compileTimeout);
|
|
|
|
compileTimeout = window.setTimeout(compile, 300);
|
|
|
|
};
|
|
|
|
|
|
|
|
editor.getSession().on('change', onChange);
|
|
|
|
document.querySelector('#optimize').addEventListener('change', compile);
|
|
|
|
|
|
|
|
var detailsOpen = {};
|
|
|
|
|
|
|
|
var renderError = function(message) {
|
|
|
|
$('#output').empty().append($('<pre></pre>').text(message));
|
|
|
|
};
|
|
|
|
var renderContracts = function(data, source) {
|
|
|
|
$('#output').empty();
|
|
|
|
for (var contractName in data.contracts) {
|
|
|
|
var contract = data.contracts[contractName];
|
|
|
|
var contractOutput = $('<div class="contractOutput"/>')
|
|
|
|
.append($('<h3/>').text(contractName))
|
|
|
|
.append($('<div/>').text((contract.bytecode.length / 2) + ' bytes'))
|
|
|
|
.append(tableRow('Bytecode', contract.bytecode))
|
|
|
|
.append(tableRow('Interface', contract['interface']))
|
|
|
|
.append(tableRow('Solidity Interface', contract.solidity_interface))
|
|
|
|
.append(getDetails(contract, source, contractName));
|
|
|
|
$('#output').append(contractOutput);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
var tableRow = function(description, data) {
|
|
|
|
return $('<div/>')
|
|
|
|
.append($('<span class="col1">').text(description))
|
|
|
|
.append($('<input readonly="readonly" class="col2">').val(data));
|
|
|
|
};
|
|
|
|
var getDetails = function(contract, source, contractName) {
|
|
|
|
var button = $('<button>Details</button>');
|
|
|
|
var details = $('<div style="display: none;"/>')
|
|
|
|
.append(tableRow('Opcodes', contract.opcodes));
|
|
|
|
var funHashes = '';
|
|
|
|
for (var fun in contract.functionHashes)
|
|
|
|
funHashes += contract.functionHashes[fun] + ' ' + fun + '\n';
|
|
|
|
details.append($('<span class="col1">Functions</span>'));
|
|
|
|
details.append($('<pre/>').text(funHashes));
|
|
|
|
details.append($('<span class="col1">Gas Estimates</span>'));
|
|
|
|
details.append($('<pre/>').text(formatGasEstimates(contract.gasEstimates)));
|
|
|
|
details.append($('<span class="col1">Assembly</span>'));
|
|
|
|
var assembly = $('<pre/>').text(formatAssemblyText(contract.assembly, '', source));
|
|
|
|
details.append(assembly);
|
|
|
|
button.click(function() { detailsOpen[contractName] = !detailsOpen[contractName]; details.toggle(); });
|
|
|
|
if (detailsOpen[contractName])
|
|
|
|
details.show();
|
|
|
|
return $('<div/>').append(button).append(details);
|
|
|
|
};
|
|
|
|
var formatGasEstimates = function(data) {
|
|
|
|
var gasToText = function(g) { return g === null ? 'unknown' : g; }
|
|
|
|
var text = '';
|
|
|
|
if ('creation' in data)
|
|
|
|
text += 'Creation: ' + gasToText(data.creation[0]) + ' + ' + gasToText(data.creation[1]) + '\n';
|
|
|
|
text += 'External:\n';
|
|
|
|
for (var fun in data.external)
|
|
|
|
text += ' ' + fun + ': ' + gasToText(data.external[fun]) + '\n';
|
|
|
|
text += 'Internal:\n';
|
|
|
|
for (var fun in data.internal)
|
|
|
|
text += ' ' + fun + ': ' + gasToText(data.external[fun]) + '\n';
|
|
|
|
return text;
|
|
|
|
};
|
|
|
|
var formatAssemblyText = function(asm, prefix, source) {
|
|
|
|
var text = '';
|
|
|
|
text += prefix + '.code\n';
|
|
|
|
$.each(asm['.code'], function(i, item) {
|
|
|
|
var v = item.value === undefined ? '' : item.value;
|
|
|
|
var src = '';
|
|
|
|
if (item.begin !== undefined && item.end != undefined)
|
|
|
|
src = source.slice(item.begin, item.end).replace('\n', '\\n', 'g');
|
|
|
|
if (src.length > 30)
|
|
|
|
src = src.slice(0, 30) + '...';
|
|
|
|
if (item.name != 'tag')
|
|
|
|
text += ' ';
|
|
|
|
text += prefix + item.name + ' ' + v + '\t\t\t' + src + '\n';
|
|
|
|
});
|
|
|
|
text += prefix + '.data\n';
|
|
|
|
if (asm['.data'])
|
|
|
|
$.each(asm['.data'], function(i, item) {
|
|
|
|
text += ' ' + prefix + '' + i + ':\n';
|
|
|
|
text += formatAssemblyText(item, prefix + ' ', source);
|
|
|
|
});
|
|
|
|
|
|
|
|
return text;
|
|
|
|
};
|
|
|
|
$('.asmOutput button').click(function() {$(this).parent().find('pre').toggle(); } )
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|