Skip to main content

KeeperOracles

Git Source

Inherits: Ownable2Step, EIP712, IKeeperOracles

Author: StakeWise

Defines the functionality for verifying signatures of the whitelisted off-chain oracles

State Variables

_signatureLength

uint256 internal constant _signatureLength = 65;

_maxOracles

uint256 private constant _maxOracles = 30;

isOracle

Function for verifying whether oracle is registered or not

mapping(address => bool) public override isOracle;

totalOracles

Total Oracles

uint256 public override totalOracles;

Functions

constructor

Constructor

constructor() Ownable(msg.sender) EIP712("KeeperOracles", "1");

addOracle

Function for adding oracle to the set

function addOracle(address oracle) external override onlyOwner;

Parameters

NameTypeDescription
oracleaddressThe address of the oracle to add

removeOracle

Function for removing oracle from the set

function removeOracle(address oracle) external override onlyOwner;

Parameters

NameTypeDescription
oracleaddressThe address of the oracle to remove

updateConfig

Function for updating the config IPFS hash

function updateConfig(string calldata configIpfsHash) external override onlyOwner;

Parameters

NameTypeDescription
configIpfsHashstringThe new config IPFS hash

_verifySignatures

Internal function for verifying oracles' signatures

function _verifySignatures(uint256 requiredSignatures, bytes32 message, bytes calldata signatures) internal view;

Parameters

NameTypeDescription
requiredSignaturesuint256The number of signatures required for the verification to pass
messagebytes32The message that was signed
signaturesbytesThe concatenation of the oracles' signatures