Blog

  1. Compare Strings in Solidity

    In most programming languates, it is fairly easy to compare equality of strings. However, Solidity does not come with native functions to compare the strings. …
  2. Visibility in Solidity

    Solidity functions and state variables can be defined with visibility. According to the docs: public: visible externally and internally (creates a getter funct…