Henry.H
Henry.H
## polkastarter: - https://www.polkastarter.com/ ## dapp list : - https://www.dapp.com/topics/polkadot#banner ## 以太坊桥: #### moonbeam: - [Moonbeam](https://www.chainnews.com/articles/522979565565.htm) - https://moonbeam.network/ - https://github.com/PureStake/moonbeam - https://docs.moonbeam.network/ - 测试链: https://moonbeam.network/networks/moonriver/ > 目前,Balancer、SushiSwap、ChainLink、MetaMask、InjectiveProtocol、Band Protocol 等 30...
## xxxxxx: | xxxxxxxxxxxxxx | xxxxxxxxxxxxxx | xxxx | | :--------------| :----------------- | :--------- | | xxxxxxxxxxxxxx | xxxxxxxxxxxxxxxxxx | xxxxxxxxxx | | xxxxxxxxxxxxxx | xxxxxxxxxxxxxxxxxx | xxxxxxxxxx | |...
# Zig 速成: ## Zig 先导篇: - ✅ zig 很多设计, 大量参考 rust. 吸收了很多 rust 的语法, 以及工程实践. - ✅ [有了C++、D和Rust,为什么还需要Zig?](https://ziglang.org/zh/learn/why_zig_rust_d_cpp/) - ⭐⭐⭐⭐⭐ ## Zig 杀手级特性: - ✅ 极佳的 C 互操作性(目前可能是第一, 比...
## Zig 快速掌握: > zig 设计理念: - ✅ [Zig Zen](https://ziglang.org/documentation/master/#toc-Zen) > 搭建开发环境: - ✅ #376 - ✅ #375 > 语法关键词: - ✅ [Keyword Reference](https://ziglang.org/documentation/master/#toc-Keyword-Reference) > zig 构建系统: - ✅ [Zig...
## ZigMod 包管理工具用法: - ✅ https://github.com/nektro/zigmod - ✅ https://aquila.red/ > 示例项目: - ✅ https://github.com/truemedian/zfetch ```ruby dependencies: - type: git path: https://github.com/truemedian/zfetch ``` ## Zig 标准库: - ✅ https://github.com/hhstore/blog/issues/378
## Zig 单元测试: - https://ziglang.org/documentation/master/#Zig-Test
## Zig 生态: - ✅ #374
## C/C++ 替代品: > C 替代品: - zig - https://news.ycombinator.com/item?id=30919305 - https://news.ycombinator.com/item?id=28458713 - https://news.ycombinator.com/user?id=AndyKelley - nim - 并不算恰当, nim 是类 Python 的, 可选 GC. 只能说部分场景. - 关于 gc: - https://nim-lang.github.io/Nim/mm.html...
# ETH 智能合约开发: > docs: - https://learnblockchain.cn/manuals ## ETH 智能合约语言: > 主要方案: - [x] [Solidity](https://github.com/ethereum/solidity): 官方 - [x] [Vyper](https://github.com/vyperlang/vyper): [Curve.fi](www.curve.fi/)使用 - 阉割掉 Solidity 一些不安全的特性. > 工具链: - 由此分流, 整个工具链分 js...
## Solidity (ETH 官方, 类 JS): > solidity: 智能合约 - 类似 js 语法风格 - https://github.com/ethereum/solidity - https://soliditylang.org/ ```ruby npm install -g solc ``` > docs - https://docs.soliditylang.org/en/latest/ > ref: -...