**A modular EVM L1 secured by multi chain assets. Powered by I-PoSR: **
a reputation-based, AI-ready consensus for scalable Web3.
Testnet tasks
Steps:
- Connect the link with the metamask wallet : https://testnet-api.helioschain.network/wallet-connect
2, Authorize the discord account
- Do the zeally tasks
How to deploy the contracts
-
go to Remix : https://remix.ethereum.org/#
-
create a new file name Helios
-
Enter the following code :
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract HelloWorld {
string public greeting;
constructor() {
greeting = "Hello, World!";
}
function getGreeting() public view returns (string memory) {
return greeting;
}
}
-
Compile Contract
In the “Solidity Compiler” tab
Click Compile -
Deploy Contract
In the “Deploy & Run Transactions” tab -
Done