monerium / smart-contracts

ERC20 compatible e-money deployed on Ethereum
https://monerium.com
Apache License 2.0
36 stars 21 forks source link

Separate ERC677 methods from ERC20 methods #7

Closed gislik closed 6 years ago

gislik commented 6 years ago

I’m considering adding transfer(address, uint, bytes) from ERC223 as it may become a widely adopted standard in the future and it does not harm to have it in our contracts as an alias for transferAndCall(address, uint, bytes).

gislik commented 6 years ago

Truffle does not support overloading of contract methods.

https://github.com/trufflesuite/truffle/issues/569

Postponing ERC223 as we may be able to add it later.