@cryptorubic/web3 1.1.0-alpha-stellar.47 → 1.1.0-alpha-stellar.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptorubic/web3",
3
- "version": "1.1.0-alpha-stellar.47",
3
+ "version": "1.1.0-alpha-stellar.48",
4
4
  "dependencies": {
5
5
  "@ethersproject/bignumber": "^5.8.0",
6
6
  "@mysten/sui": "^1.24.0",
@@ -4,8 +4,10 @@ export declare const TX_STATUS: {
4
4
  readonly FAIL: "FAIL";
5
5
  readonly FALLBACK: "FALLBACK";
6
6
  readonly REVERT: "REVERT";
7
+ readonly REVERTED: "REVERTED";
7
8
  readonly UNKNOWN: "UNKNOWN";
8
9
  readonly READY_TO_CLAIM: "READY_TO_CLAIM";
9
10
  readonly WAITING_FOR_TRUSTLINE: "WAITING_FOR_TRUSTLINE";
11
+ readonly WAITING_FOR_REFUND_TRUSTLINE: "WAITING_FOR_REFUND_TRUSTLINE";
10
12
  };
11
13
  export type TxStatus = (typeof TX_STATUS)[keyof typeof TX_STATUS];
@@ -7,7 +7,9 @@ exports.TX_STATUS = {
7
7
  FAIL: 'FAIL',
8
8
  FALLBACK: 'FALLBACK',
9
9
  REVERT: 'REVERT',
10
+ REVERTED: 'REVERTED',
10
11
  UNKNOWN: 'UNKNOWN',
11
12
  READY_TO_CLAIM: 'READY_TO_CLAIM',
12
- WAITING_FOR_TRUSTLINE: 'WAITING_FOR_TRUSTLINE'
13
+ WAITING_FOR_TRUSTLINE: 'WAITING_FOR_TRUSTLINE',
14
+ WAITING_FOR_REFUND_TRUSTLINE: 'WAITING_FOR_REFUND_TRUSTLINE'
13
15
  };