@msafe/sui3-sdk 1.0.19 → 1.0.20
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/dist/index.cjs +0 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +0 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/core/MSafeAccount.ts +2 -8
package/dist/index.cjs
CHANGED
|
@@ -1277,14 +1277,6 @@ var MSafeAccount = class _MSafeAccount {
|
|
|
1277
1277
|
throw new Error("Already rejected");
|
|
1278
1278
|
}
|
|
1279
1279
|
const rejectTxb = toSuiTransaction((0, import_sui3_utils4.buildRejectTxb)(this.address));
|
|
1280
|
-
rejectTxb.setGasPrice(input.gasPrice);
|
|
1281
|
-
await prepareGasFunding({
|
|
1282
|
-
tx: rejectTxb,
|
|
1283
|
-
suiClient: this.suiClient,
|
|
1284
|
-
owner: this.address,
|
|
1285
|
-
gasPrice: input.gasPrice,
|
|
1286
|
-
gasBudget: input.gasBudget
|
|
1287
|
-
});
|
|
1288
1280
|
const digest = await rejectTxb.getDigest({ client: this.suiClient });
|
|
1289
1281
|
const payload = await rejectTxb.build({ client: this.suiClient });
|
|
1290
1282
|
const signature = await this.wallet.signTransactionBlock({ transactionBlock: payload });
|