-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
88 lines (66 loc) · 1.82 KB
/
server.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
const express = require('express'); //Line 1
const app = express(); //Line 2
const port = process.env.PORT || 5000; //Line 3
const NodeCache = require( "node-cache" );
const walletCoreLib = require('haven-wallet-core');
const claimAmount = 10 * 1000000000000;
const claimCurrency = "XHV";
let wallet;
const addressCache = new NodeCache({ stdTTL: 7200, checkperiod: 120 });
const walletConfig = {
path:"stage_miner",
password:"test",
networkType:2,
serverUri:"localhost:37750",
serverUsername:"",
serverPassword:"",
proxyToWorker:false
}
async function run() {
}
async function init() {
console.log("open wallet ... ");
wallet = await walletCoreLib.openWalletWasm(walletConfig);
console.log("start syncing ... ");
await wallet.startSyncing();
console.log("wallet synced ");
app.use(express.json());
app.listen(port, () => console.log(`Listening on port ${port}`));
// claim funds
app.post('/claim', async (req, res) => {
const address = req.body.address;
console.log(address);
try {
walletCoreLib.MoneroUtils.validateAddress(address);
console.log("address is valid");
}
catch(e){
res.status(400).send({ message:"Address is not valid" });
return;
}
if (addressCache.has(address)) {
res.status(400).send({message:"Please wait till you can claim again, only allowed every 2 hours" });
return;
}
const destinations = [new walletCoreLib.MoneroDestination(address, claimAmount)];
const txConfig = {
canSplit: true,
accountIndex: 0,
relay: true,
priority:1,
sourceCurrency: claimCurrency,
destinationCurrency: claimCurrency,
destinations
};
try{
await wallet.createTxs(txConfig);
addressCache.set(address, address);
res.send({ status: 'ok' });
}
catch(e)
{
res.status(400).send({ message:e.message });
}
});
}
init();