找到约 14 条结果

文章 在2025年,Superchain的有效衡量指标有哪些?

...变,[数据术语表](https://docs.optimism.io/app-developers/tools/data-and-dashboards/data-glossary?ref=blog.oplabs.co)将不断更新。 追踪正确的指标是整个 Superchain 生态系统共同面临的机遇和挑战。 👉**探索仪表板、分析内容以及与 Superchain 数据...

文章 在闪电网络上发行稳定币:好的,坏的,未知的

...源: [https://blog.breez.technology/usdt-on-lightning-the-good-the-bad-and-the-unknown-aefc3aaf6999](https://blog.breez.technology/usdt-on-lightning-the-good-the-bad-and-the-unknown-aefc3aaf6999)_ 每个人都听过这句 ~~中国谚语~~ 讹传的英国成语:“ [愿你活在有趣的时代](...

文章 ETH质押者的生存威胁:客户端多数风险

...于“ [节点和客户端](https://ethereum.org/en/developers/docs/nodes-and-clients/)”的指南中,强烈强调协议需要有多个客户端实现。 这是为了显著降低与过度依赖单个客户端相关的风险,因为单个客户端可能面临安全漏洞并可能危及整个协...

文章 Polygon生态系统综述(2023年8月)

...hnology/blog/introducing-polygon-chain-development-kit-launch-zk-l2s-on-demand-to-unlock-unified-liquidity) - [Dragon Fruit 升级即将登陆 Polygon zkEVM 主网 Beta](https://polygon.technology/blog/polygon-zkevm-dragon-fruit-upgrade-with-new-opcode-coming-to-mainnet-beta) ### 2.2 公司与...

文章 零知识证明 - FPGA vs. GPU

...specified curve: [G_1, G_2, G_3, ..., G_n] 以及随机的系数: and a randomly sampled finite field elements from specified scalar field: [s_1, s_2, s_3, ..., s_n] MSM is the calculation to get the Elliptic curve point Q: Q = \sum_{i=1}^{n}s_i*G_i 行业普遍采用Pippenger算法...

文章 使用truffle开发自己的第一个DAPP

... Artifacts are information about our contract such as its deployed address and Application Binary Interface (ABI). The ABI is a JavaScript object defining how to interact with the contract including its variables, functions and their parameters.) 3.`markAdopted`判断是否已经被买了,通...

文章 手摸手教你完成HOH Move共学Task3-Move 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 = ...

文章 处理 NFT 预售 — 链下白名单

> * 原文链接:https://betterprogramming.pub/handling-nft-presale-allow-lists-off-chain-47a3eb466e44 > * 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) > * 译者:[Meta](https://learnblockchain.cn/people/5578) > * 校对:[Tiny熊](https://learnblockchain.cn/peopl...

文章 Zealynx实习生在Sherlock审计中获得前十名的三步流程

...之手揭开 Diamond 的神秘面纱 Burve 是使用 [EIP-2535 Diamond Standard](https://learnblockchain.cn/docs/eips/EIPS/eip-2535) 实现的。这是我第一次直接接触 diamond 合约,坦率地说,最初的复杂性令人生畏。我可以看到该标准使用单个代理合约将调用...

文章 Michael.W基于Foundry精读Openzeppelin第55期——PaymentSplitter.sol

... require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); // 循环增添设置领款人与其对应股份 for (uint256 i = 0; i < payees.length; i++) { _a...

文章 Rapidsnark 的 GPU 加速

...下是 CPU 和 GPU 版本的数据: - CPU 版本测试数据 ``` init and set str for altBbn128r: 0 ms get zkey,zkeyHeader,wtns,wtnsHeader: 0 ms make prover: 64 ms get wtnsData: 0 ms Multiexp A: 1816 ms Multiexp B1: 2020 ms Multiexp B2: 2520 ms Multiexp C: 2775 ms Initializing a b c A: 59 ms Pro...

文章 使用 Chainlink CCIP 在 Hyperliquid 上搭建桥梁

...络,用于标准的 Solidity 开发。 Chainlink CCIP 允许使用 burn-and-mint 机制在链之间桥接资产。在 Hyperliquid 中,HyperCore([HIP-1](https://hyperliquid.gitbook.io/hyperliquid-docs/hyperliquid-improvement-proposals-hips/hip-1-native-token-standard))资产及其 HyperEVM ...

文章 学习如何在15分钟内创建、部署NFT智能合约并开发前端应用程序

此文章最初发布在 [https://www.buildbear.io/resources/guides-and-tutorials/NFT\_Smart\_Contract](https://www.buildbear.io/resources/guides-and-tutorials/NFT_Smart_Contract) ![](https://img.learnblockchain.cn/2025/03/29/1Tj56ZWUBeykBp3949M-2ww.jpeg) ## 第一步:开发智能合约 以下...

文章 用 Rust 在 Solana 上打造你的专属代币:从零到一的 Web3 实践

... Creating binary (application) package note: see more `Cargo.toml` keys and their definitions at ******************************************************* ``` ### 切换到项目目录 ```bash cd solana-sdk-demo/ ``` ### *列出当前目录可见文件和文件夹* ```bash ls Car...