当前位置:   article > 正文

简易区块链_简易区块加载

简易区块加载

本文章参考慕课网视频,有兴趣的可以去查看。

// 迷你区块链——moniu-chain 
// 区块链的生成,新建,校验
// 交易
// 非对称加密
// 挖矿
// p2p网络


// [
//   {
   
//     index:0,索引
//     timestamountp:时间戳
//     data:区块的具体信息,主要是交易信息
//     hash:当前区块信息的哈希 哈希1
//     prevHash: 上一个区块的哈希 哈希0
//     nonce: 随机数
//   },
//   {
   
//     index:1,索引
//     timestamountp:时间戳
//     data:区块的具体信息,主要是交易信息
//     hash:当前区块信息的哈希 哈希2
//     prevHash: 上一个区块的哈希 哈希1
//     nonce: 随机数
//   },
//   {
   
//     index:2,索引
//     timestamountp:时间戳
//     data:区块的具体信息,主要是交易信息
//     hash:当前区块信息的哈希 哈希3
//     prevHash: 上一个区块的哈希 哈希2
//     nonce: 随机数
//   },
// ]

const crypto = require('crypto') //node.js的加密函数库


//创世区块
const initBLock = {
    
  index: 0,
  data: 'Hello moniu-chain!',
  prevHash: '0',
  timestamountp: 15,
  nonce: 75635,
  hash: '00001a80f57b3fb9c8f8f836570194e3f270ace15a7f9bac5e322ca27a091f5e' }


class Blockchain{
   
  
  constructor()
  {
   
    this.blockchain = [
      initBLock
    ] //链条
    this.data = []     //存储当前区块的信息,基本上是交易信息
    this.difficulty = 4 //前面4个0
    // const hash = this.computeHash(0,'0',new Date().getTime(),'hello moniu-chain!',1)
    // console.log(hash)
  
  }
// 获取最新区块
  getLastBLock(){
   
  return this.blockchain[this.blockchain.length-1]
  }



  transfer(from, to, amount)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/831972
推荐阅读
相关标签
  

闽ICP备14008679号