fix: increase arweave payment

This commit is contained in:
bartosz-lipinski 2021-06-11 18:09:39 -05:00
parent ed9f85dd65
commit 66b6237951
1 changed files with 1 additions and 1 deletions

View File

@ -60,5 +60,5 @@ export async function getAssetCostToStore(files: File[]) {
conversionRates.value.arweave.usd / conversionRates.value.solana.usd;
console.log('Ar mult', arMultiplier);
// We also always make a manifest file, which, though tiny, needs payment.
return LAMPORT_MULTIPLIER * totalArCost * arMultiplier * 1.1;
return LAMPORT_MULTIPLIER * totalArCost * arMultiplier * 1.2;
}