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
Implement the Token Reject System Contract described in #15435
Included E2E test cases: Positive:
rejectTokens
rejectTokenFT
rejectTokenNFTs
Negative:
rejectTokensNFT
The text was updated successfully, but these errors were encountered:
stoyanov-st
Successfully merging a pull request may close this issue.
Implement the Token Reject System Contract described in #15435
Included E2E test cases:
Positive:
rejectTokens
function rejects fungible token for an account.rejectTokens
function rejects nft token for an account.rejectTokens
function rejects multiple tokens for an account.rejectTokenFT
function rejects tokens for a given account.rejectTokenNFTs
function rejects tokens for a given account and serial number.rejectTokenNFTs
function rejects 10 nft serials for a given account.Negative:
rejectTokens
function fails when the sender does not have any associated tokens.rejectTokens
function fails when the provided fungible token is invalid.rejectTokens
function fails when the provided nft is invalid.rejectTokens
function fails when 11 or more tokens are provided.rejectTokenFT
function fails when the sender does not have any tokens.rejectTokensNFT
function fails when the sender does not have any tokens.rejectTokensNFT
function fails when 11 or more serials are provided.The text was updated successfully, but these errors were encountered: