Skip to content

Commit 9b05ec8

Browse files
committed
chore: fixes version to 0.8.30
1 parent c43d512 commit 9b05ec8

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/contracts/L2Resolver.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.30;
2+
pragma solidity 0.8.30;
33

44
import {IENS} from 'src/interfaces/IENS.sol';
55
import {IL2Resolver} from 'src/interfaces/IL2Resolver.sol';

src/interfaces/IENS.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.30;
2+
pragma solidity 0.8.30;
33

44
/**
55
* @title IENS

src/interfaces/IL2Resolver.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.30;
2+
pragma solidity 0.8.30;
33

44
import {IENS} from './IENS.sol';
55
import {INameWrapper} from './INameWrapper.sol';

src/interfaces/INameWrapper.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.30;
2+
pragma solidity 0.8.30;
33

44
/**
55
* @title INameWrapper

test/unit/L2Resolver.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.30;
2+
pragma solidity 0.8.30;
33

44
import {Test} from 'forge-std/Test.sol';
55
import {L2Resolver} from 'src/contracts/L2Resolver.sol';

0 commit comments

Comments
 (0)