Execution fees
Fees are necessary to incentivise executors to execute jobs. We can largely view the fee as doing three things:
Compensating the executor paying gas fee to perform the on-chain transaction.
Incentivizing the executor beyond gas fee compensation, making it profitable to execute a job. Being an executor typically requires some kind of hardware and time invested and it should be worth the trouble economically.
Funding protocol development. Part of the fee goes to the protocol treasury, funding building of tools, integrations and protocol R&D.
The total fee is calculated by the fee module of the job and can be paid in any ERC-20 token. Getting the fee right is important as the job might not get executed if it is too low and the user risks overpaying if it is set too high. Fee modules contain mechanisms assisting in this.
Note: The execution fee is always paid by the sponsor. If no sponsor was set duing creation of a job, then the creator (msg.sender
) will be set as sponsor.
Warning: Even though the fee can be paid in any ERC-20 token, it is the executors who decide if the job is worth executing. They might do that by looking at the current price of the fee token. To ensure reliable execution it is adviced to choose an established token with multiple price feeds.
Last updated