找到约 15 条结果

文章 2024-07-21 zk-insights Weekly

...iciency of DPPs. - ### Designated-Verifier zk-SNARKs Made Easy Propose a construction of strong designated-verifier zk-SNARKs. The construction inspired by designated verifier signatures based on two-party ring signatures does not use encryption and can be applied on any public-verifiable zk-SNARK...

文章 2024-08-25 zk-insights Weekly

...t me and Khanh explored in FMN23 and SLAP with the LaBRADOR proof systems, constructing a super exciting and concretely efficient post quantum PCS, with a blazing fast vectorized AVX-512 implementation included. Just to give some numbers, for degree 2^30 proofs are 53KB and only take 3 minutes to co...

文章 区块构建环节

[跳到内容](https://efdn.notion.site/Block-construction-session-bd611621250f45948eff05fcf6a34067#main) ![📦 页面图标]()![📦 页面图标](https://img.learnblockchain.cn/2025/08/06/1f4e6.svg) ## 区块构建会议 类别 笔记 参与者 ![Barnabé Monnot](https://img.learnblockchain...

文章 Bitcoin 钱包开发流程|区块链技术系列课程 #10

...两部分:** * Data API:用于读取区块链数据。 * Construction API:用于构建和提交交易。 **2.2. Data API** Data API 提供了一组端点,用于检索区块链数据,如区块、交易、余额等。**主要端点包括:** * /network/list:...

文章 2024-10-13 zk-insights Weekly

...sefold and STIR to yield an efficient multilinearPCS with the best of both constructions. Next, this work proves the size of Basefold-FRI is equal to the size of traditional univariate FRI 🎉" [Hadas Zeilberger@idocryptography] - ### MPC-in-the-Head Framework without Repetition and its Applicatio...

文章 Rethink about DAO and introduce eonDAO

...rate governance through DAO’s thinking. Through a very large ecological construction and governance process To prove that the social practice of DAO’s philosophical thinking is reliable. ## What is NO.1 DAO? As a decentralized autonomous organization, DAO is a case of blockchain technolo...

文章 2024-10-06 zk-insights Weekly

...h are then used to create arithmetic circuits, a key building block in the construction of a ZK proof. - ### Foundations and Applications of Zero-Knowledge Proofs - ### The Hitchhiker's Guide to Scaling Bitcoin with STARKs - ### Understanding ZKsync: A Comprehensive Overview - ### Binary Tower F...

文章 通过 Libra 学习 Protobuf

...接口专门用于实现两者之间的转换. 比如: ``` /// Helper to construct and parse [`proto::storage::GetAccountStateWithProofByStateRootRequest`] /// /// It does so by implementing `IntoProto` and `FromProto`, /// providing `into_proto` and `from_proto`. #[derive(PartialEq, Eq, Clone, Fr...

文章 2024-07-28 zk-insights Weekly

...guments, and Zero-Knowledge Study group organized by ZK Hack - ### How to Construct Infinite Sets jHan 的视频介绍,包括什么是自然数?整数?有理数?有理数?虽然我们可能对这些数和集合有直观的理解,但要真正正式构建这些集合却并不那么容易...

文章 2024-09-29 zk-insights Weekly

...ers ### Detecting and Correcting Computationally Bounded Errors: A Simple Construction Under Minimal Assumptions - ### Dense and smooth lattices in any genus - ### On the Spinor Genus and the Distinguishing Lattice Isomorphism Problem - ### Founding Quantum Cryptography on Quantum Advantage...

文章 Ethernaut学习之路 GateKeeperThree

... address public trick; uint private password = block.timestamp; constructor (address payable _target) { target = GatekeeperThree(_target); } function checkPassword(uint _password) public returns (bool) { if (_password == password) { return true; } passwo...

文章 Gnosis的ConditionalTokens解读

... return payoutNumerators[conditionId].length; } /// @dev Constructs a condition ID from an oracle, a question ID, and the outcome slot count for the question. /// @param oracle The account assigned to report the result for the prepared condition. /// @param questionId An ...

文章 基于 Infura 与 Web3py 部署调用 Hello 合约全过程 | 以太坊开发极速入门

..., "") contract = w3.eth.contract(abi=abi,bytecode=code) # 合约对象 construct_txn = contract.constructor().buildTransaction({ 'from': acct.address, 'nonce': w3.eth.getTransactionCount(acct.address), 'gas': 5000000, 'gasPrice': w3.toWei('21', 'gwei')}) # 构造合约部署交易 signed ...

文章 闪电网络中的洋葱路由:Sphinx 包裹的构造

...btcstudy.org/btcstudy/images/lightning-network-onion-routing-sphinx-packet-construction/24-padding.png) 同样地,我们加入 Dave 的载荷,并加密它: ![img](https://res.btcstudy.org/btcstudy/images/lightning-network-onion-routing-sphinx-packet-construction/24-wrap_dave.png) 现...

文章 solana序列数据

...operties and imbues them // to the object instance class Assignable { constructor(properties) { Object.keys(properties).map((key) => { return (this[key] = properties[key]); }); } } // Our instruction payload vocabulary class Payload extends Assignable {} // Borsh nee...