chore: remove ekata feature

This commit is contained in:
Rafael Taranto 2025-05-12 09:24:35 +01:00
parent 8b3f93d8f0
commit c593b60a4e
12 changed files with 8 additions and 184 deletions

View file

@ -37,13 +37,6 @@ function sendMessage (settings, rec) {
})
}
function getLookup (settings, number) {
return Promise.resolve()
.then(() => {
const { plugin, account } = getPlugin(settings)
return plugin.getLookup(account, number)
})
}
const toCryptoUnits = (cryptoAtoms, cryptoCode) => {
const unitScale = coinUtils.getCryptoCurrency(cryptoCode).unitScale
return cryptoAtoms.shiftedBy(-unitScale)
@ -117,7 +110,6 @@ function formatSmsReceipt (data, options) {
module.exports = {
getSms,
sendMessage,
getLookup,
formatSmsReceipt,
toCryptoUnits
}