diff --git a/dist/bundle.js b/dist/bundle.js index 8588649..7883850 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -5014,6 +5014,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); // eslint-disable-next-line import/prefer-default-export +var ALL = exports.ALL = 'all'; var SPEND = exports.SPEND = 'spend'; var RECEIVE = exports.RECEIVE = 'receive'; var PUBLISH = exports.PUBLISH = 'publish'; diff --git a/src/constants/transaction_types.js b/src/constants/transaction_types.js index 5e340ab..2652b09 100644 --- a/src/constants/transaction_types.js +++ b/src/constants/transaction_types.js @@ -1,4 +1,5 @@ // eslint-disable-next-line import/prefer-default-export +export const ALL = 'all'; export const SPEND = 'spend'; export const RECEIVE = 'receive'; export const PUBLISH = 'publish';