<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>BFW DEMO JS PAGE</title>
<script id="bfwone" data="dep=jquery.17|crypto-js-3.1.9-1/crypto-js" src="http://repo.bfw.wiki/bfwrepo/js/bfwone.js"></script>
<script>
class Block {
constructor(index, timestamp, data, previousHash = '') {
this.index = index;
this.previousHash = previousHash;
this.timestamp = timestamp;
this.data = data;
this.hash = this.calculateHash();
}
calculateHash() {
return CryptoJS.SHA256(this.index + this.previousHash + this.timestamp + JSON.stringify(this.data)).toString();
}
}
class Blockchain {
constructor() {
this.chain = [this.createGenesisBlock()];
}
createGenesisBlock() {
return new Block(0, "011/01/2019", "bfw init block", "0");
}
getLatestBlock() {
return this.chain[this.chain.length - 1];
}
addBlock(newBlock) {
newBlock.previousHash = this.getLatestBlock.hash;
newBlock.hash = newBlock.calculateHash();
this.chain.push(newBlock);
}
isChainValid() {
for (let i = 1; i < this.chain.length; i++) {
const currentBlock = this.chain[i];
const previousBlock = this.chain[i-1];
if (currentBlock.hash !== currentBlock.calculateHash()) {
return false;
}
if (currentBlock.previousHash !== previousBlock.hash) {
return false;
}
}
return true;
}
}
bready(function() {
let bfwcoin = new Blockchain();
bfwcoin.addBlock(new Block(1, "1/12/2019", {
amount: 4
}));
bfwcoin.addBlock(new Block(2, "2/12/2019", {
amount: 8
}));
// 检查是否有效(将会返回true)
console.log('区块链是否有效? ' + bfwcoin.isChainValid());
// 现在尝试操作变更数据
bfwcoin.chain[1].data = {
amount: 100
};
console.log(bfwcoin);
// 再次检查是否有效 (将会返回false)
console.log("区块链是否有效? " + bfwcoin.isChainValid());
});
</script>
</head>
<body>
</body>
</html>
网友回复
ai大模型一次api调用由于tokens限制未完成100%回复如何进行续写?
如何防止ai人工智能分析开源软件漏洞然后进行攻击?
何为html的流式传输渲染?
一个好的开发框架加上ai就能实现一句话创建任意app应用?
如何通过ai生成一个人的不同年级的人脸照片?
uniapp和小程序开发如何用ai自动生成完整项目源码?
MITM Attcak如何实现局域网内任意设备无法上网?
国内ai大模型的api调用价格哪个更便宜性价比高?
抖音小程序如何弹出人机拖拽验证框验证真人操作?
为啥抖音小程序订阅消息推送结果报错 {"err_msg":"只对抖音/抖音极速版/头条开放","err_no":28014028