Skip to content

Commit

Permalink
feat(iota-wiki): use solidity version 0.8.24
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginowine committed Jun 26, 2024
1 parent b3636a0 commit 726b7e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Retrieving the NFTs owned by a user can serve several purposes:
In your Solidity file, import the ISC Library:

```solidity
pragma solidity >=0.8.5;
pragma solidity >=0.8.24;
import "@iota/iscmagic/ISC.sol";
```
Expand All @@ -79,7 +79,7 @@ function getOwnedNFTs(ISCAgentID memory agentID) public view returns (NFTID[] me

```solidity
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.5;
pragma solidity >=0.8.24;
import "@iota/iscmagic/ISC.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Retrieving the NFTs owned by a user can serve several purposes:
In your Solidity file, import the ISC Library:

```solidity
pragma solidity >=0.8.5;
pragma solidity >=0.8.24;
import "@iota/iscmagic/ISC.sol";
```
Expand All @@ -79,7 +79,7 @@ function getOwnedNFTs(ISCAgentID memory agentID) public view returns (NFTID[] me

```solidity
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.5;
pragma solidity >=0.8.24;
import "@iota/iscmagic/ISC.sol";
Expand Down

0 comments on commit 726b7e4

Please sign in to comment.