feat: reject address reuse
This commit is contained in:
parent
f2080c32e9
commit
f6547341f1
5 changed files with 69 additions and 27 deletions
|
|
@ -10,7 +10,8 @@ const namespaces = {
|
|||
RECEIPT: 'receipt',
|
||||
COIN_ATM_RADAR: 'coinAtmRadar',
|
||||
TERMS_CONDITIONS: 'termsConditions',
|
||||
CASH_OUT: 'cashOut'
|
||||
CASH_OUT: 'cashOut',
|
||||
COMPLIANCE: 'compliance'
|
||||
}
|
||||
|
||||
const stripl = _.curry((q, str) => _.startsWith(q, str) ? str.slice(q.length) : str)
|
||||
|
|
@ -48,6 +49,7 @@ const getOperatorInfo = fromNamespace(namespaces.OPERATOR_INFO)
|
|||
const getCoinAtmRadar = fromNamespace(namespaces.COIN_ATM_RADAR)
|
||||
const getTermsConditions = fromNamespace(namespaces.TERMS_CONDITIONS)
|
||||
const getReceipt = fromNamespace(namespaces.RECEIPT)
|
||||
const getCompliance = fromNamespace(namespaces.COMPLIANCE)
|
||||
|
||||
const getAllCryptoCurrencies = (config) => {
|
||||
const locale = fromNamespace(namespaces.LOCALE)(config)
|
||||
|
|
@ -85,6 +87,7 @@ module.exports = {
|
|||
getGlobalLocale,
|
||||
getCommissions,
|
||||
getReceipt,
|
||||
getCompliance,
|
||||
getCoinAtmRadar,
|
||||
getTermsConditions,
|
||||
getAllCryptoCurrencies,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue