Searching.ton
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
363 B

2 years ago
import influxdb from "./modules/influxdb"
import db from "../db/index"
const main = async () => {
const allDomainsCount = await db.nftDomain.count()
const availableDomainsCount = await db.nftDomain.count({ where: { available: true } })
influxdb.writeSitesCount({
all: allDomainsCount,
available: availableDomainsCount,
})
}
export default main