Network, L2
Fhenix is the first confidential L2 powered by fully homomorphic encryption. Fhenix enables Ethereum developers to seamlessly build encrypted smart contracts and perform encrypted computation of data, all while using Solidity and other familiar, easy-to-use tools.
✅ Complete the quests in their Discord server
community-quests
channel /quests
to see the quests. Click on each quest and complete them.The first quest is about deploying 5 contracts on Fhenix testnet. Follow the guide below to learn how to complete this quest.
alphadrops.sol
)alphadrops.sol
file:// SPDX-License-Identifier: MITpragma solidity ^0.8.26;contract Counter { uint256 public count; function increment() public { count += 1; } function decrement() public { require(count > 0, "Count cannot be negative."); count -= 1; } function getCount() public view returns (uint256) { return count; }}
Deploy:
Copyright 2024. All rights reserved.