8 个版本

0.1.7 2023 年 10 月 23 日
0.1.6 2023 年 10 月 16 日

#2 in #ru-snap


用于 rusnap

MIT 许可证

15KB
278

RuSnap

使用 Rust 构建 Metamask Snap。

功能

  • Snap 基本功能。
    • 管理密钥
    • 对话框和通知
    • 随机
    • 存储数据
    • 网络访问(进行中)
    • Ethereum 提供者
  • RPC 处理
  • 密钥环 API(待办事项)

示例

https://github.com/tiannian/rusnap-example

安装和使用

安装 cargo-rusnap

cargo install rusnap

依赖项

请安装以下依赖项。

  • wasm-pack
  • npm (yarn 或 pnpm)

创建 Snap

cargo rusnap new <pkg-name>

构建 Snap

# Build dev mode in default
cargo rusnap build

# Build release mode
cargo rusnap build --release

启动 Snap

cargo rusnap start

Snap

在 Metamask 中安装 Snap

然后您可以在 Metamask 中加载 snap。

在浏览器开发者工具中执行以下 js 语句

window.ethereum.request({
  method: "wallet_requestSnaps",
  params: { "local:https://127.0.0.1:8080": {} },
});

或使用 Metamask Snap 调试工具。

调用 Snap

在浏览器开发者工具中执行以下 js 语句

window.ethereum.request({
  method: "wallet_invokeSnap",
  params: {
    snapId: "local:https://127.0.0.1:8080",
    request: {
      method: "hello",
    },
  },
});

发布 Snap

待办事项

参考

基本功能

Snap 的基本功能:docs.rs

随机

rand_core 中使用 OsRng 或其他基于 getrandom 的随机 crate。

请使用 getrandom 添加 js 功能。

getrandom = { version = "0.2.10", features = ["js"] }

Web3 SDK

使用 rusnap-ethersethers

注意: rusnap-ethersrusnap crate 中不重新导出,请独立添加此 crate。

依赖项

~1.1–2MB
~41K SLoC