We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 708114d commit 2d5229eCopy full SHA for 2d5229e
packages/manifold/src/Manifold.ts
@@ -205,7 +205,7 @@ export const getFees = async (
205
const { value, currency } = data.publicData.mintPrice
206
const mintPrice = currency === 'ETH' ? BigInt(value) : 0n
207
const actionFee = mintPrice * quantityToMint
208
- return { actionFee: BigInt(actionFee), projectFee: projectFee }
+ return { actionFee, projectFee }
209
}
210
return { actionFee: 0n, projectFee: parseEther('0.0005') * quantityToMint }
211
} catch (err) {
0 commit comments