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

Update README, mark FCOTMR queries permanently disabled #162

Open
wants to merge 1 commit into
base: main
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
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ from the _*.proto_ files in this repository:
# Overview of services

There are five primary service families, which inter-operate on entities
controlled by one (or more) Ed25519 keypairs:
controlled by one (or more) Ed25519 or ECDSA(secp256k1) keypairs:
1. The [cryptocurrency service](services/CryptoService.proto),
for cryptocurrency accounts with transfers denominated
in [hBar (ℏ)](https://help.hedera.com/hc/en-us/articles/360000674317-What-are-the-official-HBAR-cryptocurrency-denominations-).
in [hbar (ℏ)](https://help.hedera.com/hc/en-us/articles/360000674317-What-are-the-official-HBAR-cryptocurrency-denominations-).
2. The [consensus service](services/ConsensusService.proto), for
fast and unbiased ordering of opaque binary messages exchanged on
arbitrary topics.
Expand All @@ -33,11 +33,9 @@ privileged accounts to suspend network operations during a maintenance window.
It is important to note that most network services are gated by fees which
must be paid in ℏ from a cryptocurrency account. The payer authorizes a
fee by signing an appropriate transaction with a sufficient subset of the
Ed25519 key(s) associated to their account.
cryptographic key(s) associated to their account.

# Branching
This repository uses a simple branching model with only two distinguished branches:
1. The head of `main` points to the latest protobufs blessed for deployment to mainnet.
This repository uses a simple branching model with only one distinguished branch;
`main` points to the latest protobufs intended for the next deployment to mainnet.
Tags such as `v0.12.0` mark commits used for testnet and mainnet deploys.
2. The head of `develop` points to the latest candidate for the next tag in `main`.
Tags suffixed with `-alpha.x` mark commits used for previewnet deploys.
4 changes: 2 additions & 2 deletions services/token_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ service TokenService {
rpc getTokenInfo (Query) returns (Response);

/**
* (DEPRECATED) Gets info on NFTs N through M on the list of NFTs associated with a given account
* (PERMANENTLY DISABLED) Please use Mirror Node APIs to query for account NFT ownership
*/
rpc getAccountNftInfos (Query) returns (Response) {
option deprecated = true;
Expand All @@ -116,7 +116,7 @@ service TokenService {
rpc getTokenNftInfo (Query) returns (Response);

/**
* (DEPRECATED) Gets info on NFTs N through M on the list of NFTs associated with a given Token of type NON_FUNGIBLE
* (PERMANENTLY DISABLED) Please use Mirror Node APIs to query for NFT mint information
*/
rpc getTokenNftInfos (Query) returns (Response) {
option deprecated = true;
Expand Down