如何在 near Protocol 上查看已部署合约中的方法?

How can I see the my methods in deployed contract at near Protocol?

我正在尝试寻找如何在 near protocol 中查看已部署合约中的可用方法,就像在 etherscan 中看到的一样?

为了通过代码做到这一点,您可以使用 near-contract-parser 库,或者尝试手动解析部署在合约上的 .wasm 文件。

首先,我们需要使用 HTTP 请求获取合约二进制文件(.wasm 文件作为 base64)。然后库会从.wasm文件中获取抽象语法树,解析,过滤所有导出的方法名。

Here is a useful video 学习 near-contract-parser 的代码所有者如何解析合约上的二进制文件以读取其中存在的方法名称。