找到约 12 条结果

文章 实现一套 DID 之总体设计 | Move dApp 极速入门(五)

... vehicle, university degrees can be used to assert our level of education, and government-issued passports enable us to travel between countries. This specification provides a mechanism to express these sorts of credentials on the Web in a way that is cryptographically secure, privacy respecting, an...

文章 使用 Rust 开发一个微型游戏

... ctx.set(0, self.y, YELLOW, BLACK, to_cp437('@')) } fn gravity_and_move(&mut self) { if self.velocity < 2.0 { self.velocity += 0.2; } self.y += self.velocity as i32; self.x += 1; if self.y < 0 { self.y = 0; ...

文章 分片常见问题解答

...ike-theres-some-kind-of-scalability-trilemma-at-play-what-is-this-trilemma-and-can-we-break-through-it) * [哪些适度简单但仅部分解决可扩展性问题的方法存在?](#what-are-some-moderately-simple-but-only-partial-ways-of-solving-the-scalability-problem) * [那些不试图“...

文章 Solana 创建cNFT

...developers/courses/state-compression/compressed-nfts#spl-state-compression-and-noop-programs)[](https://solana.com/zh/developers/courses/state-compression/compressed-nfts#spl-state-compression-and-noop-programs) SPL 状态压缩程序的存在是为了使上述过程在整个 Solana 生态系统...

文章 每周以太坊进展 2023/5/13

... * Coherent[主网数据集](https://coherent.xyz/blog/introducing-free-and-open-source-95-decoded-ethereum-datashares-and-sql-api-by-coherent):CC0,95% 的解码日志/交易/跟踪,通过 Snowflake 或 API 使用 * [PGP 链上密钥服务器](https://ethereum-magicians.org/t/pretty-good...

文章 用 Gill 库解锁 Web3:Solana 代币转账实战

...r solana-raw-tx && cd solana-raw-tx /Users/qiaopengjun/Code/Solana/SolanaSandbox/solana-raw-tx ``` ### 初始化项目 pnpm init 是一个命令,用于在当前目录下初始化一个新的 pnpm 项目。它会创建一个 package.json 文件,这个文件是 Node.js 项目的主要配...

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

...* IPFS 的 [GossipSub v1.1](https://blog.ipfs.io/gossipsubv1.1-eval-report-and-security-audit/) 完整评估(GnossipSub 也将用于 Eth2) ## Layer-2 * [对 zk rollups 工作原理的精炼解释](https://ethresear.ch/t/validating-transactions-with-zk-methods/7654/3) ## 开发者材料 ...

文章 使用 Concrete ML 构建端到端加密的类 23andMe 基因测试应用程序

...一个挑战是使用全同态加密 (FHE) 创建一个加密版本的 23andMe(或其他 DNA 测试平台)。Github 用户 [Alephzerox](https://github.com/Alephzerox) 和 Github 用户 [Soptq](https://github.com/Soptq) 成功完成了这个赏金,这篇博客文章是基于他们的贡献。...

文章 如何利用 RGB 在闪电网络上转移另类资产

... to Bitcoin UTXOs, enabling stablecoins transfers on the Lightning Network and more.](https://res.btcstudy.org/btcstudy/images/how-rgb-enables-altcoins-on-bitcoin/ransfer.png) \- 示例:RGB 资产是如何发行且在不同的 UTXO 控制者之间转移的。文中使用的所有示意图均由...

文章 Injective正在开发的有趣的人工智能相关项目

...oming-to-injectives-iagent/) - [https://blog.injective.com/en/io-net-expands-decentralized-compute-platform-to-power-the-future-of-defai-on-injective/](https://blog.injective.com/en/io-net-expands-decentralized-compute-platform-to-power-the-future-of-defai-on-injective/) - [https://blog.inject...

文章 filecoin技术架构分析六:filecoin源码协议层分析之hello握手协议

...pset函数类型定义 ``` type getTipSetFunc func() types.TipSet ``` - Handler结构体,当连接到其他节点的时候,其一,会发送包含本节点信息的hello 消息给对端节点; 其二, 对端也会回复一个包含对端节点信息的消息体过来。 - host 对应libp2p上...

文章 以太坊安全分析工具Mythril简介与使用

...reum/ethereum sudo apt install solc # Install libssl-dev, python3-dev, and python3-pip sudo apt install libssl-dev python3-dev python3-pip # Install mythril pip3 install mythril myth --version ``` ## 3、docker安装 ``` # Pull the latest release of mythril/myth docker pull mythril/my...