找到约 12 条结果

文章 权益证明,私钥攻击与无法伪造的奢侈

...]](https://www.btcstudy.org/2021/09/10/proof-of-stake-private-keys-attacks-and-unforgeable-costliness-the-unsung-hero/#zhu1) 能够轻易地在相同高度创建出两条具有相当合法性的链,对于网络中的其他参与者来说,两条链中的任一条都不会看起来更“正确”...

文章 关于拥有710k tps的索拉纳PoH共识算法的个人感想

...4000 hashes per second would generate an additional 160 kilobytes of data, and would require access to a GPU with 4000 cores and roughly 0.25-0.75 milliseconds of time to verify 举的例子是GPU拥有4000核心(GPU的核心与CPU的概念不一致, 甚至Nvidia与AMD对GPU核心定义也不一)...

文章 每周以太坊进展 2021/04/04

...CALL 操作码的安全性](https://ethereum-magicians.org/t/eip-3074-auth-and-authcall-opcodes/4880/61?u=danfinlay)(还有 Alexey 的回应) * [启用 BLS12-381 支持的路径:EIP2537 和 EVM384](https://docs.google.com/document/d/1DdA1IxSDK5ppC1C2W9uvMW66Y8VToc-vPV5B68ZQvOg) * [EVM384 进...

文章 深入以太坊虚拟机 - 来自《精通以太坊》

...有符号大于比较 EQ //相等比较 ISZERO //简单的非运算 AND //按位与操作 OR //按位或操作 XOR //按位异或操作 NOT //按位非操作 BYTE //从完整的 256 位宽字中检索单个字节 ``` **环境操作码** :处理执行环境信息的...

文章 Polocolo介绍:一种利用查找表的PLONK零知识友好型哈希函数(第一部分)

...提案已经涌现,成为先进的 ZK 友好哈希函数。 ### Sponge Construction(海绵结构) 设计 ZK 友好哈希函数的常用方法是首先构造一个置换(一个双射函数 Fpt→Fpt\\mathbb{F}\_p^t \\rightarrow \\mathbb{F}\_p^tFpt​→Fpt​, 其中 ttt 表示置换的大...

文章 Orbit SSF:对单人Staking友好的SSF验证者集合管理 - Proof-of-Stake / 经济学

...行为期一周的面对面头脑风暴时整理出来的。特别感谢 [Anders](https://twitter.com/weboftrees), [Ansgar](https://twitter.com/adietrichs), [Barnabé](https://twitter.com/barnabemonnot), [Thomas](https://twitter.com/soispoke) 的持续讨论和反馈,再次感谢 Anders 提供了...

文章 加密货币拒付:为什么加密货币现在不支持拒付以及未来如何支持

...监管环境](https://blockapps.net/blog/video-navigating-the-regulatory-landscape-for-finance-and-healthcare/) * [福布斯采访 BlockApps 企业区块链平台顾问](https://blockapps.net/blog/forbes-interview-with-blockapps-advisor-on-enterprise-blockchain-platforms/) * [web3 商业时代...

文章 Golang 没有abi文件构造合约请求

...成.不依赖完整的 [abi](https://learnblockchain.cn/2018/08/09/understand-abi) 文件.当然直接构造 abi字符串然后`abi.JSON()`.只要理解了 `ABI`的创建步骤,使用json文件创建还是代码直接创建都是可以. ## 观察abigen生成的wapper.go是如何处理合约调用...

文章 Walrus搭建您的第一个Walrus Site站点

...这会提示你配置新的设置。 #### 2.2.1 前置条件 Sui wallet and Testnet SUI 具体check的命令 ```sh # 创建一个Sui测试网环境, 别名testnet $ sui client new-env --alias testnet --rpc https://fullnode.testnet.sui.io:443 # 切换到testnet $ sui client switch --env test...

文章 SUI Move官方示例合约实践——游戏类:海洋英雄游戏(sea hero)

...st #[allow(unused_function)] /// Get a treasury cap for the coin and give it to the admin // TODO: this leverages Move module initializers fun init(ctx: &mut TxContext) { transfer::transfer( SeaHeroAdmin { id: object::new(ctx), ...

文章 Rust入门系列:10、一文说透Rust中的引用和借用

... r2 = &s; // 没问题 let r3 = &mut s; // 大问题 println!("{}, {}, and {}", r1, r2, r3); ``` 错误如下: ```rust error[E0502]: cannot borrow `s` as mutable because it is also borrowed as immutable // 无法借用可变 `s` 因为它已经被借用了不可变 --> src/m...

文章 构建你的第一个零知识 snark 电路(Circom2)

...Compiles the circuit to wat --O1 Only applies var to var and var to constant simplification -V, --version Prints version information OPTIONS: --O2 Full constraint simplification [default: full] -o, --output Path to the directory whe...