|
@@ -2,17 +2,22 @@
|
|
|
|
|
|
<h1>Blockchain</h1>
|
|
|
|
|
|
-
|
|
|
<p>
|
|
|
@namespace HyperCube.Models
|
|
|
-
|
|
|
@code
|
|
|
- {
|
|
|
- string hidecontr = "hidden";
|
|
|
+ {
|
|
|
+ string hidecontr = "hidden";
|
|
|
+ string hidereceipt = "hidden";
|
|
|
+ string result = "";
|
|
|
}
|
|
|
- @foreach (var bc in Blockchain.loaded)
|
|
|
+
|
|
|
+ @if (Blockchain.newData)
|
|
|
{
|
|
|
+ @foreach (var bc in Blockchain.loaded)
|
|
|
+ {
|
|
|
<p><b>@bc.url:@bc.port</b>, address: @bc.address</p>
|
|
|
+ }
|
|
|
+ @bytecode;
|
|
|
}
|
|
|
</p>
|
|
|
|
|
@@ -22,45 +27,60 @@
|
|
|
<p>
|
|
|
Add blockchain connection:
|
|
|
<input name="bcurl" @bind="bcURL" type="text" placeholder="URL" @bind:event="oninput">
|
|
|
- <input name="bport" type="text" placeholder="port">
|
|
|
+ <input name="bport" @bind="bcport" type="number" placeholder="port">
|
|
|
<button @onclick="GetBlockChain">Connect</button>
|
|
|
</p>
|
|
|
<p style="visibility:@hidecontr">
|
|
|
Add smart contract:
|
|
|
<button @onclick="AddContract">Add</button>
|
|
|
- <input size="100" @bind="bytecode" name="bytecode" type="text" placeholder="Smart contract bytecode" @bind:event="oninput">
|
|
|
+ <input id="bytecode" size="100" @bind="bytecode" name="bytecode" type="text" placeholder="Smart contract bytecode" @bind:event="oninput">
|
|
|
+ <br />
|
|
|
+ </p>
|
|
|
+ <p style="visibility:@hidereceipt">
|
|
|
+ Get smart contract address:
|
|
|
+ <button @onclick="AddContract">Add</button>
|
|
|
+ <input id="bytecode" size="100" @bind="bytecode" name="bytecode" type="text" placeholder="Smart contract bytecode" @bind:event="oninput">
|
|
|
<br />
|
|
|
</p>
|
|
|
- <p @bind="error">No error</p>
|
|
|
+ <p>@result</p>
|
|
|
|
|
|
@code
|
|
|
{
|
|
|
private Random r = new Random();
|
|
|
- private string bcURL = "no Url";
|
|
|
+ private string bcURL = "127.0.0.1";
|
|
|
+ private int bcport = 8545;
|
|
|
private string bytecode = "";
|
|
|
private string error = "";
|
|
|
|
|
|
- private void AddContract()
|
|
|
+ private async Task GetReceipt()
|
|
|
+ {
|
|
|
+ //TODO result as transaction addr
|
|
|
+ result = await Blockchain.loaded[0].GetReceipt(result);
|
|
|
+ }
|
|
|
+
|
|
|
+ private async Task AddContract()
|
|
|
{
|
|
|
if (Blockchain.loaded.Count > 0)
|
|
|
{
|
|
|
-
|
|
|
+ result = await Blockchain.loaded[0].AddContract(bytecode);
|
|
|
}
|
|
|
//private Post post = new Post();
|
|
|
}
|
|
|
|
|
|
- private void GetBlockChain()
|
|
|
+ private async Task GetBlockChain()
|
|
|
{
|
|
|
if (Blockchain.loaded.Count == 0)
|
|
|
{
|
|
|
- Blockchain bc = new HyperCube.Models.Blockchain("127.0.0.1", 8545);
|
|
|
+ Blockchain bc = new HyperCube.Models.Blockchain(bcURL, bcport);
|
|
|
+ result = await bc.Initialize();
|
|
|
+ if (result != "")
|
|
|
+ hidecontr = "visible";
|
|
|
//bcURL = bc.GetAddress();
|
|
|
- bc.ExecuteContract();
|
|
|
- bcURL = bc.address;
|
|
|
- hidecontr = "hidden";
|
|
|
+ //bc.ExecuteContract();
|
|
|
+ //bcURL = bc.address;
|
|
|
+ //hidecontr = "hidden";
|
|
|
}
|
|
|
- else
|
|
|
- hidecontr = "visible";
|
|
|
+
|
|
|
//private Post post = new Post();
|
|
|
}
|
|
|
}
|