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
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >= 0.5.0 < 0.9.0; | |
| contract Cf{ | |
| mapping(address=>uint) public contributors; | |
| address public manager; | |
| uint minimumContribution; | |
| uint deadline; | |
| uint public target; |
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
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >= 0.5.0 < 0.9.0; | |
| contract Cf{ | |
| mapping(address=>uint) public contributors; | |
| address public manager; | |
| uint minimumContribution; | |
| uint deadline; | |
| uint public target; |
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
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >= 0.5.0 < 0.9.0; | |
| contract CrowdFunding{ | |
| mapping(address=>uint) public contributors; | |
| address public manager; | |
| uint public minimumContribution; | |
| uint public deadline; | |
| uint public target; |