找到约 13 条结果

文章 Web3 学习之私钥保护 ——将私钥导入加密密钥库

... cast wallet -h Wallet management utilities Usage: cast wallet Commands: new Create a new random keypair [aliases: n] new-mnemonic Generates a random BIP39 mnemonic phrase [aliases: nm] vanity Generate a vanity address [aliases: va] address ...

文章 将整个区块链下载到节点的过程

...以太坊节点](https://getblock.io/blog/what-is-an-ethereum-node-clients-and-network-infrastructure/) 包含称为客户端的特定软件,这里主要有两种类型:执行客户端和共识客户端。前者充当连接器,执行交易、执行以太坊方法以及与应用程序连接。...

文章 Rust 的独特语法解析

...为 Ok,提取值继续执行。 示例: ```rust pub fn encode_and_decode(_ctx: Context) -> Result { let init_person = Person { name: "Alice".to_string(), age: 27, }; let encoded_data = init_person.try_to_vec().unwrap(); // 编码为字节向量 let da...

文章 非同质化代币圣经:关于NFT你需要知道的一切

...e-money/),[门票市场预计在2025年达到680亿美元](https://www.grandviewresearch.com/press-release/global-online-event-ticketing-market),[域名市场继续看到稳固的增长](https://www.thedomains.com/2019/10/05/the-number-of-domain-names-sold-in-2019-has-already-surpassed-2018/)。...

文章 Rust 与 Solana 中的可见性及模块化复用

... - 可见性与隐私](https://doc.rust-lang.org/beta/reference/visibility-and-privacy.html)。 ### **内部函数** 内部函数在模块及其子模块或导入它的模块中可见: ```rust use anchor_lang::prelude::*; declare_id!("53hgft52DHUKMPHGu1kusuwxFGk2T8qngwSw2SyGRNrX"); ...

文章 Miniscript:简洁高效的比特币脚本编程方法

> _作者:Pieter Wuille & Andrew Poelstra_ > > _来源: [https://medium.com/blockstream/miniscript-bitcoin-scripting-3aeff3853620](https://medium.com/blockstream/miniscript-bitcoin-scripting-3aeff3853620)_ ![img](https://img.learnblockchain.cn/2025/07/14/54433275_image.jpg) ## 引言 ### 比...

文章 比特币 - LNURL-auth - Fiatjaf

... `action` 枚举,例如 `https://site.com?tag=login&k1=hex(32 bytes of random data)&action=login`。 稍后,一旦 `LN SERVICE` 在指定的 `LNURL-auth` 处理程序处收到调用,它应该获取 `k1`、`key` 和 DER 编码的 `sig`,并使用 `secp256k1` 验证签名。一旦签名成功...

文章 Web3新玩法:Sui区块链NFT创建与部署实战

..."...", subdir = "...", rev = "..." }`. # Revision can be a branch, a tag, and a commit hash. # MyRemotePackage = { git = "https://some.remote/host.git", subdir = "remote/path", rev = "main" } # For local dependencies use `local = path`. Path is relative to the package root # Local = { local = ...

文章 高级速率限制:使用自定义规则管理和保护你的Solana RPC端点

...dica.io/credenti...](https://blog.syndica.io/credential-rate-limits-manage-and-secure-your-solana-rpc-endpoints-using-custom-rules) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 如何部署和使用可升级的智能合约

...ction-to-smart-contracts.html?highlight=delegatecall#delegatecall-callcode-and-libraries)。 `Delegatecall` 类似于常规函数调用,不同之处在于目标地址处的代码是在调用合约的 context 中执行的。如果逻辑合约的代码更改了存储变量,这些更改将反映在...

文章 如何创建你的第一个 Gasless 应用

...成了!在此处查看演示应用 [https://gelato-gasless-dao.web.app/landing](https://gelato-gasless-dao.web.app/landing)。 ## 具有身份验证并使用 1Balance 的交易 (relayWithSponsoredCallERC2771) 现在假设我们的应用希望每个用户只有一个投票。在这种情况下,...

文章 跨域论文第二部分:存储证明、计算与膨胀

...播本文信息,可以考虑与这条推文互动:[https://x.com/0xRainandCoffee/status/1709989330280992798?s=20](https://x.com/0xRainandCoffee/status/1709989330280992798?s=20) * * * 正如我们在[跨域论文](https://maven11.mirror.xyz/e2pIdHzlaBi6m5GhsRGK0g5DyjgCVuU4lE614XmES5s)的第...

文章 当公钥和对称密钥一起工作时

.../scale/60) 代码如下: ``` package main import ( "crypto/rand" "encoding/hex" "fmt" "os" "strconv" "github.com/cloudflare/circl/hpke" ) func main() { kemID := int(hpke.KEM_P256_HKDF_SHA256) kdfID := int(hpke.KDF_HKDF_SHA256) aeadID := int(hpke.AEAD_AE...