在Chainlink Keeper Upkeep中添加LINK。
Chainlink Keeper Upkeep是一种监测链上状态并在需要时执行操作的系统。要在其中添加LINK,需要执行以下步骤:
打开Chainlink Keeper Upkeep的页面,并找到“Add Upkeep”按钮。
点击“Add Upkeep”并填写相应的信息,以包含LINK。例如:
{ "name": "My Upkeep", "body": { "endpoint": "https://my-api.com/endpoint", "ethBalance": 1, "linkBalance": 1 }, "perform": { "endpoint": "https://my-api.com/endpoint", "functionSelector": "0x6340e283", "data": { "arg1": "value1", "arg2": "value2" } } }
在这个例子中,ethBalance和linkBalance都设置为1,因此Chainlink Keeper Upkeep将保持至少1个ETH和1个LINK的余额。同时,perform部分的data字段中包含arg1和arg2参数的值。