Skip to content

debo24/BaseSecurityToken

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ERC-1462: BaseSecurityToken

An extension to ERC-20 standard token that provides compliance with securities regulations and legal enforceability.

interface BaseSecurityToken /* is ERC-20 */ {
    // Checking functions
    function checkTransferAllowed (address from, address to, uint256 value) public view returns (byte);
    function checkTransferFromAllowed (address from, address to, uint256 value) public view returns (byte);
    function checkMintAllowed (address to, uint256 value) public view returns (byte);
    function checkBurnAllowed (address from, uint256 value) public view returns (byte);

    // Documentation functions
    function attachDocument(bytes32 _name, string _uri, bytes32 _contentHash) external;
    function lookupDocument(bytes32 _name) external view returns (string, bytes32);
}

Join the discussion!

Reference Implementation

Please refer to IBaseSecurityToken.sol and BaseSecurityToken.sol.

$ make lint
solhint "contracts/**/*.sol"

solium -d contracts/

No issues found.

License

For erc-1462.md: Copyright and related rights waived via CC0.

If not stated otherwise, all sources are licensed under Microsoft Reference Source License (MS-RSL) that can be found in the LICENSE file.

About

Base Security Token EIP, reference implementation and examples.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Makefile 100.0%