Skip to content

Commit cfa257f

Browse files
committed
Update Solidity compiler version to 0.8.29 across all contracts and configuration
1 parent f15d526 commit cfa257f

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

packages/smart-contract/.solhint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"rules": {
77
"compiler-version": [
88
"error",
9-
"^0.8.19"
9+
"^0.8.29"
1010
],
1111
"func-visibility": [
1212
"warn",

packages/smart-contract/contracts/DataProtector.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License. *
1717
******************************************************************************/
1818

19-
pragma solidity ^0.8.19;
19+
pragma solidity ^0.8.29;
2020
import "./interfaces/IDataProtector.sol";
2121

2222
contract DataProtector is IDataProtector {

packages/smart-contract/contracts/DatasetRegistryMock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License. *
1717
******************************************************************************/
1818

19-
pragma solidity ^0.8.19;
19+
pragma solidity ^0.8.29;
2020

2121
import "./interfaces/IDatasetRegistry.sol";
2222

packages/smart-contract/contracts/interfaces/IDataProtector.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License. *
1717
******************************************************************************/
1818

19-
pragma solidity ^0.8.19;
19+
pragma solidity ^0.8.29;
2020

2121
import "./IDatasetRegistry.sol";
2222

packages/smart-contract/contracts/interfaces/IDataset.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
* limitations under the License. *
1717
******************************************************************************/
1818

19-
pragma solidity ^0.8.19;
19+
pragma solidity ^0.8.29;
2020

2121
interface IDataset {}

packages/smart-contract/contracts/interfaces/IDatasetRegistry.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License. *
1717
******************************************************************************/
1818

19-
pragma solidity ^0.8.19;
19+
pragma solidity ^0.8.29;
2020

2121
import "./IDataset.sol";
2222

packages/smart-contract/hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const config: HardhatUserConfig = {
4646
},
4747
//compiler version
4848
solidity: {
49-
version: '0.8.19',
49+
version: '0.8.29',
5050
settings: {
5151
optimizer: {
5252
enabled: true,

0 commit comments

Comments
 (0)