-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMintableToken_weETH.readable.json
21 lines (21 loc) · 1.23 KB
/
MintableToken_weETH.readable.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[
"constructor(address owner, string name, string symbol, uint8 tokenDecimals, uint256 initialSupply) payable",
"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)",
"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)"
]