Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Security Tokens and Stablecoins Quick Start Guide

You're reading from   Security Tokens and Stablecoins Quick Start Guide Learn how to build STO and stablecoin decentralized applications

Arrow left icon
Product type Paperback
Published in Apr 2019
Publisher Packt
ISBN-13 9781838551063
Length 234 pages
Edition 1st Edition
Languages
Concepts
Arrow right icon
Authors (3):
Arrow left icon
Weimin Sun Weimin Sun
Author Profile Icon Weimin Sun
Weimin Sun
Xun (Brian) Wu Xun (Brian) Wu
Author Profile Icon Xun (Brian) Wu
Xun (Brian) Wu
Angela Kwok Angela Kwok
Author Profile Icon Angela Kwok
Angela Kwok
Arrow right icon
View More author details
Toc

ERC-1404

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...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at R$50/month. Cancel anytime