diff --git a/contracts/Factory.sol b/contracts/Factory.sol index 47b928f21..e0391d425 100644 --- a/contracts/Factory.sol +++ b/contracts/Factory.sol @@ -115,4 +115,12 @@ contract Factory is Deployer, Converter { currentTokenCount += 1; } + + function getCurrentTokenIndex() + external + view + returns (uint256) + { + return currentTokenCount; + } } \ No newline at end of file