找到约 15 条结果

文章 ZKsync加密预编译审计

...概述](#system-overview) - [安全模型与特权角色](#security-model-and-privileged-roles) - [高严重性](#high-severity) - [偶次幂的 pow_u32 指数运算实现不正确](#incorrect-implementation-of-pow_u32-exponentiation-for-even-exponent) - [G2 点缺少子群检查](#missing-s...

文章 Michael.W基于Foundry精读Openzeppelin第2期——StorageSlot.sol

... MockStorageSlot testing = new MockStorageSlot(); function test_SetAndGetAddressSlot() external { assertEq(testing.getAddressSlot(), address(0)); testing.setAddressSlot(address(1024)); assertEq(testing.getAddressSlot(), address(1024)); // check the slot ...

文章 自动做市商(AMMs)的演变

...et/publication/279714212_A_dynamic_pari-mutuel_market_for_hedging_wagering_and_information_aggregation)(2004)、 [预测市场](http://blog.oddhead.com/2006/10/30/implementing-hansons-market-maker/)(2006)、 [贝叶斯](http://www.eecs.harvard.edu/cs286r/courses/fall12/papers/bmm-ec.pdf)...

文章 对 ERC-4337 的误解与合理的担忧

...数](https://docs.opengsn.org/#recipient-contract-sees-the-original-sender-and-executes-the-original-transaction)而不是更直观的 `msg.sender` 来获取交易发送者的地址。毋庸置疑,大多数 DApp 没有这样做,因此元交易的兼容性受到严重限制。 然而,AA 没...

文章 闪电网络深入解读(下):HTLC 与支付路由

...闪电网络使用 [Sphinx](https://cypherpunks.ca/%7Eiang/pubs/Sphinx_Oakland09.pdf) 多重加密协议。在使用闪电网络时,Alice 会为网络的每一部分都做一层加密,从支付路径的末端开始。她使用 Eric 的公钥为 Eric 加密了消息。这条加密消息会被嵌...

文章 超越比特币:以太坊作为企业财务资产

...r-exemptive-relief-from-the-federal-securities-laws-for-tokenized-equities-and-other-digital-assets/) 美国证券交易委员会 (SEC) 发送了一封措辞严厉的信函,称其成员“一直非常关注”与代币化相关的豁免救济请求。 具体而言,SIFMA 敦促 SEC 不允许在...

文章 如何在World Chain上进行桥接:2025年快速安全桥接指南

....theblock.co/post/355263/world-raises-135-million-via-wld-token-sale-to-expand-across-the-us),积累了 [超过 4200 万美元的 TVL](https://defillama.com/chain/world-chain),并且由于将 World ID 直接集成到新协议中而受到广泛关注。World Chain 旨在大规模地为真实用...

文章 Michael.W基于Foundry精读Openzeppelin第60期——Clones.sol

...ssertEq(proxyBalance, 0); // case 1: test for both writing slot and return data in type uint256 assertEq(minimalProxy.i(), 0); assertEq(_implement.i(), 0); // call without eth value minimalProxy.setUint(1024); assertEq(minimalProxy.i(), 1024)...

文章 完整的 Web3 游戏技术栈

...lysis-Report-By-Application-By-Blockchain-Type-End-Use-By-Regional-Outlook-and-Forecast.html),全球游戏爱好者对 [Web3 游戏](https://www.zeeve.io/blog/what-is-web3-gaming-a-deep-dive-for-players-and-developers/) 的需求也在增加。[Web3 游戏](https://www.zeeve.io/blog/what-is-web3-g...

文章 公告:sec3 X-Ray安全扫描器正式发布

...ecurity/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/setting-up-code-scanning-for-a-repository) 许可证。 配置步骤有两步: 1. 设置代码扫描(遵循 [GitHub 的文档](https://docs.github.com/en/enterprise-server@3.4/code-security/code-scanning/...

文章 用大白话解释 Taproot 对隐私性的影响

...Bitcoin 账本来预测 [矿工消费行为](https://braiins.com/blog/when-and-why-bitcoin-miners-sell-btc) 的文章。我们觉得 Coin Metrics 的这个操作真的很酷。 但当区块链分析被用来找出钱包地址所对应的真实身份(及其交易)时,那就一言难尽了。...

文章 基准测试

...签名](#serde-function-signature) - [Rlp 编码和解码](#rlp-encoding-and-decoding) - [U256 运算](#u256-operations) ### 基准测试结果 #### ABI 编码 | | `Ethers` | `Alloy` | | :------------ | :----------------------- | :------...

文章 关于2020年的注释:加密货币及其影响

...com/business/2020/nov/27/biontech-covid-vaccine-is-a-triumph-of-innovation-and-immigration)、[人工智能](https://en.wikipedia.org/wiki/GPT-3) - 当然还有[区块链](https://ethereum.org/en/eth2/)和[加密技术](https://twitter.com/VitalikButerin/status/1298886605428502529) - 最终为人类...

文章 区块链中的预言机是什么?» 已解释

...tion/articles/2023/september/21/bringing-capital-markets-onchain-with-dtcc-and-chainlink)(每年处理超过 2 万亿美元),以及拥有超过 1 万亿美元资产管理规模的领先机构银行 [澳大利亚和新西兰银行集团有限公司 (ANZ)](https://pages.chain.link/hubfs/e/anz-cc...

文章 Move中的设计模式(1)——Capability

...le publish. /// Here we create only one instance of `OwnerCapability` and send it to the publisher. fun init(ctx: &mut TxContext) { transfer::transfer(OwnerCapability { id: object::new(ctx) }, tx_context::sender(ctx)) } /// The entry function can ...