Debugging Write Calls
Write calls have an optional debug
function that can be used to debug the write calls parameters.
It is a callback function that returns the arugment data of the write call.
await mintclub
.network('base')
.nft(symbol)
.create({
...
debug: (data: any) => {
console.log(data);
}
});