-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c16a5c
commit b635e9d
Showing
37 changed files
with
36,631 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,332 @@ | ||
[ | ||
{ | ||
"type": "constructor", | ||
"stateMutability": "payable", | ||
"payable": true, | ||
"inputs": [ | ||
{ | ||
"type": "string", | ||
"name": "name" | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "symbol" | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "initialSupply" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "event", | ||
"anonymous": false, | ||
"name": "Approval", | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "owner", | ||
"indexed": true | ||
}, | ||
{ | ||
"type": "address", | ||
"name": "spender", | ||
"indexed": true | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "value" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "event", | ||
"anonymous": false, | ||
"name": "OwnershipTransferred", | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "previousOwner", | ||
"indexed": true | ||
}, | ||
{ | ||
"type": "address", | ||
"name": "newOwner", | ||
"indexed": true | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "event", | ||
"anonymous": false, | ||
"name": "Transfer", | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "from", | ||
"indexed": true | ||
}, | ||
{ | ||
"type": "address", | ||
"name": "to", | ||
"indexed": true | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "value" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "allowance", | ||
"constant": true, | ||
"stateMutability": "view", | ||
"payable": false, | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "owner" | ||
}, | ||
{ | ||
"type": "address", | ||
"name": "spender" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"type": "uint256" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "approve", | ||
"constant": false, | ||
"payable": false, | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "spender" | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "amount" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"type": "bool" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "balanceOf", | ||
"constant": true, | ||
"stateMutability": "view", | ||
"payable": false, | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "account" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"type": "uint256" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "decimals", | ||
"constant": true, | ||
"stateMutability": "view", | ||
"payable": false, | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"type": "uint8" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "decreaseAllowance", | ||
"constant": false, | ||
"payable": false, | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "spender" | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "subtractedValue" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"type": "bool" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "increaseAllowance", | ||
"constant": false, | ||
"payable": false, | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "spender" | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "addedValue" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"type": "bool" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "mint", | ||
"constant": false, | ||
"payable": false, | ||
"inputs": [ | ||
{ | ||
"type": "uint256", | ||
"name": "amount" | ||
}, | ||
{ | ||
"type": "address", | ||
"name": "to" | ||
} | ||
], | ||
"outputs": [] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "name", | ||
"constant": true, | ||
"stateMutability": "view", | ||
"payable": false, | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"type": "string" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "owner", | ||
"constant": true, | ||
"stateMutability": "view", | ||
"payable": false, | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"type": "address" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "renounceOwnership", | ||
"constant": false, | ||
"payable": false, | ||
"inputs": [], | ||
"outputs": [] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "symbol", | ||
"constant": true, | ||
"stateMutability": "view", | ||
"payable": false, | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"type": "string" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "totalSupply", | ||
"constant": true, | ||
"stateMutability": "view", | ||
"payable": false, | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"type": "uint256" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "transfer", | ||
"constant": false, | ||
"payable": false, | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "to" | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "amount" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"type": "bool" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "transferFrom", | ||
"constant": false, | ||
"payable": false, | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "from" | ||
}, | ||
{ | ||
"type": "address", | ||
"name": "to" | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "amount" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"type": "bool" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "function", | ||
"name": "transferOwnership", | ||
"constant": false, | ||
"payable": false, | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "newOwner" | ||
} | ||
], | ||
"outputs": [] | ||
} | ||
] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[ | ||
"constructor(string name, string symbol, uint256 initialSupply) payable", | ||
"event Approval(address indexed owner, address indexed spender, uint256 value)", | ||
"event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)", | ||
"event Transfer(address indexed from, address indexed to, uint256 value)", | ||
"function allowance(address owner, address spender) view returns (uint256)", | ||
"function approve(address spender, uint256 amount) returns (bool)", | ||
"function balanceOf(address account) view returns (uint256)", | ||
"function decimals() view returns (uint8)", | ||
"function decreaseAllowance(address spender, uint256 subtractedValue) returns (bool)", | ||
"function increaseAllowance(address spender, uint256 addedValue) returns (bool)", | ||
"function mint(uint256 amount, address to)", | ||
"function name() view returns (string)", | ||
"function owner() view returns (address)", | ||
"function renounceOwnership()", | ||
"function symbol() view returns (string)", | ||
"function totalSupply() view returns (uint256)", | ||
"function transfer(address to, uint256 amount) returns (bool)", | ||
"function transferFrom(address from, address to, uint256 amount) returns (bool)", | ||
"function transferOwnership(address newOwner)" | ||
] |
Oops, something went wrong.