---
title: "Changes to Hedera API (HAPI) for v0.8.0 and v0.9.0"
id: "16160"
type: "post"
slug: "changes-to-hedera-api-hapi-for-v0-8-0-and-v0-9-0"
published_at: "2020-09-24T14:30:00+00:00"
modified_at: "2025-12-10T04:55:25+00:00"
url: "https://hedera.com/blog/changes-to-hedera-api-hapi-for-v0-8-0-and-v0-9-0/"
markdown_url: "https://hedera.com/blog/changes-to-hedera-api-hapi-for-v0-8-0-and-v0-9-0.md"
excerpt: "If you’re utilizing the Hedera API (HAPI) to build applications on the testnet or mainnet, you’ll need to review deprecations and additions coming in v0.8.0 and v0.9.0 of the Hedera Services Codebase."
taxonomy_category:
  - "Uncategorized"
taxonomy_post_tag:
  - "technical"
---

[Skip to content](#content)
blog

# Changes to Hedera API (HAPI) for v0.8.0 and v0.9.0

September 24, 2020

![Simi Hunjan](/wp-content/uploads/2025/12/HH-logo-Black.jpg)

Simi Hunjan

The Hedera API (HAPI) is always evolving based on user feedback, usability testing, and necessary changes in functionality directed and approved by the Hedera Governing Council. Sometimes these changes require the deprecation or addition of functionalities.

If you’re utilizing the Hedera API (HAPI) to build applications on the testnet or mainnet, you’ll need to review the deprecations and additions coming in v0.8.0 and v0.9.0 of the Hedera Services Codebase. If you’re building on Hedera using any of the official Hedera SDKs, no action is needed at this time.

****Testnet******v0.9.0 estimated release****:**November 19, 2020  
**Mainnet****v0.9.0 estimated release****:**December 3, 2020

For technical community and Hedera development support, please join the Hedera Discord at [https://hedera.com/discord](https://hedera.com/discord)

#### Deprecate threshold records (v0.8.0)

**Mainnet v0.8.0 estimated release**: October 1, 2020

When creating an account, you can optionally generate records for receiving or sending hbars that meet a certain threshold value. The option to generate these threshold records will be marked as deprecated in this release. The following protobufs will be affected:

- CryptoCreate.proto – sendRecordThreshold, receiveRecordThreshold

- CryptoGetInfo.proto – generateSendRecordThreshold, generateReceiveRecordThreshold

- CryptoUpdate.proto – sendRecordThresholdWrapper, receiveRecordThresholdWrapper

- ResponseCode.proto – INVALID_RECEIVE_RECORD_THRESHOLD, INVALID_SEND_RECORD_THRESHOLD

You can view the updated protobufs [here](https://github.com/hashgraph/hedera-protobuf/tree/hedera-protobuf-java-api-0.8.0-rc1)
 and related issue [here](https://github.com/hashgraph/hedera-services/issues/506)
. These fields will be marked deprecated for at least 6 months before they’re completely removed.

#### [ACTION REQUIRED] Deprecated fields removed from transaction proto (v0.9.0)

**Testnet****v0.9.0 estimated release**: November 19, 2020   
**Mainnet****v0.9.0 estimated release**: December 3, 2020

For the upcoming v0.9.0 release, the Transaction proto will have the following deprecated fields removed. They have been marked as deprecated:

![code window background](https://hedera.com/wp-content/uploads/2025/12/CodeSnippetBackground-scaled.jpg)

x

x

```
TransactionBody body = 1SignatureList sigs = 2
```

The ~~signedTransactionBytes~~ field will be added. If the appropriate updates are not made, transactions will fail with~~INVALID_TRANSACTION_BODY~~ or ~~INVALID~~~~_SIGNATURE~~response from the network. You can view the updated transaction proto [here](https://github.com/hashgraph/hedera-services/blob/00432-D-new-transaction-proto/hapi-proto/src/main/proto/Transaction.proto)
 and issue [here](https://github.com/hashgraph/hedera-services/issues/539)
.

#### New fields in transaction proto (v0.9.0)

**Testnet****v0.9.0 estimated release**: November 19, 2020   
**Mainnet****v0.9.0 estimated release**: December 3, 2020

Release v0.9.0 will be introducing a new field to transaction proto. The addition of the ~~signedTransactionBytes~~ field to the Transaction protobuf message is designed to ensure that the hash of the entire transaction (including signatures) as calculated by the client and the network is guaranteed to be identical. The new field stores the entire signed transaction including signatures as an array of bytes.

![code window background](https://hedera.com/wp-content/uploads/2025/12/CodeSnippetBackground-scaled.jpg)

x

x

```
signedTransactionBytes = 5
```

This change is a backwards compatible change, so clients that currently use the ~~bodyBytes~~ & ~~sigMap~~ to submit transactions can continue to do so, with the node parsing and hashing the transaction as it currently does.

A transaction can only contain ~~signedTransactionBytes~~ or contain ~~bodyBytes~~ & ~~sigMap~~. A transaction that contains any other combination of fields will be rejected with an ~~INVALID_TRANSACTION~~ response from the network.

You can view the updated transaction proto [here](https://github.com/hashgraph/hedera-services/blob/00432-D-new-transaction-proto/hapi-proto/src/main/proto/Transaction.proto)
.

![code window background](https://hedera.com/wp-content/uploads/2025/12/CodeSnippetBackground-scaled.jpg)

x

x

```
message Transaction {
bytes signedTransactionBytes = 5; // SignedTransaction serialized into bytes 
bytes bodyBytes = 4 [deprecated = true]; // TransactionBody serialized into bytes, which needs to be signed 
SignatureMap sigMap = 3 [deprecated = true]; // The signatures on the body with the new format, to authorize the transaction 
}
```

[Back to Blog](/blog)

discover

See more articles

[View All](/blog)

![Image](https://hedera.com/wp-content/uploads/2026/08/Regulation_Blog-1024x576.png)

August 5, 2026

### Details decide. What digital asset policy did in July 2026

Halfway through 2026, the regulatory picture is coming into focus. Hedera Chief Policy Officer Nilmini Rubin and VP Global Policy Isadora Arredondo break down what moved in June across the

[Read More](https://hedera.com/blog/details-decide-what-digital-asset-policy-did-in-july-2026/)

![Deploy Multichain Dapps](https://hedera.com/wp-content/uploads/2026/07/HH600301_DeployMultichainDapps_Final-1024x576.png)

July 17, 2026

### Deploy Multichain Dapps on Hedera in 60 Seconds with scaffold-hbar

Deploying multichain dapps on Hedera has never been easier! With just one command, you can spin up a fully functional dapp using Next.js, Hardhat or Foundry, and AI agent context…

[Read More](https://hedera.com/blog/deploy-multichain-dapps-on-hedera-in-60-seconds-with-scaffold-hbar/)

![Regulation is finding its form](https://hedera.com/wp-content/uploads/2026/07/Regulation_Blog-1-1024x576.png)

July 13, 2026

### Regulation is finding its form in summer 2026

Halfway through 2026, the regulatory picture is coming into focus. Hedera Chief Policy Officer Nilmini Rubin and VP Global Policy Isadora Arredondo break down what moved in June across the

[Read More](https://hedera.com/blog/regulation-is-finding-its-form-in-summer-2026/)

## Ready to get started?

Discover why Hedera is the trusted institutional-grade network powering the new digital economy.

[Start Building](/start-building)

[Contact](/contact)

We use cookies to deliver the best experience on our website and to analyze traffic. By continuing to use this site, you consent to our cookie policy.

Review our [Privacy Policy](/privacy)
 to understand how Hedera collects and uses information.

Accept All CookiesAccept Necessary Cookies
