找到约 15 条结果

文章 加密货币质押:你需要的最少质押量是多少?

...lzlk2/what_is_the_minimum_to_do_staking/) 用于直接**质押** – Algorand (ALGO): [没有最低要求](https://www.bitstamp.net/faq/what-is-the-minimum-staking-amount/) – NEAR 协议:[25,205 NEAR](https://koinly.io/blog/best-crypto-to-stake/)(主要平台中最高) 在这本全面...

文章 以太坊协议的未来展望,第二部分:The Surge

...题](https://github.com/ethereum/research/wiki/A-note-on-data-availability-and-erasure-coding)。最终,两条路径合并,我们得到了[以Rollup为中心的路线图](https://ethereum-magicians.org/t/a-rollup-centric-ethereum-roadmap/4698),这依然是现在以太坊的扩展策略。 ![]...

文章 稳定币桥接问题:从碎片化到统一

...的 [**MiCA**](https://www.esma.europa.eu/esmas-activities/digital-finance-and-innovation/markets-crypto-assets-regulation-mica?utm_source=chatgpt.com) 和美国的 [**GENIUS Act**](https://www.congress.gov/bill/119th-congress/senate-bill/1582?utm_source=chatgpt.com) 这样的框架定义了什么...

文章 攻击对象

...n.com/linux/v6.1/source/net/ipv4/inet_fragment.c#L176) -> [rhashtable_free_and_destroy()](https://elixir.bootlin.com/linux/v6.1/source/lib/rhashtable.c#L1130) -> [bucket_table_free()](https://elixir.bootlin.com/linux/v6.1/source/lib/rhashtable.c#L109) ),因此我可以引起 dyn-kmalloc-1k 中的 ...

文章 每周以太坊 2024/10/05

...s: [增加最小 blob 基础费用的理由](https://ethresear.ch/t/understanding-minimum-blob-base-fees/20489) (EIP7762), 使 blobspace 市场对需求更具响应性 * 共识规范 [v1.5.0-alpha.7](https://github.com/ethereum/consensus-specs/releases/tag/v1.5.0-alpha.7) * [每周测试会议...

文章 闪电网络中的 “洋葱路由” 及其工作原理

...](https://voltage.cloud/blog/lightning-network-faq/what-are-blinded-paths-and-how-do-they-work/)”( [中文译本](https://learnblockchain.cn/article/18002/)),通过向发送者混淆部分支付路径来解决这个问题。不过,在这篇文章中,我们专讲 SPHINX。 ## 组装洋...

文章 BIP-0141:位于 vault · jl2012/bips 的 mediawiki 文件

...hub.com/jl2012/bips/commits?author=luke-jr) [Promote BIP 2 Draft->Active, and implement it](https://github.com/jl2012/bips/commit/959fecc15bdad070afa63455468b1dba54655fa6) 打开提交详情 2016年11月30日 [959fecc](https://github.com/jl2012/bips/commit/959fecc15bdad070afa63455468b1dba54655fa...

文章 如何使用 Gill 构建 Solana 应用

...t { devnet, createSolanaRpc, createSolanaRpcSubscriptions, sendAndConfirmTransactionFactory, } from "@solana/kit"; const rpc = createSolanaRpc(devnet("https://api.devnet.solana.com")); const rpcSubscriptions = createSolanaRpcSubscriptions( devnet("wss://api.devnet.solana.com"),...

文章 发布 Reth 1.0!

...pha](https://www.paradigm.xyz/2023/06/reth-alpha#how-did-you-test-the-node-and-identify-bugs) 和 [Beta](https://www.paradigm.xyz/2024/03/reth-beta) 版本中进行了描述。代码库经过了广泛的测试,我们使用了多个工具,如 [Kurtosis](https://paradigmxyz.github.io/reth/run/priv...

文章 [译]二层网络上的以太坊智能合约: Optimistic Rollup

...弈](https://github.com/ethereum/research/wiki/A-note-on-data-availability-and-erasure-coding#what-is-the-data-availability-problem)(数据可用性问题)情况下,在plasma中执行合约自治是不可能的。 值得庆幸的是,rollup 通过发布计算链上状态转换所需的最少...

文章 如何在Polygon zkEVM上构建和部署智能合约?

...识生态系统](https://www.zeeve.io/blog/what-are-zero-knowledge-proofs-and-why-are-they-important-for-blockchain/),实现近乎无限的可扩展性、降低 gas 费用和[互操作性](https://www.zeeve.io/blog/blockchain-interoperability-key-for-global-blockchain-adoption/)。如果你计划...

文章 迈向多维Solana费用

...命周期](https://learnblockchain.cn/article/13486#transaction-execution-and-ordering))。 这些本地、每个账户费用市场的价格控制器可能与计算单元使用的控制器不同。也许对于这些账户,直到状态明显受到争夺时,我们才收取费用,此时费...

文章 如何在Arbitrum Nova上部署智能合约

... simpleStorage = await SimpleStorage.deploy(); }); it("should set and get value correctly", async () => { // 设置一个新值 const newValue = 12345; await simpleStorage.setValue(newValue); // 读取值并期望它为 12345 const value = await simp...

文章 在Uniswap V3中使用Markout计算LP盈利能力

... END ) OVER ( ORDER BY block_time asc range between current row and interval '5 minutes' following ) as markout5m ``` 注意这与 `swapPrice` 的计算非常相似!简言之,它问的是:“对于任何给定的交换,在接下来的 5 分钟内取最后一次交换,包括这...

文章 如何使用 NFTScan NFT API 在 Sei 网络上开发 Web3 应用

...这样构建请求: ``` import requests # Define the request URL and contract address base_url = "https://api.nftscan.com/v2/assets/" contract_address = "0xa15b7162da988a788b00ac4fc0085f054b5ce7f4" url = f"{base_url}{contract_address}" # Set up the request headers, assuming an API key...