HI multichain team!
i want to ask something about the asset issuance as when someone create asset then user will put the price of asset with respect to asset unit,but when a creator will send this asset to anyone then how we can update the value of price for asset on multichain.Is there any way?
var getDetail = async(name) => {
return new Promise(async(resolve) => {
await multichain.listAssets({ asset: name }, (err, res) => {
if (res) {
console.log(res)
resolve({ success: true, result: { name: res[0].name, issuetxid: res[0].issuetxid, detail: res[0].details } });
} else {
console.log(err)
resolve({ success: false, message: err })
}
})
})
}
at now am gettting detail of asset from this function