找到约 15 条结果

文章 Solana 中的多重调用:批量交易与交易大小限制

![Hero image showing Solona transaction batch and transaction size limit](https://img.learnblockchain.cn/2025/02/28/935a00_5dd3345354a8421d9e478d408eb4bee8~mv2.jpg) ### Solana 内置了多重调用(multicall) 在以太坊中,如果我们想要原子地批量处理多个交易,我们使...

文章 Axiom Halo2 电路深入研究

...plonkish”,因为它概括了 PLoNK 证明系统首先推广的 gates-and-wires 算术电路类型。电路通常不是直接计算结果,而是**检查**所有这些值是否与程序的正确执行相匹配。完整的细节要复杂得多,但是如果你感到好奇,可以查看 [Halo2 b...

文章 以太坊2.0测试网质押(Ubuntu/Pyrmont/Prysm)

...ermod -aG sudo ``` When you log in as `` you can type sudo before commands to perform actions with superuser privileges. Optional: If you used [SSH keys](https://jumpcloud.com/blog/what-are-ssh-keys) to connect to your Ubuntu instance via the `root` user you will need to associate the new us...

文章 基于 Move 的 Roll:Aptos 上的安全、即时随机性

...时的 [链上随机数API](https://github.com/aptos-labs/aptos-core/blob/randomnet/aptos-move/framework/aptos-framework/sources/randomness.move),专为PoS区块链设计,仅在Aptos上可用。如果你需要在Move中使用随机数,只需调用 _aptos\_framework::randomness::u64\_integer()_...

文章 Drift系列:(2) Drift 模型机制与新挑战 V2

...](https://medium.com/verse2/drift-protocol-series-2-drifts-model-mechanism-and-new-challenge-v2-5a4dc5ed7996) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 理解EIP1559中的费用

...s://www.reddit.com/r/ethereum/comments/lk1rjp/this_is_why_eip_1559_is_good_and_why_vitalik/): > 补偿兄弟块风险的提示水平被计算为约 0.8 gwei(兄弟块平均获得 1.67 ETH 的奖励而不是 2 ETH 基础奖励,因此约有 ~0.33 ETH = 330m gwei 的损失,1000 万气体的...

文章 以太七日谈 • 2022/3/15

...45666?s=20&t=jgBMIyPj0BR2q6CDtJER4w)。 3 月 11 日,开发者 MariusVanDerWijden [发推](https://twitter.com/parithosh_j/status/1501853152546545666?s=20&t=jgBMIyPj0BR2q6CDtJER4w)表示,Kiln 测试网上有使用 GPU 的矿工,并请对方关掉,否则 PoW 链在周末就会触达 TTD,...

文章 Sui Move合约开发入门(1)

...阅读更多关于[模块的内容](https://movebook.chrisyy.top/modules-and-scripts.html) 首先,我们创建一个空的 Move 包: ``` sui move new hello_world ``` 这将创建一个名叫hello_world的Move包,包含`toml`文件和`sources`文件夹,这一个最简单的包目...

文章 关于IBC Channel的一切信息(第一部分)

...[渠道](https://github.com/cosmos/ibc/blob/main/spec/core/ics-004-channel-and-packet-semantics/README.md) 是 [核心跨链通信(IBC)](https://github.com/cosmos/ibc/tree/main/spec/core) 协议的重要组成部分。它们充当在一条链上的 [模块](https://docs.cosmos.network/main/build...

文章 2025年...Push上的频道创建已今非昔比

...代币持有者](https://push.org/blog/push-v2-is-live-new-rewards-utility-and-functionality/?ref=decipherclub.com)。 2. **Push Communicator(Comm) 合约:** 1. 部署在 [多个 EVM 链](https://push.org/docs/notifications/push-smart-contracts/contract-addresses/?ref=decipherclub.com) 上,这...

文章 以太坊中的密码学与数字签名简介

...um.com/immunefi/intr...](https://medium.com/immunefi/intro-to-cryptography-and-signatures-in-ethereum-2025b6a4a33d) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 数据库连接神器:JDBC的基本概述、组成及工作原理全解析!

...etConnection(); String sql = "select * from emp where empno=? and state = 1"; ps = conn.prepareStatement(sql); ps.setInt(1, id); rs = ps.executeQuery(); if (rs.next()) { //取出第一列的值赋给empNO ...

文章 ZK-EVM类型:以太坊等效、EVM等效、Type 1、Type …

...,但许多 ZK-EVM [使用](https://guide.scroll.io/developers/ethereum-and-alpha-testnet-differences#additional-fields) Poseidon 哈希函数,该函数需要的门数量明显更少。 - 为了提供说明,让我们估计每秒可以计算多少个哈希函数(即,证明生成速度比...

文章 支付的未来?发行还是不发行央行数字货币这是个问题

...he global frontier of central bank digital currency. _Global Public Policy and Governance_, _5_(1), 63–81. >- 原文链接: [billatnapier.medium.com/...](https://billatnapier.medium.com/the-future-of-payments-to-cbdc-or-not-to-cbdc-that-is-the-question-6dc7b8c6bc99) >- 登链社区 AI 助手...

文章 在 Foundry 使用 OpenZeppelin 插件进行智能合约升级

... **升级到ContractB:** * 工具使用代理上的 upgradeAndCall 方法将合约更新为 ContractB。 ### 第一步:设置环境 首先创建一个新的项目目录并初始化 Foundry。打开终端并执行以下命令: ``` mkdir rareskills-foundry-upgr...