Skip to content

Commit 520e20f

Browse files
committed
add #706 new function declartion in the ISTR
1 parent 1182699 commit 520e20f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

contracts/interfaces/ISecurityTokenRegistry.sol

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,15 @@ interface ISecurityTokenRegistry {
158158
*/
159159
function registerTicker(address _owner, string calldata _ticker, string calldata _tokenName) external;
160160

161+
/**
162+
* @notice Registers the token ticker to the selected owner
163+
* @notice Once the token ticker is registered to its owner then no other issuer can claim
164+
* @notice its ownership. If the ticker expires and its issuer hasn't used it, then someone else can take it.
165+
* @param _owner is address of the owner of the token
166+
* @param _ticker is unique token ticker
167+
*/
168+
function registerNewTicker(address _owner, string calldata _ticker) external;
169+
161170
/**
162171
* @notice Check that Security Token is registered
163172
* @param _securityToken Address of the Scurity token

0 commit comments

Comments
 (0)