Skip to content

Instantly share code, notes, and snippets.

@y12studio
Created March 19, 2016 13:17
Show Gist options
  • Save y12studio/34960642eafe2341275b to your computer and use it in GitHub Desktop.
Save y12studio/34960642eafe2341275b to your computer and use it in GitHub Desktop.
SimpleOpenAuction Contract JSON
[ { "constant": false, "inputs": [], "name": "bid", "outputs": [], "type": "function", "displayName": "bid" }, { "constant": false, "inputs": [], "name": "auctionEnd", "outputs": [], "type": "function", "displayName": "auction End" }, { "constant": true, "inputs": [], "name": "beneficiary", "outputs": [ { "name": "", "type": "address", "value": "0x13a9684203635a4f03e9cb30befdc3e0f69e8163", "displayName": "" } ], "type": "function", "displayName": "beneficiary" }, { "constant": true, "inputs": [], "name": "auctionStart", "outputs": [ { "name": "", "type": "uint256", "value": "1458393276", "displayName": "" } ], "type": "function", "displayName": "auction Start" }, { "constant": true, "inputs": [], "name": "highestBidder", "outputs": [ { "name": "", "type": "address", "value": "0x0000000000000000000000000000000000000000", "displayName": "" } ], "type": "function", "displayName": "highest Bidder" }, { "constant": true, "inputs": [], "name": "biddingTime", "outputs": [ { "name": "", "type": "uint256", "value": "864000", "displayName": "" } ], "type": "function", "displayName": "bidding Time" }, { "constant": true, "inputs": [], "name": "highestBid", "outputs": [ { "name": "", "type": "uint256", "value": "0", "displayName": "" } ], "type": "function", "displayName": "highest Bid" }, { "inputs": [ { "name": "_biddingTime", "type": "uint256", "typeShort": "uint", "bits": "256", "displayName": "&thinsp;<span class=\"punctuation\">_</span>&thinsp;bidding Time", "template": "elements_input_uint", "value": "864000" }, { "name": "_beneficiary", "type": "address", "typeShort": "address", "bits": "", "displayName": "&thinsp;<span class=\"punctuation\">_</span>&thinsp;beneficiary", "template": "elements_input_address", "value": "0x13a9684203635a4f03e9cb30beFDC3E0f69E8163" } ], "type": "constructor" }, { "anonymous": false, "inputs": [ { "indexed": false, "name": "bidder", "type": "address" }, { "indexed": false, "name": "amount", "type": "uint256" } ], "name": "HighestBidIncreased", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": false, "name": "winner", "type": "address" }, { "indexed": false, "name": "amount", "type": "uint256" } ], "name": "AuctionEnded", "type": "event" } ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment