找到约 12 条结果

文章 如何使用 Aderyn 逐步编写一个检测器

... -> Result { 2 // Iterate over all binary operations in the context and filter for multiplication operations (*) 3 for op in context.binary_operations().iter().filter(|op| op.operator == "*") { 4 // Check if the left operand of the multiplication is a binary operation (i.e.,...

文章 每周以太坊进展 2020/09/27

...第一个例子是把 Turbogeth 当作一个代码库](https://github.com/mandrigin/turbo-api-examples/tree/master/cmd/mint) * Tim Beiko 的 [EIP1559 现状](https://hackmd.io/@timbeiko/1559-update-001):实现、模拟、形式化分析、社区意见 * [更多 EIP1559 下的代理人策略模...

文章 Solidity开发者学习Move 语言,需要注意的语法

...account, resource); } } ``` ### 3. 函数和可见性(Function and Visibility) **Solidity**: - Solidity中有四种函数可见性:`public`、`private`、`internal`、`external`。 - 函数可以被合约内部和外部调用,通过不同的可见性修饰符来控制。 **...

文章 以太坊101:学习智能合约

...le/cbc38bf09088426fbefcbe7d42ac679f/v5/truffle:-smart-contract-compilation-and-deployment) 《Truffle: 开始测试你的智能合约》 (https://kauri.io/article/f95f956261494090be1aaa8227464773/v7/truffle:-testing-your-smart-contract) **相关链接及文档** 网站: ht...

文章 加密货币中的代币经济学:如何有效地计算和理解燃烧率

...最赚钱的项目?](https://phemex.com/academy/token-burning-what-is-it-and-how-to-find-the-most-profitable-projects),此过程通过将代币发送到无法访问的钱包地址来创造稀缺性,从而有效地将它们从总供应量中永久移除。 随着币安币 (BNB) 等项目展示...

文章 运行 v0.7 及更早版本的 Bitcoin Core

...eson Lopp_ > > _来源: [https://blog.lopp.net/running-bitcoin-core-v0-7-and-earlier/](https://blog.lopp.net/running-bitcoin-core-v0-7-and-earlier/)_ ![Running Bitcoin Core v0.7 and Earlier](https://img.learnblockchain.cn/2025/07/14/running-bitcoin.jpg) 本文是我对所有 Bitcoin Core 发行...

问题 BSC链合约开源问题,我把几个源码问题提交的时候遇到这个问题,请问怎么解决(有引用其他几个文件,我都提交了)

Compiler debug log: Error! Unable to generate Contract ByteCode and ABI (General Exception, unable to get compiled [bytecode]) For troubleshooting, you can try compiling your source code with the Remix - Solidity IDE and check for exceptions Compiler Warning(s): ParserError: Source "extensio...

文章 通过将LokiCode与BuildBear Sandbox集成,提升你的智能合约开发

...025/03/29/1HviO9-2dgWAL2CeQn19pbw.jpeg) ## 使用 LokiCode 和 BuildBear Sandbox 集成增强智能合约开发 本文最初发表于 BuildBear 网站,链接为 [https://www.buildbear.io/resources/guides-and-tutorials/loki\_Code](https://www.buildbear.io/resources/guides-and-tutorials/loki_Code)...

文章 使用 web3modal SDK实现连接MetaMask 钱包,部署到Vercel

...DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. (Use `node --trace-deprecation ...` to show where the warning was created) Vercel CLI 34.3.1 ? Log in to Vercel Continue with Email ? Enter your email address: 1131764933@qq.com We sent an email ...

文章 什么是多签名钱包?一个原理性介绍

...选的密语](https://blog.bitbox.swiss/en/optional-passphrases-benefits-and-risks/))的最大区别在于,它是在网络层面强制执行的:如果一笔比特币交易不满足所需的条件,网络中的其他节点会直接拒绝它。 ![](https://img.learnblockchain.cn/2025/07/18/mul...

文章 sui move开发实战-dao(2)

...n init(witness: DAO, ctx: &mut TxContext) { //1. create dao token and mint supply let (treasury_cap,metadata) = coin::create_currency(witness,18,b"DAO",b"dao",b"Dao token.",option::none(),ctx); transfer::public_freeze_object(metadata); let total_balance = coin::mi...

文章 Solana Actions and Blinks

...生命周期[#](https://solana.com/docs/advanced/actions#action-execution-and-lifecycle) 实际上,与 Actions 的交互和与常见的 REST API 的交互非常相似: - 客户端向 Action URL 发出初始`GET`请求,以获取可用 Action 的元数据 - 端点返回的响应包括...