Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
743b54b
rename ERC20 to IERC20
frangio Aug 28, 2018
74ed563
move ERC20.sol to IERC20.sol
frangio Aug 28, 2018
e2cd31e
rename StandardToken to ERC20
frangio Aug 28, 2018
9891e06
rename StandardTokenMock to ERC20Mock
frangio Aug 29, 2018
9ff5308
move StandardToken.sol to ERC20.sol, likewise test and mock files
frangio Aug 29, 2018
0da0906
rename MintableToken to ERC20Mintable
frangio Aug 29, 2018
f0b10ed
move MintableToken.sol to ERC20Mintable.sol, likewise test and mock f…
frangio Aug 29, 2018
05a3484
rename BurnableToken to ERC20Burnable
frangio Aug 29, 2018
06cc72c
move BurnableToken.sol to ERC20Burnable.sol, likewise for related files
frangio Aug 29, 2018
d422ca0
rename CappedToken to ERC20Capped
frangio Aug 29, 2018
1b176ee
move CappedToken.sol to ERC20Capped.sol, likewise for related files
frangio Aug 29, 2018
b537307
rename PausableToken to ERC20Pausable
frangio Aug 29, 2018
890574c
move PausableToken.sol to ERC20Pausable.sol, likewise for related files
frangio Aug 29, 2018
f76cfae
rename DetailedERC20 to ERC20Detailed
frangio Aug 29, 2018
50c43fe
move DetailedERC20.sol to ERC20Detailed.sol, likewise for related files
frangio Aug 29, 2018
7f4cb7d
rename ERC721 to IERC721, and likewise for other related interfaces
frangio Aug 29, 2018
1e79c63
move ERC721.sol to IERC721.sol, likewise for other 721 interfaces
frangio Aug 29, 2018
af192a7
rename ERC721Token to ERC721
frangio Aug 29, 2018
47f542a
move ERC721Token.sol to ERC721.sol, likewise for related files
frangio Aug 29, 2018
276bfb9
rename ERC721BasicToken to ERC721Basic
frangio Aug 29, 2018
463a01b
move ERC721BasicToken.sol to ERC721Basic.sol, likewise for related files
frangio Aug 29, 2018
05d9ae8
rename ERC721PausableToken to ERC721Pausable
frangio Aug 29, 2018
6795ac4
move ERC721PausableToken.sol to ERC721Pausable.sol
frangio Aug 29, 2018
ef3bffe
rename ERC165 to IERC165
frangio Aug 29, 2018
81ea4a8
move ERC165.sol to IERC165.sol
frangio Aug 29, 2018
2cc6332
amend comment that ERC20 is based on FirstBlood
frangio Aug 29, 2018
bb65756
fix comments mentioning IERC721Receiver
frangio Aug 30, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rename ERC165 to IERC165
  • Loading branch information
frangio committed Aug 29, 2018
commit ef3bffe35c070177f3fd6e86ff13ae2238707716
4 changes: 2 additions & 2 deletions contracts/introspection/ERC165.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ pragma solidity ^0.4.24;


/**
* @title ERC165
* @title IERC165
* @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
*/
interface ERC165 {
interface IERC165 {

/**
* @notice Query if a contract implements an interface
Expand Down
2 changes: 1 addition & 1 deletion contracts/introspection/SupportsInterfaceWithLookup.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "./ERC165.sol";
* @author Matt Condon (@shrugs)
* @dev Implements ERC165 using a lookup table.
*/
contract SupportsInterfaceWithLookup is ERC165 {
contract SupportsInterfaceWithLookup is IERC165 {

bytes4 public constant InterfaceId_ERC165 = 0x01ffc9a7;
/**
Expand Down
2 changes: 1 addition & 1 deletion contracts/mocks/ERC165/ERC165InterfacesSupported.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import "../../introspection/ERC165.sol";
* therefore, because this contract is staticcall'd we need to not emit events (which is how solidity-coverage works)
* solidity-coverage ignores the /mocks folder, so we duplicate its implementation here to avoid instrumenting it
*/
contract SupportsInterfaceWithLookupMock is ERC165 {
contract SupportsInterfaceWithLookupMock is IERC165 {

bytes4 public constant InterfaceId_ERC165 = 0x01ffc9a7;
/**
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC721/IERC721Basic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "../../introspection/ERC165.sol";
* @title ERC721 Non-Fungible Token Standard basic interface
* @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
*/
contract IERC721Basic is ERC165 {
contract IERC721Basic is IERC165 {

bytes4 internal constant InterfaceId_ERC721 = 0x80ac58cd;
/*
Expand Down