#starknet #web3 #cairo

starknet-selector-decoder

从哈希到字符串查找Starknet选择器

5个版本

0.1.4 2024年6月2日
0.1.3 2024年6月2日
0.1.2 2024年2月29日
0.1.1 2024年2月29日
0.1.0 2024年2月29日

#38 in #starknet

31 每月下载量

MIT/Apache

190KB
75 代码行

Starknet选择器解码器

描述

一个简单的工具,用于获取Starknet选择器哈希的字符串值。从可读字符串到哈希很容易,只需计算哈希即可,但如果您只有哈希而想得到字符串,则需要查找。

该映射包括在Starknet主网上声明的所有选择器,并会更新。

示例

use starknet_selector_decoder::get_selector;

let result =
   get_selector("0x0083afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e");
match result {
   Some(selector) => assert_eq!(selector, "transfer"),
   None => assert!(false),
}

许可证

许可协议为以下之一

任选其一。

依赖关系

~0.1–1.4MB
~18K SLoC