我正在尝试将结构数组的格式作为参数传递给 etherscan 上的智能合约写入函数,
这是坚实的例子:
Info[] 公开信息;
struct Info {
address userAddress;
uint256 amount;
bool active;
}
const data = [{0x0000, 10000000000, false},{0x11111, 20000000000, true}]
任何人都可以将此数据示例转换为 tuple[] 并提供它吗?提前致谢