找到约 14 条结果

文章 Botanix区块链、Botanix生态系统与项目未来

...作的两家主要企业包括 [Yala Labs](https://medium.com/yalabtc/yala-and-botanix-labs-revolutionize-bitcoin-defi-through-strategic-innovation-aeac437e35ba) 和 [Palladium Labs](https://botanixlabs.xyz/en/blog/palladium-labs-partnership-spiderchain-stablecoin),它们都是去中心化稳定...

文章 基准测试

...签名](#serde-function-signature) - [Rlp 编码和解码](#rlp-encoding-and-decoding) - [U256 运算](#u256-operations) ### 基准测试结果 #### ABI 编码 | | `Ethers` | `Alloy` | | :------------ | :----------------------- | :------...

文章 《Effective Rust》第 4 条:优先使用惯用的错误类型

...sn't use only types from inside the current crate | = note: define and implement a trait or new type instead ``` [类型别名]也无济于事,因为它并没有创建一个新的类型,所以也不会改变错误信息: ```rust pub type MyError = String; impl std::error::Er...

文章 通过 CCIP 构建跨链应用(5 个案例)

...Limit: 200_000, strict: false}) // Additional arguments, setting gas limit and non-strict sequency mode ), feeToken: address(linkToken) // Setting feeToken to LinkToken address, indicating LINK will be used for fees }); // Initialize a router client instance to interact with cross-chain router ...

文章 了解DAO世界的去中心化贡献模型

...门的方法是通过[DAO](https://medium.com/layer3xyz/aoswhat-is-a-dao-and-how-can-i-join-one-c8914bc36bf2),一个广泛的在web3内运作的去中心化组织。 让我们首先探讨一下DAO是如何运作的,以及不同类型的DAO可以帮助你启动贡献之旅。我们还将深入...

文章 Uniswap V3 工厂以及 Tick 间距与手续费之间的关系

...数的所有参数都存储在公共不可变变量中: ![code for fee and tick spacing](https://img.learnblockchain.cn/2025/04/26/codeFeeTickSpacing.png) ## 例子 让我们以 [USDC/ETH 池](https://etherscan.io/address/0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640#readContract) 为例。我们...

文章 每周以太坊 2024/03/23

...s://calldata.pics/):calldata 和 blob 使用情况的实时图表 - ethPandaOps: - [Attacknet](https://learnblockchain.cn/article/17242/):使用 Kurtosis 和 Chaos Mesh, 向开发网络注入主网故障(如网络延迟、丢包、分叉等),来帮助测试。 - [Dencun 升级...

文章 Taproot 及 MuSig2 回顾

...上面说的 [BIP340 公钥](https://www.btcstudy.org/2023/04/27/taproot-and-musig2-recap-by-elle-mouton/#BIP340-%E5%85%AC%E9%92%A5%E7%AE%80%E8%BF%B0))。我们通常使用 `Q` 来代指这个公钥。下面这张图片完整地展示了一笔交易中的一个 Taproot 输出: ![img](https://im...

文章 深入 Uniswap V4 源码 - PoolId Library

..., capped at 1_000_000. If the highest bit is 1, the pool has a dynamic fee and must be exactly equal to 0x800000 uint24 fee; /// @notice Ticks that involve positions must be a multiple of tick spacing int24 tickSpacing; /// @notice The hooks of the pool IHooks hooks; } ```...

文章 Flow (FLOW) 是什么?- Pintu Academy Flow (FLOW) 是什么?

...:[Blockcrunch](https://blockcrunch.co/2022/03/28/what-is-flow-blockchain-and-how-does-it-work/) **当交易发生时,每个节点只执行一个验证阶段,以便他们专注于各自的任务。这可以提高交易验证每个阶段的效率。该系统还允许 Flow 以更低的成本扩...

文章 Taproot 如何提高比特币隐私性

...over.com/explaining-the-lightning-network-so-even-a-10-year-old-can-understand-it)《10 岁小孩都能读懂的闪电网络科普》。 但是,Taproot 是底层升级,真的能影响闪电网络吗? 如果没有这个 Schnorr 签名友好型升级,通道的开启和关闭交易会在比...

文章 为什么NFT创作者开始采用CC0许可

... [恐怖电影](https://variety.com/2022/film/news/winnie-the-pooh-blood-and-honey-director-1235278405/):“维尼熊:鲜血和蜂蜜”……其中维尼熊和小猪是反派角色。 与许多经典的知识产权(IP)策略相反,实验和重组有时会增加IP的价值。这是开源...

文章 Foundry教程:使用多种方式编写可升级的智能合约(上)

...etValueFail(); contract VoteFirst { address eternalStorage; constructor(address _eternalStorage) { eternalStorage = _eternalStorage; } function getNumberOfVotes() public returns (uint256) { (bool success, bytes memory data) = eternalStorage.call( ...

文章 Solidity ABI(应用程序二进制接口)是什么?

...ps://www.alchemy.com/overviews/what-is-an-abi-of-a-smart-contract-examples-and-usage),通过介绍智能合约编译的必要性 - ABI 如何作为 Solidity 编译器工作 - 什么是字节码及其在编译过程中的功能 - 什么是 Solidity ABI,它与 API 的不同之处。 - ...