-
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
1874483
commit 2abc1dc
Showing
46 changed files
with
33,634 additions
and
20,906 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,273 @@ | ||
[ | ||
{ | ||
"type": "error", | ||
"name": "InsufficientAllowance", | ||
"inputs": [ | ||
{ | ||
"type": "uint256", | ||
"name": "required" | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "existing" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "error", | ||
"name": "InsufficientBalance", | ||
"inputs": [ | ||
{ | ||
"type": "uint256", | ||
"name": "required" | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "existing" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "event", | ||
"anonymous": false, | ||
"name": "Approval", | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "owner", | ||
"indexed": true | ||
}, | ||
{ | ||
"type": "address", | ||
"name": "spender", | ||
"indexed": true | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "amount" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "event", | ||
"anonymous": false, | ||
"name": "Transfer", | ||
"inputs": [ | ||
{ | ||
"type": "address", | ||
"name": "from", | ||
"indexed": true | ||
}, | ||
{ | ||
"type": "address", | ||
"name": "to", | ||
"indexed": true | ||
}, | ||
{ | ||
"type": "uint256", | ||
"name": "amount" | ||
} | ||
] | ||
}, | ||
{ | ||
"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": "owner" | ||
} | ||
], | ||
"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": "name", | ||
"constant": true, | ||
"stateMutability": "view", | ||
"payable": false, | ||
"inputs": [], | ||
"outputs": [ | ||
{ | ||
"type": "string" | ||
} | ||
] | ||
}, | ||
{ | ||
"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" | ||
} | ||
] | ||
} | ||
] |
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,17 @@ | ||
[ | ||
"error InsufficientAllowance(uint256 required, uint256 existing)", | ||
"error InsufficientBalance(uint256 required, uint256 existing)", | ||
"event Approval(address indexed owner, address indexed spender, uint256 amount)", | ||
"event Transfer(address indexed from, address indexed to, uint256 amount)", | ||
"function allowance(address owner, address spender) view returns (uint256)", | ||
"function approve(address spender, uint256 amount) returns (bool)", | ||
"function balanceOf(address owner) 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 name() view returns (string)", | ||
"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)" | ||
] |
Oops, something went wrong.