2020-06-17 18:54:29 +00:00
|
|
|
//Load Environment Variables
|
|
|
|
require('dotenv').config()
|
|
|
|
//IPFS
|
|
|
|
const IpfsClient = require('ipfs-http-client');
|
|
|
|
const OrbitDB = require('orbit-db');
|
|
|
|
//Instance of IPFS locally in IPFS daemon
|
|
|
|
const node = IpfsClient('http://localhost:5001');
|
2020-06-30 22:04:32 +00:00
|
|
|
const MongoClient = require('mongodb').MongoClient;
|
|
|
|
const url = "mongodb://accountUser:Asd123456!@localhost:27017/DECA";
|
2020-06-17 18:54:29 +00:00
|
|
|
|
|
|
|
//Module for get prices
|
|
|
|
var getEth = require('./getEth');
|
|
|
|
|
|
|
|
//ABI from contract DECA ERC20
|
|
|
|
const abi = require("./ABI.js");
|
|
|
|
|
|
|
|
//Web3 and IPC Provider
|
|
|
|
const Web3 = require('web3');
|
|
|
|
const web3 = new Web3(new Web3.providers.WebsocketProvider(process.env.INFURAKEY));
|
|
|
|
|
|
|
|
//DECA Contract instance
|
2020-06-30 22:04:32 +00:00
|
|
|
const decaContract = new web3.eth.Contract(abi, '0xE453a11fC1925605638cC590897498375973D301');
|
2020-06-17 18:54:29 +00:00
|
|
|
|
|
|
|
async function index() {
|
|
|
|
//Open and load orbitdb databases
|
|
|
|
const orbitdb = await OrbitDB.createInstance(node)
|
|
|
|
const db = await orbitdb.docs('/orbitdb/zdpuAykPJ4qtBg2toS2vxr5eaPfGEBJmvGerM7V7x8qn5c8hW/decaCCDB', {
|
|
|
|
indexBy: 'CCID'
|
|
|
|
});
|
|
|
|
await db.load();
|
2020-06-30 22:04:32 +00:00
|
|
|
const db2 = await orbitdb.docs('decaPrice', {
|
2020-06-17 18:54:29 +00:00
|
|
|
indexBy: 'dates'
|
|
|
|
});
|
|
|
|
await db2.load();
|
|
|
|
const db3 = await orbitdb.docs('decaGeth', {
|
|
|
|
indexBy: 'dates'
|
|
|
|
});
|
|
|
|
await db3.load();
|
2020-06-30 22:04:32 +00:00
|
|
|
const db4 = await orbitdb.docs('decaCCTS', {
|
2020-06-17 18:54:29 +00:00
|
|
|
indexBy: 'dates'
|
|
|
|
});
|
|
|
|
await db4.load();
|
2020-06-30 22:04:32 +00:00
|
|
|
const dbm = await MongoClient.connect(url, { useUnifiedTopology: true })
|
|
|
|
.catch(err => { console.log(err); });
|
2020-06-17 18:54:29 +00:00
|
|
|
//Flag to save the following data
|
2020-06-30 22:04:32 +00:00
|
|
|
let dates = 1593552592;
|
2020-06-17 18:54:29 +00:00
|
|
|
while (true) {
|
|
|
|
//Compare flag and unixtime to add data
|
|
|
|
if (Math.round(new Date().getTime() / 1000) == dates) {
|
2020-06-30 22:04:32 +00:00
|
|
|
dates += 30;
|
2020-06-17 18:54:29 +00:00
|
|
|
//Get data from functions
|
2020-06-30 22:04:32 +00:00
|
|
|
var dbo = dbm.db("DECA");
|
|
|
|
try{
|
|
|
|
let elemsDECAPrice = await getEth(dates);
|
|
|
|
const hash1 = await db2.put(elemsDECAPrice);
|
|
|
|
dbo.collection("decaPrice").insertOne(elemsDECAPrice, function(err, res) {
|
|
|
|
if (err) throw err;
|
|
|
|
console.log("Insert decaPrice")
|
|
|
|
});
|
|
|
|
console.log(hash1);
|
|
|
|
}catch{
|
|
|
|
console.error("Error in DECA Prices");
|
|
|
|
}
|
|
|
|
try{
|
|
|
|
let elemsGeth = await getGethElems(dates);
|
|
|
|
const hash2 = await db3.put(elemsGeth);
|
|
|
|
dbo.collection("decaGeth").insertOne(elemsGeth, function(err, res) {
|
|
|
|
if (err) throw err;
|
|
|
|
console.log("Insert decaGeth")
|
|
|
|
});
|
|
|
|
console.log(hash2);
|
|
|
|
}catch{
|
|
|
|
console.error("Error in GETH");
|
|
|
|
}
|
|
|
|
try{
|
|
|
|
const data = await db.get('');
|
|
|
|
let ccTotalEth = await getEthSum(data, dates);
|
|
|
|
const hash3 = await db4.put(ccTotalEth);
|
|
|
|
dbo.collection("decaCCTS").insertOne(ccTotalEth, function(err, res) {
|
|
|
|
if (err) throw err;
|
|
|
|
console.log("Insert decaCCTS")
|
|
|
|
});
|
|
|
|
console.log(hash3);
|
|
|
|
}catch{
|
|
|
|
console.error("Error in CCDB")
|
|
|
|
}
|
2020-06-17 18:54:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
index();
|
|
|
|
|
|
|
|
//Function to save data from web3 and contract (ret TotalSupply, Ethereum, Date)
|
|
|
|
const getGethElems = async (dates) => {
|
|
|
|
let ret = {};
|
|
|
|
var balanceEthereum = await web3.eth.getBalance('0xD60DC0805f44d10cAc6594f1a501c67929448957');
|
|
|
|
var totalSupply = await decaContract.methods.totalSupply().call();
|
|
|
|
totalSupply = web3.utils.fromWei(totalSupply, 'ether');
|
|
|
|
balanceEthereum = web3.utils.fromWei(balanceEthereum, 'ether');
|
|
|
|
ret.DTS = totalSupply;
|
|
|
|
ret.ETS = balanceEthereum;
|
|
|
|
ret.dates = dates;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Function to save data from orbitDB CC (ret ccTotal, ccTS, dates)
|
|
|
|
const getEthSum = async (elemsCC, dates) => {
|
|
|
|
const ret = {};
|
|
|
|
let sum = 0;
|
|
|
|
let sumCC = 0;
|
|
|
|
for (let key in elemsCC) {
|
|
|
|
sum += elemsCC[key]['conversionPrice']['ETH'];
|
2020-06-30 22:04:32 +00:00
|
|
|
sumCC += 1;
|
2020-06-17 18:54:29 +00:00
|
|
|
}
|
|
|
|
ret.ccTotal = sumCC;
|
|
|
|
ret.ccTS = sum;
|
|
|
|
ret.dates = dates;
|
|
|
|
return ret;
|
2020-06-30 22:04:32 +00:00
|
|
|
}
|