找到约 15 条结果

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

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

文章 以太坊 Casper 101简而言之,Casper 将实现权益证明… | 作者:jon choi | Medium

...s://ethereumfoundation.org/devcon2/wp-content/uploads/2016/10/A-Correct-by-Construction-Asynchronous-Casper-Protocol.pdf)和[视频](https://www.youtube.com/watch?v=4LhC-jDaI00)由Vlad Zamfir。2016年10月。 - 2016.12.06 [Casper的历史:第一章](https://blog.ethereum.org/2016/12/06/history-ca...

文章 深入探讨 Solana 的 AccountsDB

...**生成账户索引** 使用 AccountsDB 元数据,验证者使用 `reconstruct_accountsdb_from_fields` 函数 **构建 AccountsDB 结构**。然后,使用 `AccountsDB :: initialize` 将账户文件加载到数据库,并使用 `AccountsDB :: generate_index` 生成索引。 索引的架...

文章 Bitcoin Optech:2021 比特币技术进展年度回顾

...nops.org/en/newsletters/2021/06/02/#candidate-set-based-csb-block-template-construction) 描述了一种矿工选择在区块中包含哪些交易的另类方法,预计这种新的方法可以在短期内略微提高矿工的利润。在长期中,如果矿工普遍接收了这种方法,意识...

文章 第十四章. 二层应用 #4 - Stacks

... ) } ``` 以及**testnet/stacks-node/src/node.rs**: ``` /// Constructs and returns a LeaderBlockCommitOp out of the provided params fn generate_block_commit_op( &mut self, block_header_hash: BlockHeaderHash, burn_fee: u64, key: &RegisteredKey, ...

文章 以太坊开发入门-ERC721开发NFT

...造函数,初始化合约名称,简称和合约部署者 */ constructor() { _name = "Harry.NTF"; _symbol = "HNT"; _admin = msg.sender; } /** * 判断实现了些什么接口. */ function supportsInterface(bytes4 interfaceId) publ...

文章 BOLT 4:洋葱路由协议

...化临时密钥](#blinding-ephemeral-keys) * [数据包构建](#packet-construction) * [数据包转发](#packet-forwarding) * [填充生成](#filler-generation) * [返回错误](#returning-errors) * [失败消息](#failure-messages) * [接收失败代码](#receiving-failure-codes) ...

文章 Chainlink--CCIP--NFT 讲解

...Lane Manager(通道管理) ```js class LaneManager { constructor() { this.lanes = new Map(); this.limits = new Map(); } // 检查通道状态 async checkLane(sourceChain, destChain) { const lane = this.getLane(sou...

文章 合约升级模式-以compound为例

...lementation; address public pendingComptrollerImplementation; constructor(address _admin) { admin = _admin; } //设置逻辑合约地址 function _setPendingImplementation(address newPendingImplementation) public returns (uint){ require(msg.sender == admin); pendingCom...

文章 理解以太坊的Layer 2扩容解决方案:状态通道、Plasma 和 Truebit | 作者:Josh Stark | L4 博客 | Medium

...近发布了项目进展的更新[在这里](https://blog.omisego.network/construction-of-a-plasma-chain-0x1-614f6ebd1612)。 ### **III. Truebit** [Truebit](http://truebit.io/) 是一种帮助以太坊进行 _重_ 或 _复杂_ 计算的技术。这使得它不同于状态通道和 Plasma,这两...

文章 系统合约/引导加载程序描述 (VM v1.5.0)

...时,才会设置每个位。目前,支持两个标志:第 0 位:`isConstructor` 标志。此标志只能由系统合约设置,并表示该帐户是否应执行其构造函数逻辑。请注意,与以太坊不同,构造函数和部署字节码之间没有分隔。有关更多信息,...

文章 同化博格:DAO相邻实体的新型密码法律框架

...索赔都被 “ [经济损失原则](https://www.americanbar.org/groups/construction_industry/publications/under_construction/2021/spring2021/economic_loss_doctrine/)” 排除或严重阻碍,该原则(在冒着一些简化的风险的情况下)指出,在被告与原告之间不存在 “...

文章 BOLT 4:洋葱路由协议

...葱密钥](#blinding-ephemeral-onion-keys) * [数据包构建](#packet-construction) * [洋葱解密](#onion-decryption) * [填充生成](#filler-generation) * [返回错误](#returning-errors) * [失败消息](#failure-messages) * [接收失败代码](#receiving-failure-codes) * [...

文章 Raiku:Solana 的高性能边缘计算层

...https://docs.raiku.com/overview/novel-app-architectures#external-extension-construction) 表明以太坊 L3 或自定义链可以通过 Raiku 有效地插入 Solana。这非常重要:这意味着以太坊 dApp 可以享受 Solana 的性能和用户群,而无需放弃其代码库。所有这些...

文章 Go 语言之搭建通用 Web 项目开发脚手架

... DebugLevel. core := zapcore.NewCore(encoder, writeSyncer, l) // New constructs a new Logger from the provided zapcore.Core and Options. If // the passed zapcore.Core is nil, it falls back to using a no-op // implementation. // AddCaller configures the Logger to annotate each message w...