This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // AMEX payments percent of total count payments | |
| export const AMEX_PERCENT = 0.1; | |
| // AMEX 3.5% fee | |
| const AMEX_FEE = 0.035; | |
| // USD/USD | |
| const USD_RATE = 1; | |
| // fixed stripe fee 30c | |
| const FIXED_STRIPE_FEE = 0.3; | |
| /** |