near-protocol-rewards
Version:
A transparent, metric-based rewards system for NEAR projects
18 lines (17 loc) • 618 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GitHubValidator = exports.createValidators = void 0;
const github_1 = require("./github");
function createValidators(logger) {
return {
github: new github_1.GitHubValidator({
logger,
maxCommitsPerDay: 15,
minAuthors: 2,
minReviewPrRatio: 0.5,
}),
};
}
exports.createValidators = createValidators;
var github_2 = require("./github");
Object.defineProperty(exports, "GitHubValidator", { enumerable: true, get: function () { return github_2.GitHubValidator; } });