ERC777
ERC777 copied to clipboard
New Standard for Ethereum Token
Remove truffle in favor of plain solc & web3
This repository has a number of references to EIP 820, when I believe it should be referencing 1820 everywhere.
hi 777 gets roughly 27 static warnings in remix. you can remove 12 of them by defining a boundry on bytes (at line 252 of this contract: https://gist.github.com/lrgeoemtry/df096412147a1859bae07cc31f51b267) of "bytes32"...
The contracts cannot currently compile when using a derived contract with pragma solidity ^0.4.24 because of the version difference and lack of the ^ in a few base contracts. I...
The Open Zeppelin team would like to include standard implementations of ERC-777 and ERC-820 in our repository [https://github.com/OpenZeppelin/openzeppelin-solidity/](https://github.com/OpenZeppelin/openzeppelin-solidity/). We are seeking permission to release a modified version of the implementation...
There is a discrepancy between the standard and the reference implementation regarding the `burn` and `operatorBurn` functions: The current standard (https://github.com/ethereum/EIPs/blob/b41669ede219b9599a6a1c637e578b8a444ad6b1/EIPS/eip-777.md) says: > The data field of the tokensToSend hook...
All tests are located in a single file ([test/ReferenceToken-test.js](https://github.com/jacquesd/eip777/blob/master/test/ReferenceToken-test.js)) which is growing. It is becoming hard to read each test case. The tests should be split in different files, for...