diff --git a/composables/transaction/transactionMintDrop.ts b/composables/transaction/transactionMintDrop.ts index e025e533d8..648490478c 100644 --- a/composables/transaction/transactionMintDrop.ts +++ b/composables/transaction/transactionMintDrop.ts @@ -62,7 +62,7 @@ async function execEvmMintDrop({ executeTransaction }: EvmMintDropParams) { abi, arg, functionName, - value: drop.value.price, + value: String(Number(drop.value.price) * amountToMint.value), }) }