Skip to content
New issue

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

Remove incorrect comment #111

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion services/token_dissociate.proto
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ import "basic_types.proto";
* If the provided account is not found, the transaction will resolve to INVALID_ACCOUNT_ID.
* If the provided account has been deleted, the transaction will resolve to ACCOUNT_DELETED.
* If any of the provided tokens is not found, the transaction will resolve to INVALID_TOKEN_REF.
* If any of the provided tokens has been deleted, the transaction will resolve to TOKEN_WAS_DELETED.
* If an association between the provided account and any of the tokens does not exist, the
* transaction will resolve to TOKEN_NOT_ASSOCIATED_TO_ACCOUNT.
* If a token has not been deleted and has not expired, and the user has a nonzero balance, the
Expand Down
12 changes: 8 additions & 4 deletions services/token_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,21 @@ service TokenService {
rpc getTokenInfo (Query) returns (Response);

/**
* Gets info on NFTs N through M on the list of NFTs associated with a given account
* (DEPRECATED) Gets info on NFTs N through M on the list of NFTs associated with a given account
*/
rpc getAccountNftInfos (Query) returns (Response);
rpc getAccountNftInfos (Query) returns (Response) {
option deprecated = true;
};

/**
* Retrieves the metadata of an NFT by TokenID and serial number
*/
rpc getTokenNftInfo (Query) returns (Response);

/**
* Gets info on NFTs N through M on the list of NFTs associated with a given Token of type NON_FUNGIBLE
* (DEPRECATED) Gets info on NFTs N through M on the list of NFTs associated with a given Token of type NON_FUNGIBLE
*/
rpc getTokenNftInfos (Query) returns (Response);
rpc getTokenNftInfos (Query) returns (Response) {
option deprecated = true;
};
}