-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloop.js
63 lines (54 loc) · 1.83 KB
/
loop.js
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
// 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)
var simpleStoreJson = 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 contractAddress = conf.contractAddress
// Instantiate the contract and let it ready to be used
const contract = new web3.eth.Contract(simpleStoreJson.abi, contractAddress, {
from
});
//console.log(contract)
function wait(ms) {
var start = new Date().getTime();
var end = start;
while (end < start + ms) {
end = new Date().getTime();
}
}
(async function () {
try {
for (var i=0; i<100000; i++) {
contract.methods.loop().send().then(tx => console.log(tx)).catch(function (e) {
console.log(err)
})
}
} catch (err) {}
})();