Skip to content

Commit ee25721

Browse files
Merge pull request #1720 from multiversx/development
5.6.12
2 parents e8a2e4d + 9abd106 commit ee25721

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [[5.6.12](https://github.com/multiversx/mx-sdk-dapp/pull/1721)] - 2026-02-04
11+
12+
- [TS definitions missing. Republish](https://github.com/multiversx/mx-sdk-dapp/pull/1720)
13+
14+
## [[5.6.11](https://github.com/multiversx/mx-sdk-dapp/pull/1720)] - 2026-02-04
15+
16+
- [Update TransactionType interface to include data and receiver](https://github.com/multiversx/mx-sdk-dapp/pull/1720)
17+
1018
## [[5.6.10](https://github.com/multiversx/mx-sdk-dapp/pull/1719)] - 2026-02-04
1119

1220
- [Update sdk-dapp-ui](https://github.com/multiversx/mx-sdk-dapp/pull/1717)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@multiversx/sdk-dapp",
3-
"version": "5.6.10",
3+
"version": "5.6.12",
44
"description": "A library to hold the main logic for a dapp on the MultiversX blockchain",
55
"author": "MultiversX",
66
"license": "MIT",

src/types/transactions.types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ export interface SignedTransactionType extends IPlainTransactionObject {
88
status?: ServerTransactionType['status'];
99
results?: ResultType[];
1010
inTransit?: boolean;
11+
data?: string;
12+
receiver: string;
1113
}
1214

1315
export interface MultiSignTransactionType {

0 commit comments

Comments
 (0)