-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.js
More file actions
117 lines (103 loc) · 3.21 KB
/
client.js
File metadata and controls
117 lines (103 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Node.JS 8 or greater
const Web3 = require("web3");
const {
SpeculativeNonceTxMiddleware,
SignedTxMiddleware,
Client,
Contract,
Address,
LocalAddress,
CryptoUtils,
LoomProvider
} = require("loom-js");
const fs = require("fs");
const conf = require("./config");
//const privateKeyStr = fs.readFileSync("./private_key", "utf-8");
//const privateKey = CryptoUtils.B64ToUint8Array(privateKeyStr);
//const publicKey = CryptoUtils.publicKeyFromPrivateKey(privateKey);
const privateKey = CryptoUtils.generatePrivateKey()
const publicKey = CryptoUtils.publicKeyFromPrivateKey(privateKey)
const EthereumTx = require('ethereumjs-tx').Transaction
function toHexString(byteArray) {
return Array.from(byteArray, function(byte) {
return ('0' + (byte & 0xFF).toString(16)).slice(-2);
}).join('')
}
var simpleTestJSON = JSON.parse(
fs.readFileSync("./build/contracts/SimpleTestContract.json", "utf8")
);
var client = new Client(
conf.chainId,
conf.url + "/websocket",
conf.url + "/queryws"
);
client.on("error", msg => {
console.error("Error on connect to client", msg);
console.warn("Please verify if loom command is running");
});
const setupMiddlewareFn = function (client, privateKey) {
const publicKey = CryptoUtils.publicKeyFromPrivateKey(privateKey);
return [
new SpeculativeNonceTxMiddleware(publicKey, client),
new SignedTxMiddleware(privateKey)
];
};
var loomProvider = new LoomProvider(client, privateKey, setupMiddlewareFn);
// The address for the caller of the function
const from = LocalAddress.fromPublicKey(publicKey).toString();
// Instantiate web3 client using LoomProvider
const web3 = new Web3(loomProvider);
const web3js = new Web3(new Web3.providers.HttpProvider("http://127.0.0.1:46658/eth"));
const contractAddress = conf.contractAddress;
// Instantiate the contract and let it ready to be used
const contract = new web3.eth.Contract(simpleTestJSON.abi, contractAddress, {
from
});
function wait(ms) {
var start = new Date().getTime();
var end = start;
while (end < start + ms) {
end = new Date().getTime();
}
}
var total = 1;
async function hello() {
try {
var value = await contract.methods.get().call()
console.log(value)
//await contract.methods.err(5).send()
contract.methods.set(7555577).send().then()
let tx = await contract.methods.err(20).send()
console.log(tx)
//await contract.methods.close().send()
// const start = total;
// for(var i=start; i<start + 10; i++){
// total++
// tx = contract.methods.addUser(i, 100, makeid(50)).send()
// }
// wait(1000)
// for(var i=start; i<start + 10; i++) {
// const value = await contract.methods.getUser(i).call()
// console.log(value)
// }
// wait(5000)
} catch (err) {
console.log("should not revert", err);
}
//timeout();
}
function timeout() {
setTimeout(hello, 1000);
}
(async function () {
timeout();
})();
function makeid(length) {
var result = '';
var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
var charactersLength = characters.length;
for ( var i = 0; i < length; i++ ) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
}
return result;
}