A Keeper is the term used to refer to an external person and/or team that executes a job. This can be as simplistic as calling a transaction, or as complex as requiring extensive off-chain logic. The scope of Keep3r network is not to manage these jobs themselves, but to allow contracts to register as jobs for keepers, and keepers to register themselves as available to perform jobs. It is up to the individual keeper to set up their devops and infrastructure and create their own rules based on what transactions they deem profitable.
Jobs
A Job is the term used to refer to a smart contract that wishes an external entity to perform an action. They would like the action to be performed in "good will" and not have a malicious result. For this reason they register as a job, and keepers can then execute on their contract.
Becoming a KeeperTo join as a Keeper you call bond(uint) on the Keep3r contract. You do not need to have KPR tokens to join as a Keeper, so you can join with bond(0). There is a 3 day bonding delay before you can activate as a Keeper. Once the 3 days have passed, you can call activate(). Once activated you lastJob timestamp will be set to the current block timestamp.
Registering a JobA job can be any system that requires external execution, the scope of Keep3r is not to define or restrict the action taken, but to create an incentive mechanism for all parties involved. There are two cores ways to create a Job;
Registering a Job via GovernanceIf you prefer, you can register as a job by simply submitting a proposal via Governance, to include the contract as a job. If governance approves, no further steps are required.
Some contracts require external event execution, an example for this is the harvest() function in the yearn ecosystem, or the update(address,address) function in the uniquote ecosystem. These normally require a restricted access control list, however these can be difficult for fully decentralized projects to manage, as they lack devops infrastructure.
These interfaces can be broken down into two types, no risk delta (something like update(address,address) in uniquote, which needs to be executed, but not risk to execution), and harvest() in yearn, which can be exploited by malicious actors by front-running deposits.
For no, or low risk executions, you can simply call Keep3r.isKeeper(msg.sender) which will let you know if the given actor is a keeper in the network.
For high, sensitive, or critical risk executions, you can specify a minimum bond, minimum jobs completed, and minimum Keeper age required to execute this function. Based on these 3 limits you can define your own trust ratio on these keepers.
So a function definition would look as follows;
function execute() external { require(Keep3r.isKeeper(msg.sender), "Keep3r not allowed"); }At the end of the call, you simply need to call workReceipt(address,uint) to finalize the execution for the keeper network. In the call you specify the keeper being rewarded, and the amount of KPR you would like to award them with. This is variable based on what you deem is a fair reward for the work executed.
Example Keep3rJob
interface UniOracleFactory { function update(address tokenA, address tokenB) external; } interface Keep3r { function isKeeper(address) external view returns (bool); function workReceipt(address keeper, uint amount) external; } contract Keep3rJob { UniOracleFactory constant JOB = UniOracleFactory(0x61da8b0808CEA5281A912Cd85421A6D12261D136); Keep3r constant KPR = Keep3r(0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44); function update(address tokenA, address tokenB) external { require(KPR.isKeeper(msg.sender), "Keep3rJob::update: not a valid keeper"); JOB.update(tokenA, tokenB); KPR.workReceipt(msg.sender, 1e18);Cette offre est basée sur des informations fournies uniquement par l'offrant et d'autres informations accessibles au public. L'événement de vente ou d'échange symbolique est entièrement indépendant de ICOholder et ICOholder n'y participe pas (y compris tout support technique ou promotion). Les ventes de jeton répertoriées par des personnes avec lesquelles ICOholder n'a aucun lien ne sont présentées que pour aider les clients à suivre l'activité qui se déroule dans le secteur global des jetons. Cette information n'est pas destinée à constituer un conseil sur lequel vous devriez compter. Vous devez obtenir des conseils professionnels ou spécialisés ou effectuer votre propre diligence avant de prendre, ou de vous abstenir, de toute action sur la base du contenu de notre site. Toutes les conditions et modalités conclues par les contributeurs à l'égard de l'acquisition de Tokens sont entre eux et l'émetteur du Token et ICOholder n'est pas le vendeur de ces Tokens. ICOholder n'a aucune responsabilité légale pour les déclarations faites par des tiers à l'égard de toute vente de jeton et toute réclamation pour rupture de contrat doit également être faite directement contre l'entité émettrice Token énumérés dans les présentes.
Si vous avez des questions concernant la nature, la propriété ou la légalité de cette vente symbolique ou des personnes impliquées, veuillez contacter info@icoholder.com avec des informations détaillées sur vos préoccupations.