找到约 15 条结果

文章 技术详解 | 链上打新局中局,交税的狙击机器人

...e.png](https://img.learnblockchain.cn/attachments/2024/12/0ryFqqL067515b225a3db.png) ![image.png](https://img.learnblockchain.cn/attachments/2024/12/88ZzdoXM67515b375b6f8.png) 结果显示整个代币合约仅有三处对balance变量的修改,分别在“\_getAmount”、“\_transferFrom...

问题 合约里因为分红 回流的原因 溢出了一些bnb,有什么方式可以取出来吗,有偿的,这是合约地址:0xF75e06EA851E45B612fe660e3A01Eb0314cc8d39

/** *Submitted for verification at BscScan.com on 2022-03-25 */ // SPDX-License-Identifier: MIT /** TG: https://t.me/Myisland_Dao_Global Twitter:https://twitter.com/myisland_dao?s=21 */ pragma solidity ^0.8.4; interface IERC20 { /** * @dev Returns the amount of tokens in existen...

文章 密码学 - ZaKi介绍 - Ingonyama

...的 ZK 应用程序。 ![](https://img.learnblockchain.cn/2025/04/26/1z0A3dJd4_KbwyDApRZODJw.png) 1. **ICICLE-NG**:最初,开发人员可以使用 ICICLE,而无需直接访问 GPU。 此阶段旨在帮助开发人员评估迁移到 GPU 加速实例的潜在性能优势,而无需立即掌...

问题 无法在bscscan上公开合约

我是在remix上部署的合约,在公开合约时叫我提交ABI-encode,一直显示提交失败,希望大神能够解答下,谢谢 错误信息: **Error!** Invalid constructor arguments provided. Please verify that they are in ABI-encoded format 以下是我的源码: // SPDX-Licens...

文章 智能合约安全审计入门篇 —— 移花接木

...** 上期我们了解了[利用 tx.origin 进行钓鱼](https://learnblockchain.cn/article/5105)的攻击手法,本期我们来带大家了解一下如何识别在合约中隐藏的恶意代码。 ## **前置知识** 大家还记得之前几期部署攻击合约时我们会传...

文章 Euler Finance事件后续分析

![](https://img.learnblockchain.cn/2025/04/05/1Koxi14vPYRfhZiSLpg9Xzw.png) [omniscia.io](https://omniscia.io/) 本文旨在以中立的方式分析于3月13日大约08:50 UTC发生的Euler Finance事件,并识别根本原因。 ## 漏洞分析 被利用的漏洞源于Euler Finance如何允许...

文章 Deep Dive into TON Smart Contracts: Implementing Proof-of-Work in the TestGiver Contract

> In the rapidly evolving landscape of blockchain technology, smart contracts have emerged as a pivotal force driving the development of decentralized applications (DApps). TON (The Open Network) is an emerging blockchain platform that has garnered attention from numerous developers and enterprises ...

文章 EIP-7685:通用执行层请求

...**0x01** 来改变这一点。为创建该请求,提款地址调用 [0x00A3ca265EBcb825B45F985A16CEFB49958cE017](https://etherscan.io/address/0x00A3ca265EBcb825B45F985A16CEFB49958cE017?ref=ghost-2077.arvensis.systems) 智能合约,并提供验证者公钥及请求的提款金额。智能合约...

文章 How to use eth_getTransactionReceipt?

From the first day the EVM launched, there were logs saving **the transaction detail information** onto Ethereum blockchain. These logs indicate the counterparty of the transaction, the token the transaction triggered on, the events the transaction exposed out, the data the transaction attached on...

文章 Compound简化版v2

...。 对于Exp,compound定义了一个结构体: ```js uint constant expScale = 1e18; struct Exp{ uint mantissa; } ``` 对于Double,compound定义了一个结构体: ```js uint constant doubldScale = 1e36; struct Double{ uint mantissa; } ``` 在compound里面用的...

文章 永远的Hello World,永远的a + b

# 一:Fork the sui project 1. 点击 [$\mathit{GitHub}$](https://github.com/MystenLabs/sui) 进入 $\mathit {Sui}$ 存储库。 2. 找到 **$\mathit {Fork}$**,将该库分叉存储到你自己的账号下。 3. 来到你自己的分叉,找到绿色的 $\mathit {Code}$ 按钮,复制其...

文章 golang 根据某个特定字段对结构体的顺序进行排序

...例代码,假设有一个包含Person结构体的切片,你希望按照Age字段进行排序: ``` package main import ( "fmt" "sort" ) type Person struct { Name string Age int } func main() { people := []Person{ {"Alice", 30}, {"Bob", ...

文章 乘法子群与本原元素

...对群论的研究,探讨**子群(subgroups)**和**生成元(generators)**。**本原元素(primitive element)**的概念将在最后介绍。我们假设你已经熟悉群的定义。如果你需要复习,请查看[本文](https://learnblockchain.cn/article/11320)。 为了建立...

文章 [镜像] Zk-SNARKs:深入解析

[镜像] Zk-SNARKs:机制解析 _这是原文的镜像,地址为[https://medium.com/@VitalikButerin/zk-snarks-under-the-hood-b33151a013f6](https://learnblockchain.cn/article/10960)_ _这是系列文章的第三部分,解释了 zk-SNARKs 背后的技术是如何工作的;之前的文章涉...