-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
43 lines (36 loc) · 1.28 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
const express = require('express');
const cors = require('cors');
const fetch = require('node-fetch');
const app = express();
const port = process.env.PORT || 3000;
// Simple CORS setup since frontend and backend are served from the same domain
app.use(cors());
app.use(express.static('public'));
const API_BASE = 'https://api.whatsonchain.com/v1/bsv';
app.get('/api/utxos/:network/:address', async (req, res) => {
try {
const { network, address } = req.params;
const response = await fetch(`${API_BASE}/${network}/address/${address}/confirmed/unspent`);
const data = await response.json();
res.json(data);
} catch (error) {
res.status(500).json({ error: error.message });
}
});
app.get('/api/merkleproof/:network/:txhash', async (req, res) => {
try {
const { network, txhash } = req.params;
const response = await fetch(`${API_BASE}/${network}/tx/${txhash}/proof/tsc`);
const data = await response.json();
res.json(data);
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// Serve the static files
app.get('*', (req, res) => {
res.sendFile('index.html', { root: './public' });
});
app.listen(port, () => {
console.log(`Server running at http://localhost:${port}`);
});