Skip to content

Commit

Permalink
0.8.25 -> ^0.8.25
Browse files Browse the repository at this point in the history
  • Loading branch information
grishasobol committed Nov 15, 2024
1 parent 2a5f6f0 commit 70959b9
Show file tree
Hide file tree
Showing 60 changed files with 60 additions and 60 deletions.
2 changes: 1 addition & 1 deletion script/deploy/Core.s.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Script, console2} from "forge-std/Script.sol";

Expand Down
2 changes: 1 addition & 1 deletion script/deploy/MetadataService.s.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import "forge-std/Script.sol";

Expand Down
2 changes: 1 addition & 1 deletion script/deploy/NetworkMiddlewareService.s.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import "forge-std/Script.sol";

Expand Down
2 changes: 1 addition & 1 deletion script/deploy/NetworkRegistry.s.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import "forge-std/Script.sol";

Expand Down
2 changes: 1 addition & 1 deletion script/deploy/OperatorRegistry.s.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import "forge-std/Script.sol";

Expand Down
2 changes: 1 addition & 1 deletion script/deploy/OptInService.s.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import "forge-std/Script.sol";

Expand Down
2 changes: 1 addition & 1 deletion script/deploy/Vault.s.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Script, console2} from "forge-std/Script.sol";

Expand Down
2 changes: 1 addition & 1 deletion script/deploy/VaultFactory.s.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import "forge-std/Script.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/DelegatorFactory.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Factory} from "./common/Factory.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/NetworkRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Registry} from "./common/Registry.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/OperatorRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Registry} from "./common/Registry.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/SlasherFactory.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Factory} from "./common/Factory.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/VaultConfigurator.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {BaseSlasher} from "./slasher/BaseSlasher.sol";
import {DelegatorFactory} from "./DelegatorFactory.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/VaultFactory.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {MigratablesFactory} from "./common/MigratablesFactory.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/common/Entity.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {IEntity} from "../../interfaces/common/IEntity.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/common/Factory.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Registry} from "./Registry.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/common/MigratableEntity.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {IMigratableEntity} from "../../interfaces/common/IMigratableEntity.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/common/MigratableEntityProxy.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {IMigratableEntityProxy} from "../../interfaces/common/IMigratableEntityProxy.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/common/MigratablesFactory.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {MigratableEntityProxy} from "./MigratableEntityProxy.sol";
import {Registry} from "./Registry.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/delegator/BaseDelegator.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Entity} from "../common/Entity.sol";
import {StaticDelegateCallable} from "../common/StaticDelegateCallable.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/delegator/FullRestakeDelegator.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {BaseDelegator} from "./BaseDelegator.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/delegator/NetworkRestakeDelegator.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {BaseDelegator} from "./BaseDelegator.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/hints/DelegatorHints.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {BaseDelegator} from "../delegator/BaseDelegator.sol";
import {FullRestakeDelegator} from "../delegator/FullRestakeDelegator.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/hints/Hints.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {StaticDelegateCallable} from "../common/StaticDelegateCallable.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/hints/OptInServiceHints.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Hints} from "./Hints.sol";
import {OptInService} from "../service/OptInService.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/hints/SlasherHints.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {BaseDelegatorHints} from "./DelegatorHints.sol";
import {BaseSlasher} from "../slasher/BaseSlasher.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/hints/VaultHints.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Hints} from "./Hints.sol";
import {Vault} from "../vault/Vault.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/service/MetadataService.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {IMetadataService} from "../../interfaces/service/IMetadataService.sol";
import {IRegistry} from "../../interfaces/common/IRegistry.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/service/NetworkMiddlewareService.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {INetworkMiddlewareService} from "../../interfaces/service/INetworkMiddlewareService.sol";
import {IRegistry} from "../../interfaces/common/IRegistry.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/service/OptInService.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {StaticDelegateCallable} from "../common/StaticDelegateCallable.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/slasher/BaseSlasher.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Entity} from "../common/Entity.sol";
import {StaticDelegateCallable} from "../common/StaticDelegateCallable.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/slasher/Slasher.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {BaseSlasher} from "./BaseSlasher.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/slasher/VetoSlasher.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {BaseSlasher} from "./BaseSlasher.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/vault/Vault.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {MigratableEntity} from "../common/MigratableEntity.sol";
import {VaultStorage} from "./VaultStorage.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/vault/VaultStorage.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {StaticDelegateCallable} from "../common/StaticDelegateCallable.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/vault/VaultTokenized.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Vault} from "./Vault.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/DelegatorFactory.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/NetworkRegistry.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/OperatorRegistry.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/SlasherFactory.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/VaultConfigurator.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/VaultFactory.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/common/Entity.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/common/Factory.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/common/MigratableEntity.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/common/MigratableEntityProxy.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/common/MigratablesFactory.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/common/Registry.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/delegator/FullRestakeDelegator.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/delegator/NetworkRestakeDelegator.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/mocks/SimpleEntity.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Entity} from "../../src/contracts/common/Entity.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/mocks/SimpleMigratableEntity.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {MigratableEntity} from "../../src/contracts/common/MigratableEntity.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/mocks/SimpleMigratableEntityV2.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {MigratableEntity} from "../../src/contracts/common/MigratableEntity.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/service/MetadataService.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/service/NetworkMiddlewareService.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/service/OptInService.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/slasher/Slasher.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
pragma solidity ^0.8.25;

import {Test, console2} from "forge-std/Test.sol";

Expand Down
Loading

0 comments on commit 70959b9

Please sign in to comment.