如何从 near-api-js 获取收据?
How to get receipts from near-api-js?
当用near-api-js调用更改函数时,如何获取交易回执?
我试过:
const response = await contract.changeMethod({args})
console.log(response)
但是好像没有效果
您必须在钱包上使用 functionCall
方法来获取交易收据。
const response = await wallet.account().functionCall({
contractId: 'yourContractId',
methodName: 'changeMethod',
args,
})
更多详细信息在此 。
当用near-api-js调用更改函数时,如何获取交易回执?
我试过:
const response = await contract.changeMethod({args})
console.log(response)
但是好像没有效果
您必须在钱包上使用 functionCall
方法来获取交易收据。
const response = await wallet.account().functionCall({
contractId: 'yourContractId',
methodName: 'changeMethod',
args,
})
更多详细信息在此