@bluefin-exchange/pro-sdk 2.0.0-beta.2 → 2.0.0

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.
Files changed (2) hide show
  1. package/dist/src/sdk.js +1 -0
  2. package/package.json +1 -1
package/dist/src/sdk.js CHANGED
@@ -789,6 +789,7 @@ export class BluefinProSdk {
789
789
  * */
790
790
  buildGaslessTxPayloadBytes = async (txb) => {
791
791
  try {
792
+ txb.setSenderIfNotSet(this.currentAccountAddress ?? this.bfSigner.getAddress());
792
793
  const { SuiBlocks } = await loadLibrarySuiRoot();
793
794
  return await SuiBlocks.buildGaslessTxPayloadBytes(txb, this.suiClient);
794
795
  }
package/package.json CHANGED
@@ -56,5 +56,5 @@
56
56
  "prepare": "npm run build"
57
57
  },
58
58
  "types": "./dist/index.d.ts",
59
- "version": "2.0.0-beta.2"
59
+ "version": "2.0.0"
60
60
  }