The ERC-1404 token standard is proposed by Ron Gierlach (@rongierlach), James Poole (@pooleja), Mason Borda (@masonicGIT), and so on. It is an EIP subtype. The EIP title is a simple restricted token standard. The current EIP status is draft.
ERC-1404 is a self-regulatory token, a simple restricted token standard. It extends the ERC20 interface and adds some restrictions on a token to help enforce regulatory compliance as follows:
contract ERC20 { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public...