Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
openzeppelin-contracts-upgradeable
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
俞永鹏
openzeppelin-contracts-upgradeable
Commits
fbfd1fed
Commit
fbfd1fed
authored
Sep 04, 2018
by
Miraj Shah
Committed by
Francisco Giordano
Sep 03, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Functions in interfaces changed to "external" (#1263)
parent
bd994a88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
IERC20.sol
contracts/token/ERC20/IERC20.sol
+6
-6
No files found.
contracts/token/ERC20/IERC20.sol
View file @
fbfd1fed
...
@@ -6,20 +6,20 @@ pragma solidity ^0.4.24;
...
@@ -6,20 +6,20 @@ pragma solidity ^0.4.24;
* @dev see https://github.com/ethereum/EIPs/issues/20
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
*/
interface IERC20 {
interface IERC20 {
function totalSupply()
public
view returns (uint256);
function totalSupply()
external
view returns (uint256);
function balanceOf(address _who)
public
view returns (uint256);
function balanceOf(address _who)
external
view returns (uint256);
function allowance(address _owner, address _spender)
function allowance(address _owner, address _spender)
public
view returns (uint256);
external
view returns (uint256);
function transfer(address _to, uint256 _value)
public
returns (bool);
function transfer(address _to, uint256 _value)
external
returns (bool);
function approve(address _spender, uint256 _value)
function approve(address _spender, uint256 _value)
public
returns (bool);
external
returns (bool);
function transferFrom(address _from, address _to, uint256 _value)
function transferFrom(address _from, address _to, uint256 _value)
public
returns (bool);
external
returns (bool);
event Transfer(
event Transfer(
address indexed from,
address indexed from,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment