From fa6c20be3057284f29e18d1b9b76701df853ab4b Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Tue, 22 Oct 2024 18:03:49 +0200 Subject: [PATCH 1/2] Bump pragma of files that depend on mcopy --- contracts/utils/Bytes.sol | 2 +- contracts/utils/CAIP10.sol | 2 +- contracts/utils/CAIP2.sol | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/utils/Bytes.sol b/contracts/utils/Bytes.sol index 84e5a3ed51f..6fe49fd8d14 100644 --- a/contracts/utils/Bytes.sol +++ b/contracts/utils/Bytes.sol @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT -pragma solidity ^0.8.20; +pragma solidity ^0.8.24; import {Math} from "./math/Math.sol"; diff --git a/contracts/utils/CAIP10.sol b/contracts/utils/CAIP10.sol index e9ed17305b6..95aa2a97737 100644 --- a/contracts/utils/CAIP10.sol +++ b/contracts/utils/CAIP10.sol @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT -pragma solidity ^0.8.20; +pragma solidity ^0.8.24; import {SafeCast} from "./math/SafeCast.sol"; import {Bytes} from "./Bytes.sol"; diff --git a/contracts/utils/CAIP2.sol b/contracts/utils/CAIP2.sol index 13a98f58a46..cfad67e00d0 100644 --- a/contracts/utils/CAIP2.sol +++ b/contracts/utils/CAIP2.sol @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT -pragma solidity ^0.8.20; +pragma solidity ^0.8.24; import {SafeCast} from "./math/SafeCast.sol"; import {Bytes} from "./Bytes.sol"; From 9e4f73097a31f0ca54295a61113328f37349dd8a Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Tue, 22 Oct 2024 18:16:02 +0200 Subject: [PATCH 2/2] fix --- contracts/mocks/Stateless.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/mocks/Stateless.sol b/contracts/mocks/Stateless.sol index 98e7eaf7443..4ec36418466 100644 --- a/contracts/mocks/Stateless.sol +++ b/contracts/mocks/Stateless.sol @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT -pragma solidity ^0.8.20; +pragma solidity ^0.8.24; // We keep these imports and a dummy contract just to we can run the test suite after transpilation.