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.0; | |
contract Alef { | |
address public owner; | |
struct Sponsor { | |
// If the sponser can administer their account. | |
bool status; | |
// A record of the amount held for the sponsor. |
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.0; | |
contract Alef { | |
address public owner; | |
struct Sponsor { | |
// If the sponser can administer their account. | |
bool status; | |
// A record of the amount held for the sponsor. |
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.0; | |
// TestRPC HD wallet | |
// warrior minimum breeze raven garden express solar flavor obvious twenty alpha actress | |
contract Donation { | |
// Instantiate a variable to hold the account address of the contract administrator | |
address public owner; |