Chainlink节点运营商设置链接费用
我已经设置了一个在 AWS 上运行的 chainlink 节点。 V 1.0.1。
我可以调用节点上的作业并返回数据,但我设置的每个作业的所有费用都是 1 LINK。我找不到更改此费用的位置。有人可以帮我找到这个费用在哪里设置吗?
I've setup a chainlink node running on AWS. V 1.0.1.
I am able to call jobs on the node and return data, but all fees for everyjob I setup are 1 LINK. I cannot find the location to change this fee. Can someone help me find where this fee is setup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要更改特定作业的费用,请将其添加到作业的 toml 文件中:
minContractPaymentLinkJuels =
要在节点上全局设置费用,请将以下行添加到节点的 .env 文件中:
< code>MINIMUM_CONTRACT_PAYMENT_LINK_JUELS =
将
替换为您想要的JUELS 的最低付款额。JUELS 相当于以太坊中的 WEI,其中 1 个链接 = 1000000000000000000 JUELS。
参考:Chainlink官方文档
To change the fee for a specific job, add this to the job's toml file:
minContractPaymentLinkJuels = <fee>
To set up fee on node globally, add the following line to the node's .env file:
MINIMUM_CONTRACT_PAYMENT_LINK_JUELS = <fee>
Replacing
<fee>
for your desired minimum payment in JUELS.JUELS are equivalent to WEI in Ethereum where 1 Link = 1000000000000000000 JUELS.
Reference: Chainlink Official Docs