From 67abb942a09104fc529a20bef9aa1449fe5210e3 Mon Sep 17 00:00:00 2001 From: mantikoros Date: Thu, 16 Jun 2022 12:46:34 -0500 Subject: [PATCH] eliminate platform, liquidty fees --- common/fees.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/fees.ts b/common/fees.ts index 5c1e571a..0a537edc 100644 --- a/common/fees.ts +++ b/common/fees.ts @@ -1,6 +1,6 @@ -export const PLATFORM_FEE = 0.01 -export const CREATOR_FEE = 0.06 -export const LIQUIDITY_FEE = 0.06 +export const PLATFORM_FEE = 0 +export const CREATOR_FEE = 0.1 +export const LIQUIDITY_FEE = 0 export const DPM_PLATFORM_FEE = 0.01 export const DPM_CREATOR_FEE = 0.04