Hello,
I am working on a project that involves minting tokens on the SCAT website using https://www.solscribe.io. I have written the following code snippet and would like to confirm if it's correctly implemented for minting tokens with specific assetUrl, name, and symbol:
const mintCtx = (await mintSingle({
provider,
mintData: {
assetUrl: {
type: "jsonUrl",
value: "COOL.com"
},
name: "COOL",
symbol: "COOL",
}
}))
await mintCtx.method.rpc()