diff --git a/CHANGELOG.md b/CHANGELOG.md index ed5b0c870..975399a72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [[5.6.12](https://github.com/multiversx/mx-sdk-dapp/pull/1721)] - 2026-02-04 + +- [TS definitions missing. Republish](https://github.com/multiversx/mx-sdk-dapp/pull/1720) + +## [[5.6.11](https://github.com/multiversx/mx-sdk-dapp/pull/1720)] - 2026-02-04 + +- [Update TransactionType interface to include data and receiver](https://github.com/multiversx/mx-sdk-dapp/pull/1720) + ## [[5.6.10](https://github.com/multiversx/mx-sdk-dapp/pull/1719)] - 2026-02-04 - [Update sdk-dapp-ui](https://github.com/multiversx/mx-sdk-dapp/pull/1717) diff --git a/package.json b/package.json index e5ee49b94..20d678e2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@multiversx/sdk-dapp", - "version": "5.6.10", + "version": "5.6.12", "description": "A library to hold the main logic for a dapp on the MultiversX blockchain", "author": "MultiversX", "license": "MIT", diff --git a/src/types/transactions.types.ts b/src/types/transactions.types.ts index 579d0eb6d..87521beb2 100644 --- a/src/types/transactions.types.ts +++ b/src/types/transactions.types.ts @@ -8,6 +8,8 @@ export interface SignedTransactionType extends IPlainTransactionObject { status?: ServerTransactionType['status']; results?: ResultType[]; inTransit?: boolean; + data?: string; + receiver: string; } export interface MultiSignTransactionType {