@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
18 lines (17 loc) • 680 B
JavaScript
;
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
const R = __importStar(require("ramda"));
exports.getTokenByAddress = (environment, address) => {
const value = address.toLowerCase();
const comparator = (token) => {
return token.address.toLowerCase() === value;
};
return R.find(comparator, environment.deployment.thirdPartyContracts.tokens);
};