@ledgerhq/types-live
Version:
13 lines • 409 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCurrencyForAccount = void 0;
function getCurrencyForAccount(account) {
switch (account.type) {
case "Account":
return account.currency;
case "TokenAccount":
return account.token;
}
}
exports.getCurrencyForAccount = getCurrencyForAccount;
//# sourceMappingURL=account.js.map
;