This file contains hidden or 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; | |
| /** | |
| * @dev Implements a contract to add password-protection support to API calls of child contracts. | |
| * This is secure through storage of only the keccak256 hash of the password, which is irreversible. | |
| * Critically, all sensitive methods have private visibility. | |
| * | |
| * Deployed to Ethereum address: 0xabfe059e98b75b9293b341d461dad649fef25cf9 | |
| * | |
| * As implemented, the password has contract-wide scope. This does not implement per-account passwords, |
This file contains hidden or 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.4.18; | |
| // ---------------------------------------------------------------------------- | |
| // 'DaveCoin' token contract | |
| // | |
| // Deployed to : 0x66e0fe82cf8a11F8cc879Eb498622FC3619Db5E5 | |
| // Symbol : DAVE | |
| // Name : DaveCoin Token | |
| // Total supply: 100000000 (one hundred million) | |
| // Decimals : 6 |