Skip to content

Instantly share code, notes, and snippets.

Rules of Laws and Reforms Group(to avoid infighting and promote healthy discussions)

  1. We shall discuss in detail and try to understand about the working of any proposed system or law. This means reading the articles and also if somebody suggests any law reading the proposed law draft and giving your opinion and suggesting changes. This takes time but if we want to change our country we need to invest our time.
  2. As far as possible we do not take names of any political parties or persons unless there context to do so. Focus should be solely on discussing about details and sections of proposed systems and laws.
  3. As educated and responsible members of society, favouritism of any person or party should be avoided. Importance should be given to the issue that we are trying to solve. Support of good issues or systems or laws which is proven to bring about change and reduce graft or corruption is most welcome.
  4. Personal attacks on members should be avoided.
  5. Posting any forwards unless relevant to the grou
pragma solidity 0.5.16;
interface Token {
/// @return total amount of tokens
function totalSupply() external view returns (uint256 supply);
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) external view returns (uint256 balance);