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
[ | |
{ | |
"constant": false, | |
"inputs": [ | |
{ | |
"name": "tokenAddress", | |
"type": "address" | |
}, | |
{ | |
"name": "amount", |
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
[ | |
{ | |
"constant": false, | |
"inputs": [ | |
{ | |
"name": "tokenAddress", | |
"type": "address" | |
}, | |
{ | |
"name": "amount", |
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.4.18; | |
contract Board { | |
// mapping of address with their and storing the time | |
mapping(address => uint) public Members; | |
// array of addresses of all the moatcoin application | |
address[] public ApplyArr; |
NewerOlder