Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
305 changes: 205 additions & 100 deletions contracts/gas-snapshots/llo-feeds.gas-snapshot

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions contracts/scripts/native_solc_compile_all_llo-feeds
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,15 @@ compileContract v0.5.0 VerifierProxy
compileContract v0.5.0 FeeManager
compileContract v0.5.0 RewardManager
compileContract v0.5.0 NoOpFeeManager
compileContract v0.5.1 Verifier
compileContract v0.5.1 VerifierProxy
compileContract v0.5.1 FeeManager
compileContract v0.5.1 RewardManager
compileContract v0.5.1 NoOpFeeManager

# Test | Mocks
compileContract v0.3.0 test/mocks/ErroredVerifier
compileContract v0.3.0 test/mocks/ExposedVerifier
compileContract v0.5.0 configuration/test/mocks/ExposedConfigurator
compileContract v0.5.0 test/mocks/MockFeeManager
compileContract v0.5.1 test/mocks/ErroredVerifier
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {Common} from "../../../libraries/Common.sol";
import {IRewardManager} from "../../interfaces/IRewardManager.sol";
import {BaseTest, BaseTestWithConfiguredVerifierAndFeeManager} from "../verifier/BaseVerifierTest.t.sol";

contract Verifier_setConfig is BaseTest {
contract Verifier_setConfigV03 is BaseTest {
address[] internal s_signerAddrs;

function setUp() public override {
Expand All @@ -30,7 +30,7 @@ contract Verifier_setConfig is BaseTest {
}
}

contract Verifier_verifyWithFee is BaseTestWithConfiguredVerifierAndFeeManager {
contract Verifier_verifyWithFeeV03 is BaseTestWithConfiguredVerifierAndFeeManager {
uint256 internal constant DEFAULT_LINK_MINT_QUANTITY = 100 ether;
uint256 internal constant DEFAULT_NATIVE_MINT_QUANTITY = 100 ether;

Expand Down Expand Up @@ -84,7 +84,7 @@ contract Verifier_verifyWithFee is BaseTestWithConfiguredVerifierAndFeeManager {
}
}

contract Verifier_bulkVerifyWithFee is BaseTestWithConfiguredVerifierAndFeeManager {
contract Verifier_bulkVerifyWithFeeV03 is BaseTestWithConfiguredVerifierAndFeeManager {
uint256 internal constant DEFAULT_LINK_MINT_QUANTITY = 100 ether;
uint256 internal constant DEFAULT_NATIVE_MINT_QUANTITY = 100 ether;
uint256 internal constant NUMBER_OF_REPORTS_TO_VERIFY = 5;
Expand Down Expand Up @@ -149,7 +149,7 @@ contract Verifier_bulkVerifyWithFee is BaseTestWithConfiguredVerifierAndFeeManag
}
}

contract Verifier_verify is BaseTestWithConfiguredVerifierAndFeeManager {
contract Verifier_verifyV03 is BaseTestWithConfiguredVerifierAndFeeManager {
bytes internal s_signedReport;
bytes32 internal s_configDigest;

Expand Down Expand Up @@ -184,7 +184,7 @@ contract Verifier_verify is BaseTestWithConfiguredVerifierAndFeeManager {
}
}

contract Verifier_accessControlledVerify is BaseTestWithConfiguredVerifierAndFeeManager {
contract Verifier_accessControlledVerifyV03 is BaseTestWithConfiguredVerifierAndFeeManager {
bytes internal s_signedReport;
bytes32 internal s_configDigest;
SimpleWriteAccessController s_accessController;
Expand Down
Loading
Loading