找到约 12 条结果

文章 威胁建模:OP Labs 安全策略中的战略性工具

...节点是 OR 的关系,父节点概率取其中较高者; - 如果是 AND 的关系,父节点概率取较低者。 比如说,在一棵树中,某个二级节点是紫色,但它与一个黄色节点通过 AND 连接,所以合并后是黄色;但如果另一个子树是红色,则...

问题 网上扒的合约 panckeswap不能注入流动性

...with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: ...

文章 算法公平性的伦理问题

...的是,Kleinberg等人\[ [5](http://Jon Kleinberg, Sendhil Mullainathan, and Manish Raghavan. 2017. Inherent Trade-Offs in the Fair Determination of Risk Scores. In Proceedings of the 8th Innovations in Theoretical Computer Science Conference (ITCS ’17).)\]证明**没有机制能够**实现**最...

文章 Libra 源码分析:Libra 中数据存储的 Schema

... ``` /// This DB is a schematized RocksDB wrapper where all data passed in and out are typed according to /// [`Schema`]s. #[derive(Debug)] pub struct DB { inner: rocksdb::DB, } impl DB { /// Reads single record by key. pub fn get(&self, schema_key: &S::Key) -> Result { //从数据...

文章 每周以太坊进展 2023/3/25

...[Simple serialize](https://ethereum.org/en/developers/docs/data-structures-and-encoding/ssz/))格式努力 * [Deneb升级后命名](https://ethereum-magicians.org/t/e-star-name-for-consensus-layer-upgrade-after-deneb/13248)及一个合并名称(CL star + EL city) ## Dencun (Cancun + ...

文章 Solana入门实战

... }, ], programId: pg.PROGRAM_ID, }); await web3.sendAndConfirmTransaction( pg.connection, new web3.Transaction().add(instruction), [pg.wallet.keypair], ); ```   点击 run 之后,你就能在在浏览器中可以看到日志了 ![image-20241109160720...

文章 修改Solana上的压缩NFT(2023)

...要从 [数字资产标准 (DAS) API](https://docs.helius.xyz/compression-and-das-api/digital-asset-standard-das-api) 获取这些数据,该 API 简化了与压缩资产的交互。 通过Bubblegum可用的当前修改列表包括: - 铸造 - 转移 - 销毁 - 委托,取消委托 - ...

文章 Solidity 中的函数状态可变性

...uint sum){ // Expression that computes data passed in as parameters // and does not read or modify state sum = num1 + num2; } } ``` 输出: sum = 15 ### 为什么要将函数标记为view或pure? Gas 优化:Gas 消耗只在交易触发时生效,状态被修改时触...

文章 五周年总结:以太坊网络发展历程

...以太坊》](https://github.com/ethereumbook/ethereumbook)这本书中,Andreas Antonopoulos和Gavin Wood将以太坊称为“开发者的区块链,由开发者构建,为开发者服务”。开发者通常倾向于使用开源的、可用性强的、可编程和功能强大的软件。成千...

文章 账户抽象与ERC-4337 - 第一部分

... - [理解 ERC-4337 和 ERC-4804 标准](https://blog.quicknode.com/understanding-erc-4337-and-erc-4804-standards/) - [Vitalik Buterin 的博客文章](https://notes.ethereum.org/@vbuterin/account_abstraction_roadmap) - [以太坊改进提案:EIP-4337](https://eips.ethereum.org/EIPS/eip-4337) - [...

文章 SafePal x GoPlus 联合报告

...攻击方法是代码篡改和库注入技术,这些技术针对的是 Android 和 iOS 平台上的钱包应用。对于 Android,黑客使用逆向工程来反编译应用程序,插入恶意代码,然后将其重新打包成一个新的 APK 文件。由于在 iOS 上重新编译应用程序...

文章 以太坊分片:概述与确定性 | 作者:王晓伟 | Medium

...ike-theres-some-kind-of-scalability-trilemma-at-play-what-is-this-trilemma-and-can-we-break-through-it) \[3\] 可扩展性的限制基于系统的安全保证\[3\]。虽然我们通过将交易分配到分片来提高 TPS(每秒交易数),但因此我们也降低了 _每笔交易_ 的计算...