如何使用Ethers.js调用Solidity ()函数?https://docs.soliditylang.org/en/v0.8.0/contracts.html#fallback-function
发布于 2021-04-22 07:27:09
您可以发送一个空事务。
let tx = {
to: contractAddress
};
await signer.sendTransaction(tx);https://stackoverflow.com/questions/67205309
复制相似问题