Skip to content

Commit

Permalink
add #706 new function declartion in the ISTR
Browse files Browse the repository at this point in the history
  • Loading branch information
SatyamSB committed Jun 13, 2019
1 parent 1182699 commit 520e20f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions contracts/interfaces/ISecurityTokenRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,15 @@ interface ISecurityTokenRegistry {
*/
function registerTicker(address _owner, string calldata _ticker, string calldata _tokenName) external;

/**
* @notice Registers the token ticker to the selected owner
* @notice Once the token ticker is registered to its owner then no other issuer can claim
* @notice its ownership. If the ticker expires and its issuer hasn't used it, then someone else can take it.
* @param _owner is address of the owner of the token
* @param _ticker is unique token ticker
*/
function registerNewTicker(address _owner, string calldata _ticker) external;

/**
* @notice Check that Security Token is registered
* @param _securityToken Address of the Scurity token
Expand Down

0 comments on commit 520e20f

Please sign in to comment.