fix::minter nft 参数错误

This commit is contained in:
zhl 2023-06-08 19:29:59 +08:00
parent 487a0552b5
commit e7e8c994fd

View File

@ -226,13 +226,13 @@ function mintNFT(funId, address, tokenIds, startTime, saltNonce, signature) {
tokenIds = JSON.parse(tokenIds);
promiseCb(
funId,
jc.wallet.jcStandard.mintNFT(
jc.wallet.jcStandard.mintNFT({
address,
tokenIds,
startTime,
saltNonce,
signature
)
signature,
})
);
}
// ======= end of interact with contract =======