You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<script src="qrc:///js/bignumber.min.js"></script>
|
|
|
|
<script src="qrc:///js/webthree.js"></script>
|
|
|
|
<script>
|
|
|
|
loadPage = function(url) {
|
|
|
|
var preview = document.getElementById('preview');
|
|
|
|
preview.src = url;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
reloadPage = function() {
|
|
|
|
var preview = document.getElementById('preview');
|
|
|
|
preview.contentWindow.location.reload();
|
|
|
|
};
|
|
|
|
|
|
|
|
updateContracts = function(contracts) {
|
|
|
|
if (window.web3) {
|
|
|
|
window.web3.reset();
|
|
|
|
window.contracts = {};
|
|
|
|
for (var c in contracts) {
|
|
|
|
var contract = window.web3.eth.contract(contracts[c].address, contracts[c].interface);
|
|
|
|
window.contracts[c] = {
|
|
|
|
address: c.address,
|
|
|
|
interface: c.interface,
|
|
|
|
contract: contract,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
init = function(url) {
|
|
|
|
web3 = require('web3');
|
|
|
|
window.web3 = web3;
|
|
|
|
web3.setProvider(new web3.providers.HttpSyncProvider(url));
|
|
|
|
};
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body><iframe src="" name="preview" id="preview" style="border: 0; position:absolute; top:0; left:0; right:0; bottom:0; width:100%; height:100%"></iframe></body>
|
|
|
|
</html>
|