Skip to content

Instantly share code, notes, and snippets.

View Sowmayjain's full-sized avatar
🎯
Focusing

Sowmay Jain Sowmayjain

🎯
Focusing
View GitHub Profile
@Sowmayjain
Sowmayjain / MoatToken ABI
Created February 21, 2018 18:44
Smart Contract ABI of MoatToken
[
{
"constant": false,
"inputs": [
{
"name": "tokenAddress",
"type": "address"
},
{
"name": "amount",
@Sowmayjain
Sowmayjain / MoatFund ABI
Created February 21, 2018 18:42
Smart Contract ABI of MoatFund
[
{
"constant": false,
"inputs": [
{
"name": "tokenAddress",
"type": "address"
},
{
"name": "amount",
@Sowmayjain
Sowmayjain / MoatCoin Board Application
Created February 11, 2018 19:22
The smart contract helps to keep a record of MoatCoin Board Application
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;