| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- // contracts/Bridge.sol
- // SPDX-License-Identifier: Apache 2
- pragma solidity ^0.8.0;
- import "../libraries/external/BytesLib.sol";
- import "@pythnetwork/pyth-sdk-solidity/AbstractPyth.sol";
- import "@pythnetwork/pyth-sdk-solidity/PythStructs.sol";
- import "./PythGetters.sol";
- import "./PythSetters.sol";
- import "./PythInternalStructs.sol";
- contract Pyth is PythGetters, PythSetters, AbstractPyth {
- using BytesLib for bytes;
- function initialize(
- address wormhole,
- uint16 pyth2WormholeChainId,
- bytes32 pyth2WormholeEmitter
- ) virtual public {
- setWormhole(wormhole);
- setPyth2WormholeChainId(pyth2WormholeChainId);
- setPyth2WormholeEmitter(pyth2WormholeEmitter);
- }
- function updatePriceBatchFromVm(bytes memory encodedVm) public returns (PythInternalStructs.BatchPriceAttestation memory bpa) {
- (IWormhole.VM memory vm, bool valid, string memory reason) = wormhole().parseAndVerifyVM(encodedVm);
- require(valid, reason);
- require(verifyPythVM(vm), "invalid emitter");
- PythInternalStructs.BatchPriceAttestation memory batch = parseBatchPriceAttestation(vm.payload);
- for (uint i = 0; i < batch.attestations.length; i++) {
- PythInternalStructs.PriceAttestation memory attestation = batch.attestations[i];
- PythInternalStructs.PriceInfo memory latestPrice = latestPriceInfo(attestation.priceId);
- if(attestation.timestamp > latestPrice.attestationTime) {
- setLatestPriceInfo(attestation.priceId, newPriceInfo(attestation));
- }
- }
- return batch;
- }
- function newPriceInfo(PythInternalStructs.PriceAttestation memory pa) private view returns (PythInternalStructs.PriceInfo memory info) {
- info.attestationTime = pa.timestamp;
- info.arrivalTime = block.timestamp;
- info.arrivalBlock = block.number;
-
- info.priceFeed.id = pa.priceId;
- info.priceFeed.price = pa.price;
- info.priceFeed.conf = pa.confidenceInterval;
- info.priceFeed.status = PythStructs.PriceStatus(pa.status);
- info.priceFeed.expo = pa.exponent;
- info.priceFeed.emaPrice = pa.emaPrice.value;
- info.priceFeed.emaConf = uint64(pa.emaConf.value);
- info.priceFeed.productId = pa.productId;
- // These aren't sent in the wire format yet
- info.priceFeed.numPublishers = 0;
- info.priceFeed.maxNumPublishers = 0;
- return info;
- }
- function verifyPythVM(IWormhole.VM memory vm) private view returns (bool valid) {
- if (vm.emitterChainId != pyth2WormholeChainId()) {
- return false;
- }
- if (vm.emitterAddress != pyth2WormholeEmitter()) {
- return false;
- }
- return true;
- }
-
- function parseBatchPriceAttestation(bytes memory encoded) public pure returns (PythInternalStructs.BatchPriceAttestation memory bpa) {
- uint index = 0;
- // Check header
- bpa.header.magic = encoded.toUint32(index);
- index += 4;
- require(bpa.header.magic == 0x50325748, "invalid magic value");
- bpa.header.version = encoded.toUint16(index);
- index += 2;
- require(bpa.header.version == 2, "invalid version");
- bpa.header.payloadId = encoded.toUint8(index);
- index += 1;
- // Payload ID of 2 required for batch header
- require(bpa.header.payloadId == 2, "invalid payload ID");
- // Parse the number of attestations
- bpa.nAttestations = encoded.toUint16(index);
- index += 2;
- // Parse the attestation size
- bpa.attestationSize = encoded.toUint16(index);
- index += 2;
- require(encoded.length == (index + (bpa.attestationSize * bpa.nAttestations)), "invalid BatchPriceAttestation size");
- bpa.attestations = new PythInternalStructs.PriceAttestation[](bpa.nAttestations);
- // Deserialize each attestation
- for (uint j=0; j < bpa.nAttestations; j++) {
- // NOTE: We don't advance the global index immediately.
- // attestationIndex is an attestation-local offset used
- // for readability and easier debugging.
- uint attestationIndex = 0;
- // Header
- bpa.attestations[j].header.magic = encoded.toUint32(index + attestationIndex);
- attestationIndex += 4;
- require(bpa.attestations[j].header.magic == 0x50325748, "invalid magic value");
- bpa.attestations[j].header.version = encoded.toUint16(index + attestationIndex);
- attestationIndex += 2;
- require(bpa.attestations[j].header.version == 2, "invalid version");
- bpa.attestations[j].header.payloadId = encoded.toUint8(index + attestationIndex);
- attestationIndex += 1;
- // Payload ID of 1 required for individual attestation
- require(bpa.attestations[j].header.payloadId == 1, "invalid payload ID");
- // Attestation
- bpa.attestations[j].productId = encoded.toBytes32(index + attestationIndex);
- attestationIndex += 32;
- bpa.attestations[j].priceId = encoded.toBytes32(index + attestationIndex);
- attestationIndex += 32;
- bpa.attestations[j].priceType = encoded.toUint8(index + attestationIndex);
- attestationIndex += 1;
- bpa.attestations[j].price = int64(encoded.toUint64(index + attestationIndex));
- attestationIndex += 8;
- bpa.attestations[j].exponent = int32(encoded.toUint32(index + attestationIndex));
- attestationIndex += 4;
- bpa.attestations[j].emaPrice.value = int64(encoded.toUint64(index + attestationIndex));
- attestationIndex += 8;
- bpa.attestations[j].emaPrice.numerator = int64(encoded.toUint64(index + attestationIndex));
- attestationIndex += 8;
- bpa.attestations[j].emaPrice.denominator = int64(encoded.toUint64(index + attestationIndex));
- attestationIndex += 8;
- bpa.attestations[j].emaConf.value = int64(encoded.toUint64(index + attestationIndex));
- attestationIndex += 8;
- bpa.attestations[j].emaConf.numerator = int64(encoded.toUint64(index + attestationIndex));
- attestationIndex += 8;
- bpa.attestations[j].emaConf.denominator = int64(encoded.toUint64(index + attestationIndex));
- attestationIndex += 8;
- bpa.attestations[j].confidenceInterval = encoded.toUint64(index + attestationIndex);
- attestationIndex += 8;
- bpa.attestations[j].status = encoded.toUint8(index + attestationIndex);
- attestationIndex += 1;
- bpa.attestations[j].corpAct = encoded.toUint8(index + attestationIndex);
- attestationIndex += 1;
- bpa.attestations[j].timestamp = encoded.toUint64(index + attestationIndex);
- attestationIndex += 8;
- bpa.attestations[j].num_publishers = encoded.toUint32(index + attestationIndex);
- attestationIndex += 4;
- bpa.attestations[j].max_num_publishers = encoded.toUint32(index + attestationIndex);
- attestationIndex += 4;
- bpa.attestations[j].publish_time = encoded.toUint64(index + attestationIndex);
- attestationIndex += 8;
- bpa.attestations[j].prev_publish_time = encoded.toUint64(index + attestationIndex);
- attestationIndex += 8;
- bpa.attestations[j].prev_price = int64(encoded.toUint64(index + attestationIndex));
- attestationIndex += 8;
- bpa.attestations[j].prev_conf = encoded.toUint64(index + attestationIndex);
- attestationIndex += 8;
- require(attestationIndex <= bpa.attestationSize, "INTERNAL: Consumed more than `attestationSize` bytes");
- // Respect specified attestation size for forward-compat
- index += bpa.attestationSize;
- }
- }
- /// Maximum acceptable time period before price is considered to be stale.
- ///
- /// This includes attestation delay which currently might up to a minute.
- uint private constant VALID_TIME_PERIOD_SECS = 180;
- function queryPriceFeed(bytes32 id) public view override returns (PythStructs.PriceFeed memory priceFeed){
- // Look up the latest price info for the given ID
- PythInternalStructs.PriceInfo memory info = latestPriceInfo(id);
- require(info.priceFeed.id != 0, "no price feed found for the given price id");
- // Check that there is not a significant difference between this chain's time
- // and the attestation time. This is a last-resort safety net, and this check
- // will be iterated on in the future.
- if (diff(block.timestamp, info.attestationTime) > VALID_TIME_PERIOD_SECS) {
- info.priceFeed.status = PythStructs.PriceStatus.UNKNOWN;
- }
-
- return info.priceFeed;
- }
- function diff(uint x, uint y) private pure returns (uint) {
- if (x > y) {
- return x - y;
- } else {
- return y - x;
- }
- }
- }
|