找到约 10 条结果

文章 后量子时代,我们如何保护隐私

...不能将它发送给朋友: [![Image](https://img.learnblockchain.cn/2026/02/19/58026688_image.png)](/zkDragon/article/2024078012652687535/media/2023878582964211712) 为什么这是一个问题?对于私有支付,发送者必须向接收者发送一些加密数据。这使用了公钥...

问题 在Sepolia上验证合约报错:hardhat-verify found one or more errors during the verification process

...d259a8e60` 报错提示如下: Successfully verified contract MyERC20V1 on Sourcify. https://repo.sourcify.dev/contracts/full_match/11155111/0x64f632b88513918915a95f96fb2a83dd259a8e60/ hardhat-verify found one or more errors during the verification process: Etherscan: ReadableStream is...

问题 合约调用Balancer Vault Swap失败。

...leSwap({ poolId: 0x36bf227d6bac96e2ab1ebb5492ecec69c691943f000200000000000000000316, kind: IBalancerRouter.SwapKind.GIVEN_IN, assetIn: IAsset(address(0)), assetOut: IAsset(wstETH), amount: amount, userData: bytes("") ...

文章 LaserStream:下一代 Solana 数据流

...接,你可以通过它来追赶 3,000 个 slot 的历史数据(大约 20 分钟)。 ## **LaserStream 的工作原理** 每个 LaserStream 服务器连接到多个 Solana 节点,对传入数据进行重复数据删除,并维护最近 slot 的缓冲区,以便开发人员可以重放...

问题 1inch AggregationRouterV5 中的 swap函数 的data参数具体是如何构造的

... /// @param permit Should contain valid permit that can be used in `IERC20Permit.permit` calls. /// @param data Encoded calls that `caller` should execute in between of swaps /// @return returnAmount Resulting token amount /// @return spentAmount Source token amount function s...

文章 P2SH 之争:第一次比特币战争不为人知的故事

...-for-p2sh-the-untold-story-of-the-first-bitcoin-war)_ > > _原文出版于 2020 年 10 月。_ ![The saga of P2SH showcases Bitcoin’s unique dev community, the difficulty in making such changes and the tone for protocol debates ahead.](https://img.learnblockchain.cn/2025/07/13/-fought.png) \- P2...

文章 从零开发区块链应用(三)--mysql初始化及gorm框架使用

...(err.Error()) } ``` ## 1.3 设置连接数 ``` DB.SetMaxIdleConns(20) DB.SetMaxOpenConns(20) DB.SetConnMaxLifetime(time.Minute * 10) ``` ## 1.4 测试数据库是否可以连接成功 ```golang err = DB.Ping() if err != nil { logger.Error("MySQL connection failed.", "err", err....

文章 ULTRA TX - 可编程区块:一个交易满足统一和可扩展的以太坊-Layer 2 的所有需求

[![image](https://img.learnblockchain.cn/2025/07/25/c25ab9f9220e9da5a3e79b13136483340d1_2_500x500.jpeg)\\ image1024×1024 185 KB](https://ethresear.ch/uploads/default/original/3X/5/5/5518bc25ab9f9220e9da5a53e79b13136483340d1.jpeg "image") ## 是什么 ULTRA TX 是一种实现可编程 L1 区块的...

文章 解锁Rust代码组织:轻松掌握Package、Crate与Module

# 解锁Rust代码组织:轻松掌握Package、Crate与Module 想在2025年成为Rust编程的佼佼者?代码组织是Rust开发的第一道门槛,也是释放其高效与安全潜力的关键!Rust的模块系统通过Package、Crate和Module,为开发者提供了优雅而强大的代码...

文章 Solidity 编译器相关

... function requireGood(uint256 x) external pure { if (x < 10 || x > 20) { revert BadValue(); } } } contract CustomErrorBoolEfficient { error TooLow(); error TooHigh(); function requireGood(uint256 x) external pure { if (x < 10) { rever...