1 2 3 4 5 ··· 10 下一页
摘要: 个人微博:https://weibo.com/u/2434823180 Blog: https://apenote.github.io vx: apedamoon 区块链通识 区块链技术基础 区块链原理 挖矿原理 软分叉和硬分叉 : https://www.cnblogs.com/apenote/p 阅读全文
posted @ 2022-12-08 13:18 apeNote 阅读(68) 评论(0) 推荐(0) 编辑
摘要: block/ block.go package blockchain import ( "bytes" "crypto/sha256" "encoding/gob" "log" ) type Block struct { Hash []byte Transactions []*Transaction 阅读全文
posted @ 2024-08-17 14:32 apeNote 阅读(1) 评论(0) 推荐(0) 编辑
摘要: part1: transaction.go package blockchain import ( "bytes" "crypto/sha256" "encoding/gob" "encoding/hex" "fmt" "log" ) type Transaction struct { ID []b 阅读全文
posted @ 2024-08-17 12:50 apeNote 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 原文:区块链实现(三)—用数据库存储区块信息 https://zhuanlan.zhihu.com/p/714854444 文件目录 主文件下有 文件blockchain、go.mod、gosum、文件tmp、main.go 文件blockhain下面有block.go、blockchain.go、 阅读全文
posted @ 2024-08-16 15:29 apeNote 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://csdiy.wiki/ 阅读全文
posted @ 2024-08-15 08:51 apeNote 阅读(1) 评论(0) 推荐(0) 编辑
摘要: We are looking for an experienced Backend Engineer to join our Data Platform team. As a Backend Engineer, you will be responsible for developing and m 阅读全文
posted @ 2024-08-11 10:56 apeNote 阅读(3) 评论(0) 推荐(0) 编辑
摘要: golang package blockchainimport ( "bytes" "crypto/sha256" "encoding/binary" "fmt" "log" "math" "math/big" ) // Take the data from the block // create 阅读全文
posted @ 2024-08-09 15:50 apeNote 阅读(3) 评论(0) 推荐(0) 编辑
摘要: www.topgoer.com/ 阅读全文
posted @ 2024-08-07 22:57 apeNote 阅读(2) 评论(0) 推荐(0) 编辑
摘要: golang package main import ( "bytes" "crypto/sha256" "fmt" ) type BlockChain struct { blocks []*Block } type Block struct { Hash []byte Data []byte Pr 阅读全文
posted @ 2024-08-07 09:53 apeNote 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 个人微博:https://weibo.com/u/2434823180 Blog: https://apenote.github.io vx: apedamoon 一、区块链基础 1.1、掌握以太坊 1.2、pow 和 pos 二、solidity 基础 2.1、Solidity 文件 ; 2.2、 阅读全文
posted @ 2024-08-03 10:01 apeNote 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1、区块链是什么? 区块链是一个不断增长的分类账(文件),它以安全、按时间顺序和不可变的方式永久记录已发生的所有交易。它可用于资金、财产、合同等的安全转移,而无需银行或政府等第三方中介。区块链是最著名的加密货币比特币的支柱。它是一个点对点的电子现金系统和一个去中心化的网络,允许用户直接进行交易,而无 阅读全文
posted @ 2024-07-21 22:09 apeNote 阅读(8) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 10 下一页