找到约 14 条结果

文章 椭圆曲线与离散对数问题

...tcoin》代码库的链接。 C++ 中的实现包含在《Pro Cryptography and Cryptanalysis》的第 9 章中。 2. 如果上面的资源太详尽,你可以查看我的 [存储库](https://github.com/enigbe/pbjs)。它占用的空间要小得多,并且包含与从《Programming Bitcoin》学习...

文章 Gelato 与 Connext 合作,为 L2 链带来模块化互操作性

...安全的智能合约钱包相结合。 ``` Subscribe to our newsletter and turn on your [Twitter](https://twitter.com/gelatonetwork) notifications to get the most recent updates about the Gelato ecosystem! If you are interested in being part of the Gelato team and building the future of the Intern...

文章 关于如何考虑 Token 薪酬

...takeholders](https://a16zcrypto.com/posts/article/structuring-token-rights-and-avoiding-predatory-deals), and engage distributed communities. And, over the last decade, they’ve also become a way to attract, compensate, and reward talent — from third-party developers and open source contributors ...

文章 SUI CLI最全命令详解5——Keytool之zkLogin类 @SUI Move开发必知必会

...rnblockchain.cn/article/7858) ## 2 zkLogin类 ### 2.1 `zk-login-sign-and-execute-tx `:zkLogin登录、验签、执行接口 #### (1)说明 这个命令行参数感觉没有实际意义,只是用来体验`zkLogin`的整个流程,包括: - 创建`OAuth`授权连接 - ...

文章 NFT投资中的风险管理

...、你的资产和你的声誉 - 艺术品和收藏品》](https://www.artsandcollections.com/the-legal-side-of-nft-investing-protect-yourself-your-assets-and-your-reputation/) 中强调的那样,参与与 NFT 交易相关的私人纠纷或政府行为可能会带来不必要的关注,并对一...

文章 每周以太坊进展 2023/9/23

...5pmPXFQ/SJ0nuzD1T) * [指南:将预编译添加到 Revm](https://alessandromazza.notion.site/P256VERIFY-Precompile-in-Revm-ca2f782a91214b7d99f130cba8ceaed5)(和 Reth),示例添加P256VERIFY * 由于潜在的优势,[集成 MEV-Boost 构建者](https://twitter.com/MaxResnick1/status/17...

文章 Iroh: 轻松建立可靠p2p连接的分布式系统工具包

...来越受到关注,这促使我们投入更多时间。我们团队的 Frando 一直在积极致力于稳定性,正如我们所说。 ### 5\. 你鼓励用户为他们的网络设置自己的中继,但你也非常慷慨地提供你提供的三个公共中继。除了避免速率限制之外...

文章 关于发行政策的务实终局 - 权益证明/经济学

由 [Anders Elowsson](https://x.com/weboftrees) 撰写 **感谢 [Vitalik Buterin](https://x.com/VitalikButerin), [Caspar Schwarz-Schilling](https://x.com/casparschwa) 和 [Ansgar Dietrich](https://x.com/adietrichs) 的反馈。** ## 1. 引言 本文介绍了一种关于增发策略的实用**终...

文章 Starknet开发指南:如何使用Cairo实现和测试存储合约

...simple_storage" version = "0.1.0" edition = "2023_11" # See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest.html [dependencies] starknet = "2.8.2" [dev-dependencies] snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry", tag =...

文章 Rust每日一题(11)---数据结构-链表--middle-of-the-linked-list

... let mut res = head; while count > 0 { res = res.and_then(|x|{x.next}); count -= 1; } res } } ``` 2. 继续思考如何减小遍历的次数,可以采用一个快指针一次遍历时跳过两个元素,另一个慢指针一次遍...

文章 区块链与机械时钟的演化

... _作者:Tony Little_ > > _来源: [https://hackernoon.com/blockchains-and-the-evolution-of-mechanical-time-60295326d9c2](https://hackernoon.com/blockchains-and-the-evolution-of-mechanical-time-60295326d9c2)_ ![](https://img.learnblockchain.cn/2025/07/15/for-title.png) > 机械时钟创造了...

文章 什么是区块链预言机?

...s/src/v0.8/ChainlinkClient.sol"; 5 6 /** 7 * Request testnet LINK and ETH here: https://faucets.chain.link/ 8 * Find information on LINK Token Contracts and get the latest ETH and LINK faucets here: https://docs.chain.link/docs/link-token-contracts/ 9 */ 10 11 /** 12 * THIS I...

文章 Sui Move 合约升级与权限定制

...x_context::sender(ctx), }); } public entry fun guess_between_zero_and_hundred(count: &mut Count, number: u8, clock: &Clock, ctx: &mut TxContext) { let des_number = ((clock::timestamp_ms(clock) % 11) as u8); if (number == des_number) { send_prize(count.total, number, ctx);...

文章 揭秘 Rust Unsafe 编程:程序员接管内存安全的契约与实践

... on the code block. // // NOTE: All the comments are for the readability and the maintainability of // your code, while the Rust compiler hands its trust of soundness of your // code to yourself! If you cannot prove the memory safety and soundness of // your own code, take a step back and use s...