找到约 15 条结果

文章 比特币与Layer2资产跨链技术

...2024/08/4hbWWoew66b0921f51ac1.jpg) 原文标题:《Adaptor Signatures and Its Application to Cross-Chain Atomic Swaps》 作者: mutourend & lynndell 原文链接:https://blog.bitlayer.org/Adaptor_Signatures_and_Its_Application_to_Cross-Chain_Atomic_Swaps/ # 1. 引言 随着比特币Lay...

问题 这是Kishu的源码,请教一下哪里有销毁和持币分红功能啊

...with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: ...

文章 以太坊扩容 之 分片(Sharding)

... receipt 中的每个区块。我们定义一个有状态的方法 `fetch_candidate_head`: ```python unchecked_logs = [] current_checking_score = None def fetch_candidate_head(): # Try to return a log that has the score that we are checking for, # checking in order of oldest to m...

文章 Optimism 中文周刊 #38

...者 1000 万 OP 池](https://gov.optimism.io/t/retro-funding-4-learnings-and-reflections/9271),重点关注过去对超级链的贡献,并吸引了许多新参与者,尽管它在验证开源状态和合约归属方面面临挑战。社区反应不一,赞赏改进的基于指标的投票的...

文章 Jito Bundles:使用 Rust 打包 Solana 交易

... JIT add-on](https://marketplace.quicknode.com/add-on/lil-jit-jito-bundles-and-transactions) - 基本熟悉 Solana 开发概念 - 一个 Solana 密钥对,其中包含少量 SOL(约 0.01 SOL),用于交易费用和小费 ## 了解 Jito Bundles Jito Bundles 是一项强大的功能,...

文章 Cashu:开端中总蕴藏着魔力

> _作者:Cashu Developer_ > > _来源: [https://blog.cashu.space/and-in-all-beginnings-indwells-a-magic/](https://blog.cashu.space/and-in-all-beginnings-indwells-a-magic/)_ ![3d-cashu](https://img.learnblockchain.cn/2025/07/15/3d-cashu.png) \- 宇宙中的一个 3D Cashu 坚果 - 在 90 年...

文章 PeerDAS 指标规范

...rdas-dashboard.json) - [Kurtosis Grafana 仪表板](https://github.com/ethpandaops/ethereum-package/blob/main/static_files/grafana-config/dashboards/peerdas-dashboard.json) ### 规范 该项目通过以下具体步骤执行: 1. 监控和可视化 使用 Kurtosis 和 Grafana 设置并可视化...

文章 构建Solana MCP服务器与Solana区块链交互

...`: ``` { "mcpServers": { "solana": { "command": "node", "args": [\ "/absolute/path/to/build/index.js"\ ], "env": { "SOLANA_RPC_ENDPOINT": "https://example.solana-mainnet.quiknode.pro/123456/" ...

文章 OP_RETURN 和比特币的未来

...作者:Rich Apodaca_ > > _来源: [https://bitzuma.com/posts/op-return-and-the-future-of-bitcoin/](https://bitzuma.com/posts/op-return-and-the-future-of-bitcoin/)_ > > _原文出版于 2017 年。_ 比特币网络将交易打包到名为区块链的分布式数据库中。从网络内部视角...

问题 合约不能接受BNB,请问是什么原因。

...ansferred(address indexed previousOwner, address indexed newOwner); constructor() { _setOwner(_msgSender()); } function owner() public view virtual returns (address) { return _owner; } modifier onlyOwner() { require(owner() == _msgSender(), "...

文章 什么是 “数据可得性” ?

...本信息组成,包括交易的[默克尔](https://coinmarketcap.com/alexandria/glossary/merkle-tree)根。 * **交易数据,**即,区块的主要组成部分,由实际的交易数据组成。 区块链网络中主要有两类节点: * **全节点(又称完全验证节点)**。...

文章 针对闪电通道的攻击与交易包转发提议

...:Gloria Zhao_ > > _来源: [https://blog.okcoin.com/lightning-attacks-and-package-relay-explained/](https://blog.okcoin.com/lightning-attacks-and-package-relay-explained/)_ ## 摘要 - 比特币有一种 “绝不牺牲安全性” 的设计哲学,因为比特币的核心价值正在于其...

文章 深入剖析 Go 接口底层实现:从 eface 到 iface(基于 Go 1.24 源码)

... as the version in the target binary, due to pointer width // differences and any experiments. Use cmd/compile/internal/rttype // or the functions in compiletype.go to access this type instead. // (TODO: this admonition applies to every type in this package. // Put it in some shared location?) ...

文章 比特币矿工助力 AI 革命

...ws.net/assets/6b2fd954-2017-408e-bf08-952fdd62118a/Electricity2024-Analysisandforecastto2026.pdf)的数据,单个ChatGPT查询需要2.9瓦时的电力,而Google搜索需要0.3瓦时。 美国新型能源密集型AI/HPC业务的出现正在增加对数据中心的需求。[高盛研究](https:...

文章 Libra 源码分析: 内存池mempool模块解读-1

...to the Mempool /// Performs basic validation: checks account's balance and sequence number pub(crate) fn add_txn( &mut self, txn: SignedTransaction, gas_amount: u64, db_sequence_number: u64, //已经确认的txn's sender的seq_number balance: u64,//这...