Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种已知的方法可以将来自 SC 查询的响应解码为 C# 中的可读对象?
如果我的合同返回具有 TypeAbi 装饰器的自定义结构,有没有办法在 C# 中读取该数据,或者除了使用 abi.json 文件之外还有其他方法来解码它吗?
您需要知道结构的结构才能解码响应。
当然,您可以对其进行硬编码而不是使用 abi 文件,但我会说从一开始就使其具有通用性会更好。
您可以查看erdjs 实现以了解值是如何编码/解码的。
或者你看一下序列化文档。