This is a complete step-by-step tutorial on deploying a free contract for the FhenixIO testnet and gaining an advantage with this trick.
Airdrop has not been confirmed, but the potential is high: HERE
This is the code, you will know why i dropped it here when you have gone through the post on twitter.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
contract Counter {
uint256 public count;
function increment() public {
count += 1;
}
//CHASE CREATION
function decrement() public {
require(count > 0, "Count cannot be negative.");
count -= 1;
}
function getCount() public view returns (uint256) {
return count;
}
}