找到约 12 条结果

文章 Etherspot周报:AI代理成为最大用户,Gemini推出Passkey钱包,Offchain Labs收购ZeroDev……

...](https://www.gemini.com/es-LA/blog/launching-the-gemini-wallet-a-simple-and-secure-way-to-go-onchain)推出 Gemini 钱包,这是一款自托管智能钱包,为加密用户和开发者提供嵌入式和可移植的灵活性。 与此相辅相成的是 Gemini Onchain™ Dashboard,这是一...

文章 什么是抢跑交易 - 它是如何运作?

...往[Cyfrin Updraft课程](https://updraft.cyfrin.io/courses/security/mev-and-governance/mev-introduction),在那里我们将更深入地讨论什么是MEV和加密抢跑交易,并向你展示如何在智能合约代码库中发现该问题。 ## 什么是加密货币中的MEV? MEV代表...

文章 用于检测变形智能合约的工具

....13/introduction-to-smart-contracts.html?highlight=selfdestruct#deactivate-and-self-destruct) ,这是一种命令,正如其名所示——它会擦除给定合约地址的所有代码和存储。合约中存在自毁代码并不能证明它是变形的;然而,它提供了一个线索,表...

文章 使用 Nodejs、MetaMask 和 OpenSea 来进行 NFT登录

...penSea API。 这是Authenticating users to your web app using metamask and nodejs一文的后续,所有基本的metamask登录代码都在该文章中共享。链接:https://blog.devgenius.io/authenticating-users-to-your-web-app-using-metamask-and-nodejs-e920e45e358 下面是我们想要...

文章 每周以太坊进展 2021/03/28

...了 450 万美元](https://medium.com/elasticdao/elasticdao-smart-contract-and-security-audits-400f424281b6) ## 生态 * [Ethereum 区块空间市场:谁能得到什么,为什么?](https://www.aniccaresearch.tech/blog/ethereum-blockspace-who-gets-what-and-why) * [Shutter network](https:...

文章 零碎的Solidity小测验.01

...`` --- > 2. What’s the main difference between a transparent proxy and a universal proxy? 题目意思是透明合约和代理合约的主要区别是啥?社区里这篇[文章](https://learnblockchain.cn/article/1933#%E4%BB%A3%E7%90%86%E5%AD%98%E5%82%A8%E5%86%B2%E7%AA%81%E5%92%8C%E9%9D...

文章 hardhat 教程及 hardhat-deploy 插件使用

...ascript // SPDX-License-Identifier: MIT // The line above is recommended and let you define the license of your contract // Solidity files have to start with this pragma. // It will be used by the Solidity compiler to validate its version. pragma solidity ^0.7.0; // This is the main buildi...

文章 Softchain 的应用场景和安全成本

...> > _来源: [https://bitcoinmagazine.com/technical/softchains-use-cases-and-security-costs](https://bitcoinmagazine.com/technical/softchains-use-cases-and-security-costs)_ > > [前篇中文译本](https://learnblockchain.cn/article/18200/) 本文是研讨不同侧链设计的系列文章之一...

文章 每周以太坊进展 2023/4/29

...来升级的主要功能 * [EIP4844 devnet 5](https://4844-devnet-5.ethpandaops.io/) 成功上线 * [KZG 仪式](https://ceremony.ethereum.org/):共91,000+账号贡献,每个账号具备[64 笔交易](https://twitter.com/carlbeek/status/1651640315504361474)。 ## Layer 1 * [MEV-Boo...

文章 Move中的设计模式(3)——Hot Potato

... } /// An object conveying the privilege to withdraw funds from and deposit funds to the /// `FlashLender` instance with ID `flash_lender_id`. Initially granted to the creator /// of the `FlashLender`, and only one `AdminCap` per lender exists. struct AdminCap has key, stor...

文章 Rust 测试的函数、命令和种类

... if value < 1 { panic!("Guess value must be between 1 and 100, got {}.", value); } Guess { value } } } #[cfg(test)] mod tests { use super::*; #[test] #[should_panic] fn greater_than_100() { Guess:...

文章 以太坊数据流分析技术

... from crytic_compile import CryticCompile from crytic_compile.platform.standard import generate_standard_export if __name__ == '__main__': compilation = CryticCompile("tests/test.sol") print(generate_standard_export(compilation)) ``` 结果如下: ``` { 'compilation_uni...