forest-filecoin 0.33.0

Rust Filecoin implementation.
Documentation
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: MIT
pragma solidity = 0.8.30;

contract InvokeCthulhu {
  bool public cthulhu_is_here = false;
  function incoming_doom() public {
    cthulhu_is_here = true;
  }
}