找到约 13 条结果

文章 我们现在在哪里?Giveth DApp的状态如何?

...4)[更新](https://medium.com/giveth/0x4-whats-dappening-milestones-proofs-and-faster-service-94bf926b9597),但距我们编写的关于平台能够实现什么的[概述](https://medium.com/giveth/what-is-the-future-of-giving-d50446b0a0e4)已经快一年了(!)。我们带来好消息:我...

文章 智能合约安全 - 常见漏洞(第三篇)

... ```solidity contract ERC20 { // internally called by transfer() and transferFrom() // balance and approval checks happen in the caller function _transfer(address from, address to, uint256 amount) internal returns (bool) { fee = amount * 100 / 99; balanceOf[fr...

文章 解构模块化区块链

...供了便利和更低的成本。 Source: https://medium.com/@tintin.land2021/modular-blockchain-will-bring-the-future-of-web3-users-f4901bf07e03 https://medium.com/altlayer/deconstructing-the-impact-and-opportunity-of-modular-execution-layers-bab8adbce083 关于 ChinaDeFi - ChinaDeFi.com 是...

文章 对Buterin的《权益证明设计哲学》的批判|作者:Tuur Demeester|Medium

...头货币](http://www.npr.org/sections/money/2011/02/15/131934618/the-island-of-stone-money)作为例子。 首先,我认为来自雅浦的石头货币并不是社会共识有效性的好例子。我们几乎没有有关在石头货币系统下进行或防止欺诈的数量的信息。此外,...

文章 BIP 324:增强比特币节点安全性的信息传输协议

...tcoin peers against man-in-the-middle attacks using an action called a “handshake” to share keys more privately.](https://img.learnblockchain.cn/2025/07/15/n-peers.jpg) _Jonas Schnelli 提议的 BIP 324 旨在利用 “握手”操作增强密钥分享的隐私性,从而保护比特币节点...

文章 [Reach教程翻译] 2.1安装与初始化

...使用Reach开发的智能合约可以部署在以太坊、Conflux、Algorand [Reach官网](https://reach.sh) [Reach官方文挡](https://docs.reach.sh)* # 2.1安装与初始化 [原文链接](https://docs.reach.sh/tut-1.html) # Linux/Mac系统 Reach需要与[make](https://en.wikipedia...

文章 以太坊 2.0 会议摘要 #40

...(Comparing discovery advertisement features by efficiency: ENRattributes and topic advertisement)。文章起了一个高大上的名字,但里面的内容也很有干货。同时他们也在将网络侧的代理程序升级到Age的Discv5的代码。他说他是一个Pi的规范里面的传...

文章 零知识证明-SRP协议

...接: https://medium.com/swlh/what-is-secure-remote-password-srp-protocol-and-how-to-use-it-70e415b94a76

文章 加密货币中的代币经济学:2024年全面 Staking 收益率比较

...cs-in-2024-analyzing-the-impact-of-high-vs-low-interest-rates-on-investors-and-strategies),美联储最近将利率降至 4.25-4.5%,这增强了 staking 相对于传统投资的吸引力。 **实际收益考虑因素** \\* [通货膨胀的影响](https://learnblockchain.cn/article/16330/): ...

文章 竞争性审计与私有审计:优缺点分析

...。 根据 [Cointelegraph](https://cointelegraph.com/explained/solana-and-ethereum-smart-contract-audits-explained) 的数据,大型项目的审计成本可高达 500,000 美元,具体价格取决于你的协议规模及全面审计代码库的难度。虽然单个审计员的可负担性更...

文章 加密货币质押:PoS如何降低能源消耗

...tainability/green-cryptocurrency)的交易速度。 从长远来看,Algorand等网络上的一笔PoS交易仅消耗[0.000008 千瓦时](https://www.bitwave.io/blog/explained-proof-of-work-vs-proof-of-stake-carbon-footprint),而比特币每笔交易的巨大消耗量为 830 千瓦时。 当我...

文章 Rust + Protobuf:从零打造高效键值存储项目

...kage] name = "kv" version = "0.1.0" edition = "2024" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = "1.29.1" prost = "0.11.9" # Only necessary if using Protobuf well-known types: prost-types = "0.11.9" [build-de...

文章 [经典攻击事件分析]xSurge事件中的重入漏洞+套利的完美组合利用

...看到攻击利用的关键点 ```solidity /** Purchases SURGE Tokens and Deposits Them in Sender's Address*/ // 利用关键点3:这里调用了mint时,balance还是没有减之前的,所以mint出来的肯定会多一些。 function purchase(address buyer, uint256 bnbAmount) intern...