Hi,
I’m trying to call the mint function of an nft smart contract using the node sdk but i get this error
Unable to serialize parameters, due to: Too many fields provided
const paramJson = {
owner: account,
token_id: '1',
metadata_url: 'https://gateway.pinata.cloud/ipfs/QmZ3939dLLFzvYZjFnkdqACe2n9TQA8Rx4efbjaYTXteeu',
amount: 1
}
const updateParams = serializeUpdateContractParameters(
contractName,
'mint',
paramJson,
schema,
);