We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
events have indexed keyword in BasicIssuanceModule before _issuer and _to parameter:
event SetTokenIssued( address indexed _setToken, address indexed _issuer, address indexed _to, address _hookContract, uint256 _quantity ); event SetTokenRedeemed( address indexed _setToken, address indexed _redeemer, address indexed _to, uint256 _quantity );
events have no indexed keyword in CustomOracleNavIssuanceModule and NavIssuanceModule before _issuer and _to parameter:
event SetTokenNAVIssued( ISetToken indexed _setToken, address _issuer, address _to, address _reserveAsset, address _hookContract, uint256 _setTokenQuantity, uint256 _managerFee, uint256 _premium ); event SetTokenNAVRedeemed( ISetToken indexed _setToken, address _redeemer, address _to, address _reserveAsset, address _hookContract, uint256 _setTokenQuantity, uint256 _managerFee, uint256 _premium );
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
events have indexed keyword in BasicIssuanceModule before _issuer and _to parameter:
events have no indexed keyword in CustomOracleNavIssuanceModule and NavIssuanceModule before _issuer and _to parameter:
The text was updated successfully, but these errors were encountered: