Skip to content

A contract with self check in on the Blockchain, useful if you are farming a new testnet and need to do interactions. The logic behind its simple, made a transaction without value, you only pay gas fees.

License

Notifications You must be signed in to change notification settings

KlouzakA/Self-Check-in

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Self check-in to farm Testnet or Mainnets

You have to deploy this contract on Remix Ethereum for deploying it, you need to create a .sol file with any name and copy/paste the code in there

The logic of the contract its simple, make a transaction without any value, you only pay gas fees.

The source code are in the .sol archive of this repository. There is the source code in case you can't see it:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract CheckIn {
    event CheckedIn(address indexed user, uint256 timestamp);

    function checkIn() external {
        emit CheckedIn(msg.sender, block.timestamp);
    }
}

About

A contract with self check in on the Blockchain, useful if you are farming a new testnet and need to do interactions. The logic behind its simple, made a transaction without value, you only pay gas fees.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published