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.5.7; | |
contract simpleDAO { | |
event PaymentCalled(address payee, uint amount); | |
event TokensBought(address buyer, uint amount); | |
event TokensTransfered(address from, address to, uint amount); | |
event InsufficientFunds(uint bal, uint amount); | |
mapping (address => uint) public balances; | |
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.5.1; | |
contract simpleDAO { | |
event PaymentCalled(address payee, uint amount); | |
event TokensBought(address buyer, uint amount); | |
event TokensTransfered(address from, address to, uint amount); | |
event InsufficientFunds(uint bal, uint amount); | |
mapping (address => uint) public balances; | |
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.5.1; | |
contract simpleDAO { | |
event PaymentCalled(address payee, uint amount); | |
event TokensBought(address buyer, uint amount); | |
event TokensTransfered(address from, address to, uint amount); | |
event InsufficientFunds(uint bal, uint amount); | |
mapping (address => uint) public balances; | |