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.
112 lines
3.3 KiB
112 lines
3.3 KiB
import { getblock, getblockcount, getblockhash, getrawtransaction } from "../jsonrpc/index.ts";
|
|
|
|
import config from "../config/config.ts";
|
|
import miners from "./miners.ts";
|
|
import { hexToAscii } from "../utils.ts";
|
|
|
|
export interface IBlock {
|
|
height: number;
|
|
// hash: string;
|
|
signals: boolean | undefined;
|
|
coinbase: string | undefined;
|
|
miner: string | undefined;
|
|
}
|
|
|
|
let blocks: IBlock[] = [];
|
|
|
|
async function createBlock(height: number): Promise<IBlock> {
|
|
const blockHash = await getblockhash(height);
|
|
const block = await getblock(blockHash);
|
|
|
|
const generationTransactionTxId = block.tx[0];
|
|
const generationTransaction = await getrawtransaction(generationTransactionTxId, block.hash);
|
|
const payoutAddress = generationTransaction.vout[0]?.scriptPubKey?.addresses?.[0] ?? "";
|
|
const coinbase = hexToAscii(generationTransaction.vin?.[0]?.coinbase ?? "");
|
|
|
|
const miner = (() => {
|
|
for (const [tag, minerInfo] of Object.entries(miners.coinbase_tags)) {
|
|
if (coinbase.includes(tag)) {
|
|
return minerInfo.name;
|
|
}
|
|
}
|
|
|
|
for (const [tag, minerInfo] of Object.entries(miners.payout_addresses)) {
|
|
if (payoutAddress == tag) {
|
|
return minerInfo.name;
|
|
}
|
|
}
|
|
|
|
return undefined;
|
|
})();
|
|
|
|
return {
|
|
coinbase,
|
|
miner,
|
|
height: block.height,
|
|
// hash: blockheader.hash,
|
|
signals: (block.version & (config.fork.versionBit + 1)) === config.fork.versionBit + 1,
|
|
};
|
|
}
|
|
|
|
async function setupPeriod(blockCount: number, startHeight: number, endHeight: number): Promise<IBlock[]> {
|
|
const blocks: IBlock[] = [];
|
|
for (let i = startHeight; i < endHeight; i++) {
|
|
console.log(`Fetching: ${i}`);
|
|
if (i > blockCount) {
|
|
blocks.push({
|
|
height: i,
|
|
signals: undefined,
|
|
coinbase: undefined,
|
|
miner: undefined,
|
|
});
|
|
continue;
|
|
}
|
|
try {
|
|
blocks.push(await createBlock(i));
|
|
} catch (error) {
|
|
console.error("Block boostrapping failed");
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
return blocks;
|
|
}
|
|
|
|
export async function bootstrapBlocks() {
|
|
console.log("Bootstrapping block data...");
|
|
|
|
let blockCount = await getblockcount();
|
|
const difficultyPeriodStartHeight = blockCount - (blockCount % 2016);
|
|
const difficultyPeriodEndHeight = difficultyPeriodStartHeight + 2016;
|
|
console.log(`Current block height is ${blockCount}`);
|
|
blocks = await setupPeriod(blockCount, difficultyPeriodStartHeight, difficultyPeriodEndHeight);
|
|
|
|
setInterval(async () => {
|
|
const newBlockCount = await getblockcount();
|
|
if (newBlockCount > blockCount) {
|
|
console.log("Found new block");
|
|
if (newBlockCount % 2016 === 0) {
|
|
blockCount = newBlockCount;
|
|
const difficultyPeriodStartHeight = blockCount - (blockCount % 2016);
|
|
const difficultyPeriodEndHeight = difficultyPeriodStartHeight + 2016;
|
|
|
|
console.log(`Current block height is ${blockCount}`);
|
|
blocks = await setupPeriod(blockCount, difficultyPeriodStartHeight, difficultyPeriodEndHeight);
|
|
return;
|
|
}
|
|
|
|
for (let i = blockCount + 1; i <= newBlockCount; i++) {
|
|
const block = await createBlock(i);
|
|
blocks[i % 2016] = block;
|
|
console.log(`Block ${i} set`);
|
|
}
|
|
blockCount = newBlockCount;
|
|
}
|
|
}, 10 * 1000);
|
|
|
|
console.log("Bootstrapping done.");
|
|
}
|
|
|
|
export function getBlocks() {
|
|
return blocks;
|
|
}
|
|
|