Skip to content

Commit

Permalink
fix(Zora): set temporary base fee for fee calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
mmackz committed Aug 8, 2024
1 parent 95c701d commit ee30914
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/zora/src/Zora.ts
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ export const getFees = async (
return { actionFee: fee.tokenPurchaseCost, projectFee: fee.mintFee }
} catch (err) {
console.error(err)
// ! temp change to base fee of 0.000111 until we update for fee calulation
return { actionFee: parseEther('0'), projectFee: parseEther('0.000111') } // https://github.com/ourzora/zora-protocol/blob/e9fb5072112b4434cc649c95729f4bd8c6d5e0d0/packages/protocol-sdk/src/apis/chain-constants.ts#L27
}
}
Expand Down

0 comments on commit ee30914

Please sign in to comment.