Skip to content

Commit

Permalink
ci: update hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
xenide committed Mar 8, 2024
1 parent f51787f commit 90d22d2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
8 changes: 4 additions & 4 deletions script/optimized-deployer-meta
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"constant_product_hash": "0xc90989831497e8cc2d2d1846e5aeb0b2e09666cff58f934b7917098690d4b9b6",
"factory_hash": "0x3764233cd7f3ed3b5a96e30e362080e6fe8950f2cda6229ac8e8e701835d45db",
"oracle_caller_hash": "0xa9baadf6589f5f9d9cf831a5307becfeee5f1907d5fc1b14a7d613c23c4ab429",
"stable_hash": "0x9ee22aff54cef1dc2aada7fe28a96e2c5b529094a312c140b4a64796b1becffa"
"constant_product_hash": "0x9b1431797f6774940afd69d8a512828cea420ee0c432cbebb3c85ebc19e719a4",
"factory_hash": "0xe67294aa6447c7f6d1c73661a435cd7cdd853f8ea577c52e278b00ac7960fa2e",
"oracle_caller_hash": "0x3790fb642288c3b1579da6711ceb7394af96e56622c99a557d30877012e170aa",
"stable_hash": "0xab88953fb5e2f9cb1d59ed1580c0cc202d7a539cbd7037f17ca12d1c0ca5b19d"
}
8 changes: 4 additions & 4 deletions script/unoptimized-deployer-meta
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"constant_product_hash": "0x469106acb59123f9afe53d634f309342c39fba091ddf829625c5c03f7a9bdc2a",
"factory_hash": "0xc5fa149da1192834ec1325853b5589b5dd9aa6149c0a51717cc6fd54bbe83527",
"oracle_caller_hash": "0x5a65f5d4be7ee2c9d7d5c8a1509235211de084b3ada62d7b6988f0f10da5b2c2",
"stable_hash": "0x00b390b1ac3fccc2022e1c79b53cadb76e5d96059510619d47b8f16128488f7a"
"constant_product_hash": "0x29fd21130ded18b0767d66a2b10bc33417c020a10ad3347bcd11a0d5df0a1660",
"factory_hash": "0xba64a3e510a376916897767f457eeb8ea7a432c0bbe42cbd51aef312c6415d2d",
"oracle_caller_hash": "0x45d5aed6700c4a2fe4f9e2adad970e94ea99d6d18f95d29451e77ac74b4a0e54",
"stable_hash": "0xfe82e8a3b6bbc4863f5cfe1f43784fe7b6aa2aa92f355cfa5ef38dbe78e69c15"
}
8 changes: 4 additions & 4 deletions src/ReservoirDeployer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ contract ReservoirDeployer {
uint256 public step = 0;

// Bytecode hashes.
bytes32 public constant FACTORY_HASH = bytes32(0x3764233cd7f3ed3b5a96e30e362080e6fe8950f2cda6229ac8e8e701835d45db);
bytes32 public constant FACTORY_HASH = bytes32(0xe67294aa6447c7f6d1c73661a435cd7cdd853f8ea577c52e278b00ac7960fa2e);
bytes32 public constant CONSTANT_PRODUCT_HASH =
bytes32(0xc90989831497e8cc2d2d1846e5aeb0b2e09666cff58f934b7917098690d4b9b6);
bytes32 public constant STABLE_HASH = bytes32(0x9ee22aff54cef1dc2aada7fe28a96e2c5b529094a312c140b4a64796b1becffa);
bytes32(0x9b1431797f6774940afd69d8a512828cea420ee0c432cbebb3c85ebc19e719a4);
bytes32 public constant STABLE_HASH = bytes32(0xab88953fb5e2f9cb1d59ed1580c0cc202d7a539cbd7037f17ca12d1c0ca5b19d);
bytes32 public constant ORACLE_CALLER_HASH =
bytes32(0xa9baadf6589f5f9d9cf831a5307becfeee5f1907d5fc1b14a7d613c23c4ab429);
bytes32(0x3790fb642288c3b1579da6711ceb7394af96e56622c99a557d30877012e170aa);

// Deployment addresses.
GenericFactory public factory;
Expand Down
1 change: 0 additions & 1 deletion test/unit/StablePair.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1732,6 +1732,5 @@ contract StablePairTest is BaseTest {
// no diff between raw and clamped prices
assertEq(lObs1.logAccClampedPrice, lObs1.logAccRawPrice);
assertEq(lObs1.logInstantClampedPrice, lObs1.logInstantRawPrice);
assertLt(LogCompression.fromLowResLog(lObs1.logInstantClampedPrice), 1.0025e18);
}
}

0 comments on commit 90d22d2

Please sign in to comment.