#solidity

Blog posts

10 posts tagged with #solidity

  1. Solidity: How to Set Price for NFT

    November 04, 2022
    EIP-721 is a specification on how Non-Fungible Token (NFT) should be implemented on Ethereum. You can use Solidity to build your own NFT that can be minted. Op…
  2. How to Extend Builtin Types in Solidity

    October 31, 2022
    In Solidity, there is a way to extend builtin types with using A for B directive. Please note that the extention is active only within the current scope, meani…
  3. require v.s. assert in Solidity

    October 30, 2022
    There are two usual ways to handle error in Solidity: require and assert. To summarise, the biggest difference between require and assert is that what develope…
  4. Function Modifier in Solidity

    October 28, 2022
    In Solidity, Function Modifiers can be used to inject business logics into other functions in a declarative way. You can think of it like one of the Decorator …
1/2
...
Next

Relevant tags

1 relevant tags with #solidity: