Skip to content

Commit

Permalink
fix FEE_RATE_MAX
Browse files Browse the repository at this point in the history
  • Loading branch information
JayJay1024 committed Oct 24, 2023
1 parent 12d11d7 commit bdccd09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apps/src/config/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
export const FEE_RATE_BASE = 1000;

export const FEE_RATE_MIN = 0;
export const FEE_RATE_MAX = 25 * FEE_RATE_BASE; // 0.25%
export const FEE_RATE_MAX = 0.25 * FEE_RATE_BASE; // 0.25%

0 comments on commit bdccd09

Please sign in to comment.