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

Sync FCOTMR deprecation to main #93

Merged
merged 52 commits into from
Sep 21, 2021
Merged
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
4ad6c5b
Reference node properties controlling HTS behavior
Feb 2, 2021
067c02d
Again clarify use of master
Feb 2, 2021
5670980
Merge branch 'master' into develop
Feb 2, 2021
a97347c
Merge branch 'master' into develop
Feb 3, 2021
7acf821
Merge branch 'main' into develop
Feb 3, 2021
8d312af
Update from head of schedule-develop in hashgraph/hedera-services (#2)
Feb 3, 2021
8f18fb4
Standardize memos for non-schedule entities (#3)
Feb 5, 2021
fbd4ded
Port schedule txn comments (#5)
Feb 5, 2021
9f6ec54
Apply the same changes to hedera-protobufs repo. (#4)
Feb 5, 2021
304e83e
Separate messages used for balances proto under hedera/streams (#6)
Feb 9, 2021
e45651c
Include decimals in queries of token/account balances and relationshi…
Feb 10, 2021
b0f8d06
Include Leemon's edits from Services issue #974 (#10)
Feb 23, 2021
735079d
Add scheduled transaction id to TransactionReceipt + ScheduleGetInfo …
Mar 4, 2021
e9c208b
00017 d hcs message size (#19)
ljianghedera Mar 19, 2021
c6ec4a0
Update protobufs to satisfy revised scheduled txns spec (#15)
Mar 19, 2021
8a6cbe3
Add ThrottleDefinitions types (#23)
Apr 5, 2021
6979008
Merge remote-tracking branch 'origin/main' into develop
Apr 5, 2021
9aec4ba
Emphasize only ed25519 keys are supported (#26)
Apr 7, 2021
662f261
Revise address book types to 0.13.0 standard (#27)
Apr 9, 2021
1d1f6b6
Add full semver meta to SemanticVersion (#33)
May 7, 2021
d86d76d
Add ACCOUNT_EXPIRED_AND_PENDING_REMOVAL response code (#35)
May 14, 2021
62d46ca
Feature: NFT Tokens (#37)
failfmi Jun 10, 2021
686108f
Sync develop with main (#38)
Jun 10, 2021
37f38c0
Merge branch 'main' into develop
Jun 10, 2021
b1fcf9e
HIP 18 (#42)
anighanta Jun 24, 2021
b430338
re-add deprecated fields to Transaction (#29)
mehcode Jun 24, 2021
88b8901
HIP-18 add missing response code (#46)
Neeharika-Sompalli Jun 30, 2021
e08721a
Rename TokenGetAccountNftInfo + add new Response code (#44)
Daniel-K-Ivanov Jun 30, 2021
8a01c0a
Add TokenFeeScheduleUpdate op to allow switch back to fee_schedule_ke…
Jul 1, 2021
71ecd5e
Add more responseCodes (#49)
anighanta Jul 6, 2021
5ce1796
Include three response codes for v0.16.0-alpha.1 tag (#52)
Jul 8, 2021
af7be8a
Response codes for previewnet bugs (#54)
Jul 12, 2021
002c9aa
fixed typo (#55)
SimiHunjan Jul 13, 2021
f2c2057
Nfts: Documentation Update (#53)
georgiyazovaliiski Jul 13, 2021
71ae96e
Add more response codes esp for HIP-17 and HIP-18 (#57)
Jul 16, 2021
cc1dcbc
Merge branch 'main' into develop
Jul 20, 2021
11dfc8a
Merge branch 'main' into develop
Jul 28, 2021
384383f
064 d freeze txn use instant (#67)
ljianghedera Aug 6, 2021
a97b947
Response code for NFT serial no limit (#63)
Aug 8, 2021
e275ac8
Add effective fee payers to transaction record (#72)
Aug 12, 2021
3437c5c
Add RoyaltyFee custom fee type (#71)
Aug 12, 2021
bff5b5e
Add `net_of_transfers` to `FractionalFee` message (#70)
ljianghedera Aug 12, 2021
29e48c0
feat: add `TransactionList` type that is used by the SDKs (#76)
janaakhterov Aug 19, 2021
0954fab
Rename files to be lower_snake_case (#74)
janaakhterov Aug 19, 2021
3a02987
Max automatic token associations (#81)
anighanta Aug 19, 2021
03115a3
Add response code for Auto Association limit reached (#83)
anighanta Aug 23, 2021
4b2a8bf
Update comments to be consistent (#73)
janaakhterov Aug 26, 2021
a2b7b16
added a new response code for falure scenario where max assocaition l…
anighanta Aug 31, 2021
9a6801d
use int32 instead so unsigned conversion is not needed in Java (#87)
xin-hedera Sep 2, 2021
ab5757e
Add (dev-only) `NetworkService.getExecutionTime` query (#88)
Sep 14, 2021
485f492
Deprecate getAccountNftInfos and getTokenNftInfos (#92)
Sep 21, 2021
03f235c
Merge branch 'develop' into deprecate-fcotmr-queries
Sep 21, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
};
}