This commit is contained in:
Serafim 2025-01-13 01:22:08 +03:00
parent ddea84624b
commit f76d9a179a
5 changed files with 1313 additions and 2 deletions

25
api/index.js Normal file
View File

@ -0,0 +1,25 @@
import fetch from 'node-fetch'
import express from 'express'
const app = express()
const db = '../db'
const port = 3102
app.get('/ETH/:date', async (req, res) => {
const response = await fetch(`https://api.coingecko.com/api/v3/coins/ethereum/history?date=${req.params.date}`)
const data = await response.json()
res.send(data.market_data.current_price.rub.toString())
})
app.get('/TRX/:date', async (req, res) => {
const response = await fetch(`https://api.coingecko.com/api/v3/coins/tron/history?date=${req.params.date}`)
const data = await response.json()
res.send(data.market_data.current_price.rub.toString())
})
app.listen(port, () => {
console.log(`App listening on port ${port}`)
})
process
.on('unhandledRejection', () => {})
.on('uncaughtException', () => {})

1268
api/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

18
api/package.json Normal file
View File

@ -0,0 +1,18 @@
{
"name": "assets",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.21.2",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.9"
},
"type": "module"
}

BIN
db

Binary file not shown.

View File

@ -200,13 +200,13 @@ db.serialize(async () => {
const param = params[i] const param = params[i]
const date = new Date(param) const date = new Date(param)
const formattedDate= formatDate(date) const formattedDate= formatDate(date)
const response = await fetch(`https://api.coingecko.com/api/v3/coins/ethereum/history?date=${formattedDate}`) const response = await fetch(`https://api.coingecko.com/api/v3/coins/tron/history?date=${formattedDate}`)
const data = await response.json() const data = await response.json()
try { try {
const stmt = db.prepare("INSERT INTO assets VALUES (?, ?, ?)") const stmt = db.prepare("INSERT INTO assets VALUES (?, ?, ?)")
const price = Number(data.market_data.current_price.rub) const price = Number(data.market_data.current_price.rub)
stmt.run("ETH", price, date) stmt.run("TRX", price, date)
stmt.finalize() stmt.finalize()
console.log(param) console.log(param)
} catch { } catch {