🧘♂️
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# makes Rails logs appear in the console, useful for seeing the actual SQL query generated from an AR find for example | |
# put this in ~/.railsrc | |
require 'logger' | |
Rails.logger = Logger.new STDOUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.8.7; | |
// ---------------------------------------------------------------------------- | |
// ERC Token Standard #20 Interface | |
// | |
// ---------------------------------------------------------------------------- | |
abstract contract ERC20Interface { | |
function totalSupply() virtual public view returns (uint); | |
function balanceOf(address tokenOwner) virtual public view returns (uint balance); |
OlderNewer