aboutsummaryrefslogblamecommitdiffstats
path: root/app/scripts/controllers/transactions/enums.js
blob: be6f16e0d417cc91568c86b33a3502c34e6fd48c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                              
const TRANSACTION_TYPE_CANCEL = 'cancel'
const TRANSACTION_TYPE_RETRY = 'retry'
const TRANSACTION_TYPE_STANDARD = 'standard'

const TRANSACTION_STATUS_APPROVED = 'approved'

module.exports = {
  TRANSACTION_TYPE_CANCEL,
  TRANSACTION_TYPE_RETRY,
  TRANSACTION_TYPE_STANDARD,
  TRANSACTION_STATUS_APPROVED,
}