feature: add fees constants

This commit is contained in:
George Lima 2018-12-20 14:17:22 -03:00
parent 9245ab7a3a
commit bd8b3783d8
1 changed files with 8 additions and 0 deletions

8
app/constants/fees.js Normal file
View File

@ -0,0 +1,8 @@
// @flow
export default {
LOW: 1,
MEDIUM: 5,
HIGH: 9,
CUSTOM: 'custom',
};