找到约 15 条结果

文章 新手指南:什么是加密收益耕作?我可以在Cardano上的哪里进行?

...s://medium.com/@wingriderscom/beginners-guide-what-is-crypto-yield-farming-and-where-can-i-do-it-on-cardano-d47e16c33d91) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 从孤岛到协同:Web3中数据管道的重要性

...数据湖的功能,它可以被视为数据管道本身。此外,Space and Time 被归类为去中心化数据库,但它提供 RestAPI 和流媒体等 API 网关服务,以及 ETL 服务。使用上图时请考虑这些限制。 **3.2.1 捕获/处理** 为了让普通用户或 dApp 能...

文章 非同质物的同质化:NFT 的金融化

.../www2.deloitte.com/content/dam/Deloitte/lu/Documents/financial-services/artandfinance/lu-art-and-finance-report-2019.pdf?fileGuid=6WCXcDwRHytHWVwQ),全球艺术品抵押贷款额在 2019 年高达 **210 至 240 亿**美元。 NFT 也可以用来提供数字艺术品、收藏品、虚拟土地...

文章 探明道路:深入 LND 的寻路机制

...容易通过发送者和接收者在支付时候的私下通信(out-of-band communication)得到满足。但第二个前提就更加复杂。 参与闪电网络的节点通过点对点的 gossip 消息来获得网络拓扑信息(也叫 “网络图谱”)。这些消息包括基本的元...

文章 指数永续合约

...s://math.stackexchange.com/questions/1015926/derivatives-pricing-w-squared-and-cubed-stock-prices/3954177#3954177)。价格为 $$ S^{p} e^{t \frac{p-1}{2}(2r+pv^2)} $$ 其中 S 是现货价格,p 是幂,t 是到期时间,r 是漂移或无风险利率,v 是年化波动率。 将其与...

文章 Let's Move 从前端到web3入门教程 (3) Navi竞赛奖励第5期

...ctionBlock } from "@mysten/sui.js/transactions"; import { depositCoin,SignAndSubmitTXB ,flashloan,withdrawCoin,repayFlashLoan } from 'navi-sdk/dist/libs/PTB'; import { PoolConfig, Pool, CoinInfo } from 'navi-sdk/dist/types'; ``` 这次试用PTB和vSui作为操作coin 接着初始化sdk cli...

文章 钻石标准介绍,EIP-2535 钻石

...的示例](https://eips.ethereum.org/EIPS/eip-2535#facets-state-variables-and-diamond-storage)。 有关钻石存储的更多信息和其他代码示例,请参见这篇博客文章:[钻石存储是如何工作的](https://dev.to/mudgen/how-diamond-storage-works-90e)。我还推荐阅读[理解...

文章 zkEVM:设计挑战与解决思路

...020/315) 中得到实现。对于零知识证明不友好型原语(即,AND 和 XOR 等位运算)来说,查找表可以省很多事。[自定义小工具](https://kobi.one/2021/05/20/plonk-custom-gates.html)可以高效实现高阶的约束。[TurboPlonk](https://docs.zkproof.org/pages/standa...

文章 介绍 Lasso 和 Jolt

...以及开发者和工程师的实现细节,请阅读 [Building on Lasso and Jolt](https://learnblockchain.cn/article/13076/)(其中还包含开放源代码实现)。研究论文可在这里找到( [Lasso](https://people.cs.georgetown.edu/jthaler/Lasso-paper.pdf), [Jolt](https://people.cs.g...

文章 关于审计技术和工具 101事

> * 原文链接: https://secureum.substack.com/p/audit-techniques-and-tools-101 > * 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) > * 译者:[翻译小组](https://learnblockchain.cn/people/412) 校对:[Tiny 熊](https://learnblockchain.cn/people/15) > * 本文...

文章 释放创新:人工智能和区块链在各个行业的五种激动人心的应用

...[gelato.cloud/blog/applic...](https://gelato.cloud/blog/applications-of-ai-and-blockchain) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 智能合约安全工具-比较

... require(now >= queue[index].unlockTimestamp); // Withdraw this and any earlier contributions. uint256 total = 0; for (uint256 i = head; i = queue[index].unlockTimestamp) -------------------- Initial State: Account: [CREATOR], balance: 0x1000000000000001, nonce:0, sto...

文章 Solidity 0.8.5 发布

...unction ovm_kall_2i(signature, x, y) { // Store touched memory in locals and restore it at the end. let tmp_a := mload(0x00) let tmp_b := mload(0x20) let tmp_c := mload(0x40) mstore(0, signature) mstore(4, x) mstore(0x24, y) ovm_callManager(0, 0x44, 0, 0) mstore(0x00, tmp_a) msto...

文章 如何在证明中使用 KZG 承诺

...是众所周知的;在同样的域上,给定两个多项式承诺$C1$ and $C2$ (但不是同一个方案,例如它们可以是 KZG 和 FRI,或者都是 KZG,但具有不同的受信任初始化方案),存在有效的方式可以证明2个多项式等价,例如对相同的$f(x)$进行...

文章 zkEVM (二) --EVM Circuit

...ck 一个block处理结束,也是一个辅助的virtual step. ### Random access data(随机数据访问) 在EVM中,解释器(interpreter)能够对数据块上下文、帐户余额、堆栈和当前范围内的内存等进行任意随机访问。访问可以是读写的,也可...