REPOSITORY OVERVIEWLive repository statistics
★ 4Stars
⑂ 1Forks
◯ 0Open issues
◉ 4Watchers
33/100
OPENREPOHUB HEALTH SIGNALLimited signals
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
10 Community adoption25% weight
9 Maintenance state20% weight
100 License clarity10% weight
0 Project information10% weight
75 This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview
Learn-Solidity-With-Examples
- This repository contains various smart contract examples built using Solidity. These examples are designed to showcase different functionalities, use cases, and features of smart contracts on the Ethereum blockchain. Developers and enthusiasts can explore these contracts to gain a better understanding of how to create, deploy, and interact with smart contracts for a wide range of applications and scenarios.
Blockchain-Roadmap
Blockchain-Roadmap Link.
Table Of Contents
natspec:-
- The standard in the Solidity community is to use a format called natspec, which looks like this:-
/**
* @title A contract for basic math operations
* @author Jitendra Gangwar
* @notice For now, this contract just adds a multiply function
*/
contract Math {
/**
* @notice Multiplies 2 numbers together
* @param x the first uint.
* @param y the second uint.
* @return z the product of (x * y)
* @dev This function does not currently check for overflows
*/
function multiply(uint x, uint y) returns (uint z) {
// This is just a normal comment, and wont get picked up by natspec
z = x * y;
}
}
- @title and @author are straightforward.
- @notice explains to a user what the contract / function does.
- @dev is for explaining extra details to developers.
- @param and @return are for describing what each parameter and return value of a function are for.
ALGORITHMICALLY RELATEDSimilar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
This repository contains smart contracts related to a Fractional NFT use case for real estate. It likely includes Solidity smart contracts designed to represent and manage fractional ownership of real estate properties using non-fungible tokens (NFTs).
31/100 healthActive repository
SolidityNo license#defi#erc-20#nft#real-estate
⑂ 0 forks◯ 0 issuesUpdated Jan 4, 2024