Skip to content
Merged

5.6.12 #1720

Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 2 additions & 0 deletions src/types/transactions.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ export interface SignedTransactionType extends IPlainTransactionObject {
status?: ServerTransactionType['status'];
results?: ResultType[];
inTransit?: boolean;
data?: string;
receiver: string;
}

export interface MultiSignTransactionType {
Expand Down