找到约 15 条结果

文章 Rust 智能合约养成日记(6)拒绝服务攻击

...` Finish init NEAR ``` ``` Finish init NEAR Finish deploy contracts and create test accounts blocked_contract.test.near balance:0 Receipt: 9mFgkbpWDVhEDu5cw6KdfYoaCMjdkRt9VUdMkSqBXQE1 Log [ft_token.test.near]: Transfer 10000 from ft_token_owner.test.near to blocked_contract.test.ne...

文章 [资讯] Arbitrum Rollup 测试网发布

... https://medium.com/offchainlabs/arbitrum-rollup-testnet-full-featured-and-open-to-all-da3255b562ea

文章 干货:Dune Analytics 初学者完全指南

... SELECT "price" FROM prices.usd WHERE "symbol" = 'WETH' AND "minute" < now() - interval '1 hours' ORDER BY "minute" DESC LIMIT 1 ) from ethereum.transactions where "to" = '\x90B3832e2F2aDe2FE382a911805B6933C056D6ed' or "to" = '\x3545192b340F50d77403D...

文章 治理常见问题解答

...添加新问题和答案。如果你有建议,请 [与我联系](https://andrewbenjaminhall.com/)。 ## 治理目标 没有一种单一的web3治理最佳设计。这完全取决于你的项目性质和你具体的目标。设计你的治理结构意味着要面对与包容性与专业性、速...

文章 Mirror Survey - Web3 的寫作平台

...再直接貼上:這部分就要看程式轉換的精度了。 ### ENS and SubDomain 一般作者的個人 Publication 網址會是一串擁有自己地址的樣子: - [https://mirror.xyz/0xB42faBF7BCAE8bc5E368716B568a6f8Fdf3F84ec](https://mirror.xyz/0xB42faBF7BCAE8bc5E368716B568a6f8Fdf3...

文章 Solidity中发送主币的三种方式

...dress payable _to) public payable returns (bool) { // Send ether and store the result bool sent = _to.send(msg.value); if (!sent) { // If the send fails, handle the failure // For example, you might want to log the failure or retry ...

文章 加密货币质押——最大化复利质押奖励的综合指南

...um.com/blockchain-baf/how-auto-compounding-enhances-defi-staking-platforms-and-boosts-user-engagement-in-2024-9a2398467746),成功的自动复利实施需要: **技术考虑因素:** - 智能合约安全 - 奖励收集自动化 - 复利逻辑优化 - 用户界面可访问性 [平台选择...

文章 ZKsync 协议预编译实现审计

...[预编译](#precompiles) - [安全模型与信任假设](#security-model-and-trust-assumptions) - [中等严重性](#medium-severity) - [未进行显式边界检查的内存访问](#memory-access-without-explicit-bounds-checks) - [低严重性](#low-severity) - [预编译模块中代码重...

文章 托底:有什么用?

...有[很多](https://www.wsj.com/articles/why-did-cryptocurrencies-terrausd-and-luna-unravel-stablecoin-price-crash-explained-11652462779)的分析[刊登](https://www.bloomberg.com/opinion/articles/2022-05-11/terra-flops)和[播客](https://unchainedpodcast.com/why-terra-collapsed-and-whether-an-alg...

文章 深度解析:Solana DAO 与治理 - 2024年7月

...载圆圈](https://blog.syndica.io/content/files/2024/09/Deep-Dive---DAOs-and-Governance-July-2024.pdf "Download") * * * * * * **注意:以下是此帖子的文字版本,供视力障碍读者阅读。** [Syndica](https://syndica.io/?ref=blog.syndica.io) 深度剖析:Solana DAO和治理 - 2...

文章 使用Selenium和Metamask 与 Dapp 自动化交互

... 原文:https://dev.to/ltmenezes/automated-dapps-scrapping-with-selenium-and-metamask-2ae9 作者:Leonardo Teixeira Menezes > * 译文出自:[登链翻译计划](https://github.com/lbc-team/Pioneer) > * 译者:[翻译小组](https://learnblockchain.cn/people/1381) > * 校对:[Tiny 熊](...

文章 超越Optimistic Rollups:ZK Rollups和zkVMs

![](https://img.learnblockchain.cn/2025/06/09/stic_Rollups_ZK_Rollups_and_zk_V_Ms_e3b4ac5ad4.png) **本系列之前的文章:** [Gelato 的 Avalanche L1 和原生互操作性指南](https://learnblockchain.cn/article/16210?preview=true) [L1 区块链堆栈:Avalanche vs Cosmos](https://learnbl...

文章 Go 并发编程实战:从互斥锁到 Goroutine 的优雅之道

...// VisitLink tracks that the page with the given URL has // been visited, and returns the updated link count. func (v *Visited) VisitLink(url string) int { v.mu.Lokc() defer v.mu.Unlock() count := v.visited[url] count++ v.visited[url] = count return count } func main() { ...

文章 理解Solana上的主网、开发网和测试网

...文链接: [coinsbench.com/understan...](https://coinsbench.com/understanding-mainnet-devnet-and-testnet-on-solana-34d8de0999d2) >- 登链社区 AI 助手,为大家转译优秀英文文章,如有翻译不通的地方,还请包涵~

文章 以太坊重要扩容方案:Optimistic Rollup现状报告(中)

...特币提出的模型相似(并在2019年由John Adler单独再次发现[and independently rediscovered by John Adler in 2019](https://ethresear.ch/t/compact-fraud-proofs-for-utxo-chains-without-intermediate-state-serialization/5885)); 交易与比特币交易非常相似,但是包含一个额...