Skip to content

Commit

Permalink
Merge pull request #456 from multiversx/txstatus-interface
Browse files Browse the repository at this point in the history
Extend ITransactionStatus: add isSuccessful()
  • Loading branch information
andreibancioiu committed Jun 3, 2024
2 parents 5d47501 + 5741d96 commit 01dbe51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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-core",
"version": "13.2.0",
"version": "13.2.1",
"description": "MultiversX SDK for JavaScript and TypeScript",
"main": "out/index.js",
"types": "out/index.d.js",
Expand Down
2 changes: 2 additions & 0 deletions src/interfaceOfNetwork.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export interface ITransactionStatus {
isFailed(): boolean;
isInvalid(): boolean;
isExecuted(): boolean;
isSuccessful(): boolean;
valueOf(): string;
}

export interface ITransactionReceipt {
Expand Down

0 comments on commit 01dbe51

Please sign in to comment.