@msafe/sui3-sdk 0.0.47 → 0.0.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": "@msafe/sui3-sdk",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
4
4
  "description": "SDK for MSafe SUI V3",
5
5
  "type": "module",
6
6
  "module": "./dist/index.js",
@@ -28,6 +28,7 @@
28
28
  "json-bigint": "^1.0.0"
29
29
  },
30
30
  "devDependencies": {
31
+ "@msafe/mpay-sdk-sui": "^1.0.25",
31
32
  "@mysten/sui.js": "^0.50.1",
32
33
  "@types/jest": "^29.5.8",
33
34
  "@types/json-bigint": "^1.0.4",
@@ -56,6 +57,7 @@
56
57
  },
57
58
  "scripts": {
58
59
  "test": "jest",
60
+ "test:e2e": "jest test/unit/core/msafe-e2e.test.ts",
59
61
  "unit": "TEST_ENV=UNIT jest",
60
62
  "clean": "rm -rf ./dist",
61
63
  "lint": "eslint . --ext .ts,.tsx",
@@ -385,7 +385,7 @@ export class MSafeAccount {
385
385
  return this.suiClient.executeTransactionBlock({
386
386
  transactionBlock: HexToUint8Array(payload),
387
387
  signature: multiSignature,
388
- options: { showEffects: true },
388
+ options: { showEffects: true, showEvents: true },
389
389
  });
390
390
  }
391
391
 
@@ -26,7 +26,6 @@ export interface MSafeConfigOptions {
26
26
  };
27
27
  }
28
28
 
29
- // export const TESTNET_RPC_URL = 'https://sui-testnet.blockvision.org/v1/2Sgk89ivT64MnKdcGzjmyjY2ndD';
30
29
  export const TESTNET_RPC_URL = 'https://fullnode.testnet.sui.io';
31
30
  export const MAINNET_RPC_URL = 'https://fullnode.mainnet.sui.io';
32
31