Reporting data is the same on any network, it requires a staked reporter to run the submitValue function:
/** * @dev Allows a reporter to submit a value to the oracle * @param_queryId is ID of the specific data feed. Equals keccak256(_queryData) for non-legacy IDs * @param_value is the value the user submits to the oracle * @param_nonce is the current value count for the query id * @param_queryData is the data used to fulfill the data query */functionsubmitValue(bytes32_queryId,bytescalldata_value,uint256_nonce,bytesmemory_queryData)external{
Notes:
Once a value is submitted, the reporter is then locked from submitting again for the reporterLock time period (currently 12 hours on most networks).
For all queryId's except legacy ID's (ETH only), the queryId must be the keccak256 hash of the queryData. For information on how to get the queryId or how to parse the queryData, see the Creating a Query section.
_nonce also must be correct for a valid report. The nonce represents the number of submissions for a given query. The purpose of the nonce is to prevent two parties from submitting at the same time for the same ID.