manifold/common/fees.ts

5 lines
125 B
TypeScript
Raw Normal View History

export const PLATFORM_FEE = 0.01; // == 1%
export const CREATOR_FEE = 0.01;
export const FEES = PLATFORM_FEE + CREATOR_FEE;