找到约 12 条结果

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

... demo](https://www.reddit.com/r/CryptoCurrency/comments/gonjm3/tldr_moons_and_bricks_go_brrr/),可将交易手续费降低 60 倍 * Loopring 的 zk rollup 侧链[在上线 3 个月以内执行超过 100 万笔交易](https://medium.com/loopring-protocol/one-millionth-trade-on-loopring-exchange-a-...

文章 Meme币成功案例:市场中的 triumph 与损失故事

...案例。 目录 [Toggle](https://blockapps.net/blog/stories-of-success-and-loss-in-the-meme-coin-market/#) ## 什么是模因币? 模因币是一种独特的加密货币,诞生于异想天开的互联网模因和笑话世界。与通常具有明确用例或技术创新的传统加密货币...

文章 逐行代码解读Solana的Hello world程序

...unt { /// number of greetings pub counter: u32, } // Declare and export the program's entrypoint entrypoint!(process_instruction); // Program entrypoint's implementation pub fn process_instruction( program_id: &Pubkey, // Public key of the account the hello world program was ...

文章 Rust 异步实战:从0到1,用 Tokio 打造一个高性能并发聊天室

....clone(); tokio::spawn(async move { if let Err(e) = handle_client(state_cloned, addr, stream).await { warn!("Failed to handle client {}: {}", addr, e); } }); } } async fn handle_client(state: Arc, addr: SocketAddr, stream: TcpStre...

文章 Go 语言之搭建通用 Web 项目开发脚手架

... DebugLevel. core := zapcore.NewCore(encoder, writeSyncer, l) // New constructs a new Logger from the provided zapcore.Core and Options. If // the passed zapcore.Core is nil, it falls back to using a no-op // implementation. // AddCaller configures the Logger to annotate each message w...

文章 Commons Stack的可信种子

...m.com/giveth/the-commons-stack-scaling-the-commons-to-re-prioritize-people-and-the-planet-fdc076aec4eb),以帮助这些社区成功建立价值并使这一新的合作经济范式成熟。 ![](https://img.learnblockchain.cn/2025/03/02/18518780_image.jpg) _Trusted Seed 通过帮助管理这些生...

文章 跟我学 Solidity :开发环境

...击“Activate”将其激活,并执行相同的操作以添加“Deploy and run transactions(部署并运行交易)”插件。 “ Solidity compiler(编译器)”选项卡将允许你配置编译器参数并编译智能合约,而“Deploy and run transactions(部署并运行交易...

文章 02.slither基本使用

...mary, inheritance, inheritance-graph, slithir, slithir-ssa, pausable, vars-and-auth, require, variable-order ``` https://github.com/crytic/slither/wiki/Printer-documentation 这里使用7个基本的打印模块进行演示。 - 合约摘要 contract-summary - 函数摘要 function-s...

文章 姚期智 - 姚氏百万富翁

...J =4 I =5 ``` 接下来,我们选择一个随机数 U: ``` U=randint(0,2000) ``` 并计算 C 值(这是 RSA 加密过程): ![](https://img.learnblockchain.cn/2025/04/27/0VZewm7sQDp3PzHdk.png) 现在 Alice 计算: ``` C - J + 1 ``` 她与 Bob 分享这个,然...

文章 区块链中的隐私问题与新兴解决方案

...目录 [Toggle](https://blockapps.net/blog/privacy-concerns-in-blockchain-and-emerging-solutions/#) ## 区块链数据的透明性和不变性 区块链技术的核心特征之一是其透明性。公共区块链上的所有交易对任何人都是可见的,从而实现了高度的责任性和...

文章 签名延展性攻击

...ill allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v...

文章 深入解析sui::package模块:Move语言中的包发布与升级

... - **Publisher**:用于声明包的发布者,提供`claim`、`claim_and_keep`和`burn_publisher`等函数。 - **UpgradeCap**:控制包的升级能力,提供`upgrade_package`、`version`和`upgrade_policy`等函数。 - **UpgradeTicket**:授权特定升级的许可,提供`ticket_packa...