Verification

Helpful information to aid in verifying governance proposals

Rate Feed IDs

Rate Feed identifiers are the report targets for oracles. The feature in governance proposals mainly in one of these situations:

  1. Whitelisting oracles to be able to report for a rate feed.

  2. Configuring circuit breakers in the breaker box.

*For Rate Feeds with the prefix "relayed:" in the identifier calculation, the data is relayed from Chainlink Price Feed contracts.

Exchange IDs

Exchange identifiers are deterministically computed from the assets and pricing module of the pool as follows:

exchangeId = keccak256(
  abi.encodePacked(
    IERC20Metadata(exchange.asset0).symbol(),
    IERC20Metadata(exchange.asset1).symbol(),
    exchange.pricingModule.name()
  )
);

Last updated