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
Support ListNftApproveAll:
Because some account don't know that it's delegated to approve all token of other account
Input:
message NftTokenApproveAllQuery{ bytes owner_address = 1; }
Ouput:
message NftTokenApproveAllResult{ bytes owner_address = 1; repeated NftAccountTokenRelation approve_list= 2; } //use NftAccountTokenRelation but should keep this fields message NftAccountTokenRelation{ bytes owner = 1; //owner account int64 total = 4; //total token delegated }
The text was updated successfully, but these errors were encountered:
AbrahamNguyen26
No branches or pull requests
Support ListNftApproveAll:
Because some account don't know that it's delegated to approve all token of other account
Input:
Ouput:
The text was updated successfully, but these errors were encountered: