找到约 13 条结果

文章 理解静默支付(一)

...:benma & Sebastian_ > > _来源: [https://blog.bitbox.swiss/en/understanding-silent-payments-part-one/](https://blog.bitbox.swiss/en/understanding-silent-payments-part-one/)_ ![silentpayments-1](https://img.learnblockchain.cn/2025/08/08/silentpayments-1.png) 我们骄傲地宣布, BitBox02 ...

文章 什么是以太坊以及它是如何运作的? - Pintu Academy

...%3C/figcaption%3E%3C/figure%3E%0A%0A%0A%0A%3Cp%3ENow%20that%20you%20understand%20how%20Ethereum%20works,%20you%20might%20still%20be%20asking%20the%20difference%20between%20Ethereum%20and%20Ether.%20Ether%20(ETH)%20is%20Ethereum%E2%80%99s%20native%20token%20used%20to%20facilitate%20transactions%20wit...

文章 可編程交易塊 | Move dApp 極速入門(貳拾叁)

...a blockchain security researcher with passion for exploring new challenges and staying up-to-date with the latest technological advancements. In addition, she is also a Solidity and Move developer with experience in building DeFi protocols and conducting vulnerability mining. > > Twitter: https\:/...

文章 LXDAO Expert WG|Telegram & TON 生态开发者入门

...、纸飞机)是跨平台的即时通信软件,官方提供手机版(Android、iOS、Windows Phone)、桌面版(Windows、macOS、Linux)和网页版等多种平 台客户端;同时开放应用程序接口(API),因此拥有许多第三方的客户端可供选择。2013 年 8 ...

文章 HOH_move共学营task3

...绑定nft 或者实现一个仅有特定转移方法的对象 #### key and store 没有合约内部转移方法也可以实现调用官方底层合约转移,外部转移走了 # my_nft ## 思路 首先要定义一个nft struct,然后每次mint_nft都使用这个nft模板,然后url参...

文章 Next.js手把手系列:03、路由篇 | 链接与导航

... 1. [https://nextjs.org/docs/app/building-your-application/routing/linking-and-navigating](https://nextjs.org/docs/app/building-your-application/routing/linking-and-navigating)

文章 ColliderScript:无需软分叉的限制条款功能

> _作者:Andrew Poelstra_ > > _来源: [https://blog.blockstream.com/colliderscript-covenant-functionality-without-a-soft-fork/](https://blog.blockstream.com/colliderscript-covenant-functionality-without-a-soft-fork/)_ ![ColliderScript](https://img.learnblockchain.cn/2025/07/15/ColliderScript....

文章 第三类共识算法AVALANCE雪崩共识:Part1

...带着这个问题,我去研究了其相关的共识协议《[Scalable and Probabilistic Leaderless BFT Consensus through Metastability](https://www.researchgate.net/publication/333971686_Scalable_and_Probabilistic_Leaderless_BFT_Consensus_through_Metastability)》。 ## 共识历史 实现...

文章 通过Chainlink预言机构建参数化保险智能合约

...in.link/how-smart-contracts-can-decrease-information-asymmetry-build-trust-and-revolutionize-the-insurance-industry/),为保险供应商和客户带来诸多好处。在本技术教程中,我们将向您展示: - 去中心化参数化保险合约的主要特点 - 为什么Chainlink预言...

文章 用 Rust 打造微型游戏:从零开始的 Flappy Dragon 开发之旅

... ctx.set(0, self.y, YELLOW, BLACK, to_cp437('@')) } fn gravity_and_move(&mut self) { if self.velocity < 2.0 { self.velocity += 0.2; } self.y += self.velocity as i32; self.x += 1; if self.y < 0 { self.y = 0; ...

文章 一种非格 PQC 签名方法:SLH-DSA (SPHINCS+) 和 OpenSSL 3.5

..., M. J., Rijneveld, J., Schwabe, P., & Stoffelen, K. (2019). pqm4: Testing and Benchmarking NIST PQC on ARM Cortex-M4. \[2\] Bernstein, D. J., Hülsing, A., Kölbl, S., Niederhagen, R., Rijneveld, J., & Schwabe, P. (2019, November). The SPHINCS+ signature framework. In Proceedings of the 2019 ACM S...

文章 以太坊共识层 第0阶段 -- 网络

...) - [`beacon_block`](#beacon_block) - [`beacon_aggregate_and_proof`](#beacon_aggregate_and_proof) - [`voluntary_exit`](#voluntary_exit) - [`proposer_slashing`](#proposer_slashing) - [`attester_slashing`](#attester_slashing) - [签名子网](#签名...

文章 解读Solidity中的用户定义运算符

...(UFixed.unwrap(a) + UFixed.unwrap(b)); } /// Multiplies UFixed and uint256. Reverts on overflow, /// relying on checked arithmetic on uint256. function mul(UFixed a, uint256 b) internal pure returns (UFixed) { return UFixed.wrap(UFixed.unwrap(a) * b); } ///...