IKeep3rRelayL2
Inherits: IKeep3rRelay
Functions
usdPerGasUnitPerVault
Get the USD per gas unit per automation vault
function usdPerGasUnitPerVault(IAutomationVault _automationVault) external view returns (uint256 _usdPerGasUnit);
Parameters
Name | Type | Description |
---|---|---|
_automationVault | IAutomationVault | The address of the automation vault |
Returns
Name | Type | Description |
---|---|---|
_usdPerGasUnit | uint256 | The USD per gas unit |
setUsdPerGasUnit
Set the USD per gas unit
function setUsdPerGasUnit(IAutomationVault _automationVault, uint256 _usdPerGasUnit) external;
Parameters
Name | Type | Description |
---|---|---|
_automationVault | IAutomationVault | The address of the automation vault |
_usdPerGasUnit | uint256 | The USD per gas unit |
Events
UsdPerGasUnitSetted
Emitted when the USD per gas unit is setted
event UsdPerGasUnitSetted(IAutomationVault _automationVault, uint256 _usdPerGasUnit);
Parameters
Name | Type | Description |
---|---|---|
_automationVault | IAutomationVault | The address of the automation vault |
_usdPerGasUnit | uint256 | The USD per gas unit |