Skip to content

Instantly share code, notes, and snippets.

@ssheleg
Created January 8, 2018 12:59
Show Gist options
  • Save ssheleg/e911c6ac83cd868f98d9014ee3ab9291 to your computer and use it in GitHub Desktop.
Save ssheleg/e911c6ac83cd868f98d9014ee3ab9291 to your computer and use it in GitHub Desktop.
[
{
"constant": false,
"inputs": [
{
"name": "_startDate",
"type": "uint256"
},
{
"name": "_endDate",
"type": "uint256"
}
],
"name": "nextStage",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "getEtherReceived",
"outputs": [
{
"name": "",
"type": "uint256",
"value": "0"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "getCurrentHardcap",
"outputs": [
{
"name": "",
"type": "uint256",
"value": "2e+21"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "isStarted",
"outputs": [
{
"name": "",
"type": "bool",
"value": true
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "getStartDate",
"outputs": [
{
"name": "",
"type": "uint256",
"value": "1514764801"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "isFinished",
"outputs": [
{
"name": "",
"type": "bool",
"value": false
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "finishMinting",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "owner",
"outputs": [
{
"name": "",
"type": "address",
"value": "0x3629056d74b8467bb0c85ccfe387377c131d76d2"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "getEndDate",
"outputs": [
{
"name": "",
"type": "uint256",
"value": "1518739199"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "createTokens",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "getTokensSold",
"outputs": [
{
"name": "",
"type": "uint256",
"value": "0"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "getCurrentRate",
"outputs": [
{
"name": "",
"type": "uint256",
"value": "100"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "token",
"outputs": [
{
"name": "",
"type": "address",
"value": "0x6e5c02cf6fa4770a8c91d19cf58d24bd24bcc6b8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "getStage",
"outputs": [
{
"name": "",
"type": "uint256",
"value": "1"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"payable": true,
"stateMutability": "payable",
"type": "fallback"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"name": "stage",
"type": "uint256"
},
{
"indexed": false,
"name": "startDate",
"type": "uint256"
},
{
"indexed": false,
"name": "endDate",
"type": "uint256"
},
{
"indexed": false,
"name": "rate",
"type": "uint256"
},
{
"indexed": false,
"name": "hardcap",
"type": "uint256"
}
],
"name": "CrowdsaleStageStarted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"name": "tokensSold",
"type": "uint256"
},
{
"indexed": false,
"name": "etherReceived",
"type": "uint256"
}
],
"name": "CrowdsaleFinished",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"name": "tokens",
"type": "uint256"
},
{
"indexed": false,
"name": "ethFromTokens",
"type": "uint256"
},
{
"indexed": false,
"name": "rate",
"type": "uint256"
},
{
"indexed": false,
"name": "hardcap",
"type": "uint256"
}
],
"name": "TokenSold",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"name": "tokensSold",
"type": "uint256"
},
{
"indexed": false,
"name": "etherReceived",
"type": "uint256"
},
{
"indexed": false,
"name": "hardcap",
"type": "uint256"
},
{
"indexed": false,
"name": "stage",
"type": "uint256"
}
],
"name": "HardcapGoalReached",
"type": "event"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment