@magmaprotocol/magma-clmm-sdk 0.5.31 → 0.5.32

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.mjs CHANGED
@@ -7296,6 +7296,12 @@ var LockModule = class {
7296
7296
  }
7297
7297
  return TransactionUtil.buildClaimAndLockRebases(this.sdk, params);
7298
7298
  }
7299
+ async burnLockTransactionPayload(lockId) {
7300
+ if (this._sdk.senderAddress.length === 0) {
7301
+ throw Error("this config sdk senderAddress is empty");
7302
+ }
7303
+ return TransactionUtil.buildBurnLockTransaction(this.sdk, lockId);
7304
+ }
7299
7305
  async pokePayload(params) {
7300
7306
  if (this._sdk.senderAddress.length === 0) {
7301
7307
  throw Error("this config sdk senderAddress is empty");