@inco/lightning-preview 0.8.0-devnet-7 → 0.8.0-devnet-9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inco/lightning-preview",
3
- "version": "0.8.0-devnet-7",
3
+ "version": "0.8.0-devnet-9",
4
4
  "repository": "https://github.com/Inco-fhevm/inco-monorepo",
5
5
  "files": [
6
6
  "src/",
@@ -1,5 +1,5 @@
1
1
  // SPDX-License-Identifier: No License
2
- pragma solidity ^0.8;
2
+ pragma solidity ^0.8.29;
3
3
 
4
4
  import {IncoLightning} from "@inco/lightning/src/IncoLightning.sol";
5
5
  import {
@@ -70,6 +70,7 @@ contract IncoLightningPreview is EList, UUPSUpgradeable, Version, OwnableUpgrade
70
70
  /// @param owner The address that will own this contract and can authorize upgrades
71
71
  function initialize(address owner) public initializer {
72
72
  __Ownable_init(owner);
73
+ _setAcceptedVersion(2, true);
73
74
  }
74
75
 
75
76
  /// @notice Delegates unhandled calls to the core IncoLightning contract