找到约 13 条结果

文章 每周以太坊进展 2022/9/10

...](https://forum.makerdao.com/t/pecu-announcement-maker-protocol-the-merge-and-future-forks-of-ethereum/17789) - Stateful Works [合并手册](https://stateful.mirror.xyz/mYXVnZ_0mP0eTtKMb1-NJqo3a8cRXGMySfk_0ep_Oeg):60多个核心贡献者的观点 - [EF资助者](https://blog.ethereum.org/2022/...

文章 对 Fernando Borretti 的采访:关于 Austral——一种具有线性类型的系统编程语言

...g/)) ([Github](https://github.com/austral/austral)) 语言的创建者 Fernando Borretti 提出问题并分享他的答案。正如其网站上所说: > “**Austral** 是一种新的系统编程语言。它使用线性类型来提供内存安全和[基于能力的安全性代码](https://en.wiki...

文章 塑造现代zkVM的项目——第一部分:ZKSECURITY

...路! 它有门和线,尽管它的门不是典型的电路门,例如 AND、OR、NAND、XOR 等。 相反,它有算术门: 一个门用于将两个输入相乘,另一个门用于将两个输入相加。 ![arithmetic-circuit](https://img.learnblockchain.cn/2025/07/10/arithmetic-circuit.png...

文章 BlockThreat - 2025年第32周

.../cracking-the-vault-how-we-found-zero-day-flaws-in-authentication-identity-and-authorization-in-hashicorp-vault/)**,作者:Yarden Porat (Cyata)。 - **[云威胁视野报告](https://services.google.com/fh/files/misc/cloud_threat_horizons_report_h22025.pdf)**,作者:Google Cloud Security...

文章 EigenLayer:EigenLayer 历史、Staking 和可编程信任

...ns#:~:text=Liquidity%20provider%20(LP)%20tokens%20are,impermanent%20loss%20and%20market%20volatility.) 的 staking。 LP 代币代表 DeFi 交易所(例如 Uniswap 或 Curve)中包含的总流动性的一部分。 如下图 B 部分所示,EigenLayer 支持多种收益叠加途径(即,以...

文章 通过设计实现自主性: 在后界面世界中维护用户控制权

...美元。 - [**Anoma**](https://anoma.net/blog/an-introduction-to-intents-and-intent-centric-architectures) (**主网将于 2025 年推出,处于早期部署阶段**) 引入了一个完全基于意图的架构。它使用一个 Gossip 协议进行去中心化的意图发现,用户将意图广播...

问题 truffle migrate 本地部署合约测试 IterableMapping 依赖问题 如何处理?

...*** "DogeBack" -- DogeBack contains unresolved libraries. You must deploy and link the following libraries before you can deploy a new version of DogeBack: IterableMapping. at D:\node\node_global\node_modules\truffle\build\webpack:\packages\deployer\src\deployment.js:365:1 at processTic...

文章 工程师指南: 量化交易策略构建与验证

...获取加密货币数据。 ## 安装依赖 ``` pip install ccxt pandas numpy scipy matplotlib seaborn yfinance ``` ## 完整的数据收集脚本 ``` import ccxt import pandas as pd import numpy as np from datetime import datetime, timedelta import time import os from typing im...

文章 EVM底层探索:字节码级分析最小化代理标准EIP1167

...re/vm/evm.go?L406): ```go func (evm *EVM) create(caller ContractRef, codeAndHash *codeAndHash, gas uint64, value *big.Int, address common.Address, typ OpCode) ([]byte, common.Address, uint64, error) { // Depth check execution. Fail if we're trying to execute above the // limit. if evm.depth ...

文章 闪电网络路由:正和博弈中的隐私与效率

...ghtning Network 上有效运行。事实上,它运行得非常好。在 [Android](https://learnblockchain.cn/article/11091) 和 [iPhone](https://learnblockchain.cn/article/11093) 上也是如此。 ### 基础知识:节点、通道、洋葱 Lightning Network 的基本构建模块是节点和连...

文章 Solana特性兼容性 - 如何在各个集群之间实现可靠的应用程序性能

...见 [资源](https://learnblockchain.cn/article/11196-development/accounts-and-data/feature-gates#resources))。这些特性可以在特定集群(例如测试网)中激活,而在其他集群(如主网)中则可能不激活,从而导致不同环境之间的功能差异。在使用默认...

文章 区块链交易结算保证

...币是一种新颖的 [制度技术](https://medium.com/@hasufly/bitcoin-and-the-promise-of-independent-property-rights-8f10e5c7efa8)— 高保证的财富储存和转移 **不依赖** 国家或金融体系,这将打开人类组织的新模式,并使那些财产权得到严格执行的地方能...

文章 初步理解EVM

.../docs.soliditylang.org/en/latest/internals/layout_in_storage.html#mappings-and-dynamic-arrays)**。** #### bytes 和 string 的存储 **`bytes`** 和 **`string`** 是比较特殊的数组类型,它们的存储方式相同。因为它们的每个元素相当于 **`uint8`**,占用 8 位,...