Skip to content

A complete Ethereum development toolkit featuring Hardhat for testing, deployment scripts, Solidity contract templates, and example DApps. Ideal for rapid development and deployment of blockchain applications.

License

Notifications You must be signed in to change notification settings

Myomin78779/Myo-Min-Hlaing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Myo-Min-Hlaing

A complete Ethereum development toolkit featuring Hardhat for testing, deployment scripts, Solidity contract templates, and example DApps. Ideal for rapid development and deployment of blockchain applications. // SPDX-License-Identifier: MIT pragma solidity ^0.8.0;

contract SimpleStorage { uint256 private storedData;

event DataStored(uint256 data);

function set(uint256 x) public {
    storedData = x;
    emit DataStored(x);
}

function get() public view returns (uint256) {
    return storedData;
}

}

About

A complete Ethereum development toolkit featuring Hardhat for testing, deployment scripts, Solidity contract templates, and example DApps. Ideal for rapid development and deployment of blockchain applications.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published