runes_estimateMint
EstimateMintParams
Description
import { request } from "sats-connect";
const response = await request('runes_estimateMint', {
destinationAddress: ordinalsAddress,
feeRate: +feeRate,
repeats: +repeats,
runeName: runeName,
});
if (response.status === 'success') {
setTotalCost(response.result.totalCost);
setTotalSize(response.result.totalSize);
} else {
console.error(response.error);
alert('Error Fetching Estimate. See console for details.');
}EstimateMintResponse property
Description
Last updated