@credenza3/contracts-lib-sui 0.2.8 → 0.2.9
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/cjs/client/index.cjs +1 -1
- package/dist/cjs/client/index.cjs.map +2 -2
- package/dist/cjs/signer/CredenzaSuiSigner.d.ts +2 -1
- package/dist/cjs/signer/index.cjs +15 -2
- package/dist/cjs/signer/index.cjs.map +2 -2
- package/dist/esm/client/index.mjs +1 -1
- package/dist/esm/client/index.mjs.map +2 -2
- package/dist/esm/signer/CredenzaSuiSigner.d.ts +2 -1
- package/dist/esm/signer/index.mjs +15 -2
- package/dist/esm/signer/index.mjs.map +2 -2
- package/dist/umd/client/index.js +1 -1
- package/dist/umd/client/index.js.map +2 -2
- package/dist/umd/signer/index.js +1 -1
- package/dist/umd/signer/index.js.map +2 -2
- package/package.json +1 -1
|
@@ -9188,7 +9188,7 @@ var CredenzaSuiClient = class {
|
|
|
9188
9188
|
}
|
|
9189
9189
|
tx.setSenderIfNotSet(this.options.signer.toSuiAddress());
|
|
9190
9190
|
if ("getGasOwner" in this.options.signer) {
|
|
9191
|
-
tx.setGasOwner(this.options.signer.getGasOwner());
|
|
9191
|
+
tx.setGasOwner(await this.options.signer.getGasOwner());
|
|
9192
9192
|
}
|
|
9193
9193
|
const txBytes = await tx.build({ client: this.suiGrpcClient });
|
|
9194
9194
|
return await this.options.signer.signTransaction(txBytes);
|