找到约 15 条结果

文章 Stellar合约库v0.3.0-rc.2审计

...围](#scope) - [系统概述](#system-overview) - [Token标准(Token Standards)的架构改进](#architectural-refinement-of-token-standards) - [Stellar 资产合约(SAC)管理模块](#stellar-asset-contract-sac-admin-modules) - [访问控制框架](#access-control-framework) - [开...

文章 解码操作码:机器码和区块链执行的心跳

... - **Opcode**:要执行的操作(例如,`ADD`,`JMP`)。 - **Operand(s)**:涉及的数据或位置(例如,`5`、`EAX`、内存地址 `0xA1`)。 考虑一个简单的机器代码序列: - `901`:输入一个值(操作码 `9`,操作数 `01`)。 - `306`:将值存储在内...

文章 Awesome zkVM - 零知识虚拟机 (zkVM) 精选列表

...项目 > [!NOTE] > 由 [@0xpiapark](https://x.com/0xpiapark) 和 [@alexanderlhicks](https://x.com/alexanderlhicks) 维护。某些细节可能已过时;请随时提出问题或 PR。有关公平跟踪方法的讨论,请参阅[未解决的问题](https://github.com/rkdud007/awesome-zkvm/issue...

文章 GARUDA: Faster SNARKs via Equifficient Polynomial Commitments

...杂电路验证提供了有力工具. ### **Reference** [1] Garuda and Pari: Faster and Smaller SNARKs via Equifficient Polynomial Commitments, 

文章 什么是账户抽象?EIP-4337解释

...ips/EIPS/eip-2470#:~:text=Some%20contracts%20are%20designed%20to,%2D1820%20and%20EIP%2D2429.)”智能合约,称为“EntryPoint”。整个区块链上只有一个 EntryPoint 智能合约。捆绑者在 EntryPoint 智能合约上调用一个名为 `handleOps` 的函数。 此函数接收捆绑...

文章 宣布我们的 B 轮融资和 Zama 保密区块链协议

## 宣布我们的 B 轮融资和 Zama 机密区块链协议 **—** Rand Hindi **过去几年,我们一直在构建对开发者最友好、快速和安全的全同态加密 (FHE) 方案,并将该技术授权给区块链和 AI 领域的数十家公司。今天,我们公布了迄今为止我...

文章 用集合论思维编写更健壮的 Solana 智能合约

...累积未达到 K 交易的历史值 if latestDispatchedTime != yesterday and latestDispatchedTime != today { tradeCount = 0 } // 累积交易 // 检查是否达到阈值 K,发放奖励 ``` 该实现存在一个 bug,可能导致多次奖励发放。当然,我们可以在奖励...

文章 以太坊的 101 关键知识点

...对该块执行了足够的计算量 54. *stateRoot*, *transactionsRoot* and *receiptsRoot* 是修改后的 Merkle-Patricia 树的根节点的 256 位哈希值。stateRoot 的叶子是所有以太坊地址-账户对的键值对, 其中每个相应的帐户包括: 1. nonce: 标量值等于从...

文章 LayerZero V2 — 简化版

...应用程序可以选择使用较旧版本的软件一样。 **Relayers and Oracles: The Off-Chain Components**(中继器和预言机:链下组件) 虽然 endpoints(端点) 处理链上通信,但 oracles(预言机) 和 relayers(中继器) 处理链下验证,这对于安全的跨链交易至...

文章 Flow区块链上的账户抽象——综合概述

...low) - [QuickNode & Account Abstraction](https://blog.quicknode.com/understanding-erc-4337-and-erc-4804-standards/) - [Flow: Race to 1 Billion Users](https://flow.com/post/account-abstraction-and-the-race-to-1-billion-users) - [Flow: Hybrid Custody - Initial Forum Post](https://forum.onflow.org/t/hy...

文章 EVM兼容性及区块链的未来

...://www.forbes.com/sites/laurashin/2022/02/22/exclusive-austrian-programmer-and-ex-crypto-ceo-likely-stole-11-billion-of-ether/?sh=540b29947f58) - 关于 DC 中稳定币的最新消息 [链接](https://twitter.com/jcherynski/status/1494041969533853700) - dYdX 用户在 L2 rollup 上每笔交易...

文章 Rollup和应用的全球RPC节点

![](https://img.learnblockchain.cn/2025/06/13/_RPC_Nodes_for_Rollups_and_Apps_Ink_2128351a15.png) 随着模块化区块链突破 gigagas 上限,我们正在进入一个应用程序例行生成每秒数万个 RPC 请求的时代。性能不是可有可无的,而是一个硬性要求。 **Gelato...

文章 对 DID Document 的思考 | Move dApp 极速入门(九)

...eys, that the DID subject or a DID delegate can use to authenticate itself and prove its association with the DID. A DID document might have one or more different representations as defined in 6. Representations or in the W3C DID Specification Registries \[DID-SPEC-REGISTRIES]. > > —— https://...

文章 【Uniswap V2】| 详解 TWAP 价格预言机和使用举例

...iveLast; uint public price1CumulativeLast; ... // update reserves and, on the first call per block, price accumulators function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private { ... uint32 blockTimestamp = uint32(block.timestamp % 2**32); ...

文章 订单流、拍卖与中心化 I - 警告

...参见 [这里。](https://collective.flashbots.net/t/order-flow-auctions-and-centralisation-i-a-warning/258)** ![mev utopia in danger meme](https://img.learnblockchain.cn/2025/03/05/OF-0b4b24710f19fe1a18cc99192c281c79.png) ## 引言 ### 什么是订单流? 在以太坊的语境中,我们...