You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR corrects the USDC native price on mainnet for certain auctions,
due to a bogus USDC native price that temporarily appeared.
The bogus price that appeared was this one:
56150942718177291268870111232
which suggests that the price of ETH is
```
10^36 / 56150942718177291268870111232 / 10^6 = 17.80914 USDC.
```
Prod mainnet auctions with id in [10410727, 10410755] were affected. No
barn auctions seem to have been affected
We use the correct price that appeared in auction 10410756 to correct
all previous ones
```
mainnet=> select * from auction_prices where token='\xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' and auction_id = 10410756;
auction_id | token | price
------------+--------------------------------------------+-----------------------------
10410756 | \xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 523378898648164562100027392
(1 row)
```
-- bogus baseline price for USDC that caused a crazy native price for the token
85
+
-- query to confirm results: select * from auction_prices where token='\xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' and price > 56150942718177291268870111000;
0 commit comments