UNPKG

blocke

Version:

Command-line tool to query the blockchain for a variety of cryptos. View blocks, transactions, and accounts (where applicable).

49 lines (39 loc) 2.04 kB
/* Copyright (C) 2017 BikBikBikBikBik This file is part of blocke. blocke is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. blocke is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with blocke. If not, see <http://www.gnu.org/licenses/>. */ const { Account, Block, Network, Transaction } = require('./models'); const resources = require('./resources'); const _ = require('underscore'); class IquidusTypeMapper { mapAccount(account) { return new Account(account.address, parseFloat(account.balance)); } mapBlock(block) { return new Block(block.difficulty, block.hash, block.height, new Date(block.time * 1000), block.tx.length); } mapNetworkInfo(network) { return new Network(network.difficulty, parseFloat(network.hashrate) * network.hashRateMultiplier, network.blockcount); } mapTransaction(transaction) { if (transaction.vin.length === 1 && typeof(transaction.vin[0].coinbase) === 'string') { transaction.vin[0].address = resources.coinbaseAddressValue; transaction.vin[0].value = _.reduce(transaction.vout, (total, output) => total + output.value, 0); } const normalOutputs = _.filter(transaction.vout, (output) => output.scriptPubKey.hasOwnProperty('addresses')); return new Transaction(_.reduce(transaction.vin, (total, input) => total + input.value, 0), transaction.blockhash, transaction.txid, _.map(normalOutputs, (output) => ({ address: output.scriptPubKey.addresses[0], amount: output.value })), _.map(transaction.vin, (input) => ({ address: input.address, amount: input.value })), new Date(transaction.time * 1000)); } } module.exports = new IquidusTypeMapper();