找到约 15 条结果

文章 利用EIP-7702和不可撤销签名解锁链抽象EOA

...(https://blog.rhinestone.wtf/unlocking-chain-abstracted-eoas-with-eip-7702-and-irrevocable-signatures-adc820a150ef) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 SUI Move官方示例合约实践——NFT类:数字(num)

... UID, /// Number of NFT's in circulation. Fluctuates with minting and burning. /// A maximum of `MAX_SUPPLY` NFT's can exist at a given time. supply: u64, /// Total number of NFT's that have been issued. Always 切换到Jason账号 ```bash sui client publish ...

文章 Curve流动性提供者的无常损失和年化收益率

...dium.com/defireturns/i...](https://medium.com/defireturns/impermanent-loss-and-apy-for-curves-lps-f75aa2e8c9d6) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 各智能合约编程语言的权衡

...io%2Fdocs%2Fhow_cairo_works%2Fhints.html) * ctrlc03.github.io. [Cairo and StarkNet Security](https://medium.com/r?url=https%3A%2F%2Fctrlc03.github.io%2F%23cairo-and-security) * Peteris Erins. [可证明与可组合计算或为什么Cairo将取代Solidity](https://medium.com/yagi-fi/provable...

文章 什么是三明治攻击以及如何保护自己?- CoW DAO

...98678005777973249&lang=en&origin=https%3A%2F%2Fcow.fi%2Flearn%2Fwhat-is-a-sandwich-attack-and-how-can-you-protect-yourself&sessionId=e3f01f8a353958c0423c595c1c84a3be4939de60&theme=light&widgetsVersion=2615f7e52b7e0%3A1702314776716&width=550px) > 如果你不知道什么是[#MEV](https://twitter.com...

文章 每周以太坊进展,2020/07/05

...medium.com/@MicahZoltu/a-world-without-block-limits-f3ecc926cd68) * Igor Mandrigin 解释 [ReGenesis](https://medium.com/@mandrigin/regenesis-explained-97540f457807) 提案 * [提议一种二进制树的格式](https://ethresear.ch/t/binary-trie-format/7621) —— 不再使用 RLP? ## Eth2 ...

文章 学习如何使用ChatGPT编写智能合约

...,详细指南请见 [这里](https://www.buildbear.io/resources/guides-and-tutorials/remix_plugin)。 要激活 BuildBear 插件,请打开 Remix 插件管理器,搜索“BuildBear”,然后点击“激活”。 ![](https://img.learnblockchain.cn/2025/03/29/0fY3xgGZoj8rwyJOY.png) 首先选...

文章 通过代币化改造农业企业及农产品支持债券日益增长的吸引力

...https://medium.com/bru-finance/transforming-agribusiness-with-tokenization-and-the-rising-appeal-of-agri-commodities-backed-bonds-c76869acff2a) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 区块链开发工具与资源:初学者指南

目录 [切换](https://blockapps.net/blog/blockchain-development-tools-and-resources-for-beginners/#) ## 区块链开发入门 区块链技术已经成为一项具有突破性的创新,它有潜力彻底改变各个行业,从金融和医疗保健到供应链管理等等。随着区块链应...

文章 web3服务端身份验证

... export default async function(req, res) { req.session.nonce = crypto.randomInt(111111, 999999) res.end(`Hey! Sign this message to prove you have access to this wallet. This won't cost you anything.\n\nSecurity code (you can ignore this): ${req.session.nonce}`) } ``` 然后,不是硬...

文章 Vitalik 讨论帖: 更大的L1 gaslimit 和新技术背景下的去中心化目标

...t/formalizing-decentralization-goals-in-the-context-of-larger-l1-gaslimits-and-2020s-era-tech/23942/47) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 dYdX (DYDX):dYdX 加密货币 Cosmos 去中心化交易所

...n(支持 dYdX v4)还有自己的内部 iPhone iOS 移动应用程序,Android 支持将在适当的时候推出。 ![iOS 上的 dYdX 应用程序允许 iPhone 用户随时随地进行交易和投资,这代表着一项极其重要的服务,有助于 dYdX 平台在未来实现持续采用。...

文章 vneus daemon代码解析

...把各种api服务添加到`node`对象,后面调用`(node *Node) RunRPCAndWait()`方法启动对外服务。服务接口有rest api和rpc两种形式。每个服务都是一个submodule,定义在`app/submodule`目录下,`***_submodule.go`定义类,`***_api.go`类实现接口逻辑。 另...

文章 区块链中的数学-Uniwap自动化做市商核心算法解析

...家张首晟的名言: **”the final truth must be simple, beautiful and universal“** 后面的分析文章中,我们依然能够感受到这种简洁的魅力。 下一节继续分析[uniswap中交易以及添加移除流动性对价格产生的影响](https://learnblockchain.cn/artic...

文章 剖析DeFi交易产品之UniswapV4:Swap

...; // continue swapping as long as we haven't used the entire input/output and haven't reached the price limit while (state.amountSpecifiedRemaining != 0 && state.sqrtPriceX96 != params.sqrtPriceLimitX96) { ... } ``` `while` 条件里除了判断 `amountSpecifiedRemaining` 不为 0 之外,...