Guide on testnet and how to deploy a contract in easy way

**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:

  1. Connect the link with the metamask wallet : https://testnet-api.helioschain.network/wallet-connect

2, Authorize the discord account

  1. Do the zeally tasks

How to deploy the contracts

  1. go to Remix : https://remix.ethereum.org/#

  2. create a new file name Helios

  3. 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;
    }
}
  1. Compile Contract
    In the “Solidity Compiler” tab
    Click Compile

  2. Deploy Contract
    In the “Deploy & Run Transactions” tab

  3. Done

1 Like