@spicenet-io/spiceflow-ui 1.9.31 → 1.9.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.cjs.js CHANGED
@@ -5264,13 +5264,14 @@ const DepositWidget = ({
5264
5264
  const authorizations = [];
5265
5265
  for (const chainId of uniqueChainIds) {
5266
5266
  const client = getClientForChain(chainId);
5267
- const delegateContract = getDelegateContractAddress(chainId);
5267
+ getDelegateContractAddress(chainId);
5268
5268
  const nonce = await spiceflowCoreTest.getAccountNonce(
5269
5269
  address,
5270
5270
  client
5271
5271
  );
5272
5272
  const auth = await actions.signAuthorization({
5273
- contractAddress: delegateContract,
5273
+ contractAddress: address,
5274
+ // smart account address
5274
5275
  chainId,
5275
5276
  nonce: Number(nonce)
5276
5277
  });
package/dist/index.js CHANGED
@@ -5262,13 +5262,14 @@ const DepositWidget = ({
5262
5262
  const authorizations = [];
5263
5263
  for (const chainId of uniqueChainIds) {
5264
5264
  const client = getClientForChain(chainId);
5265
- const delegateContract = getDelegateContractAddress(chainId);
5265
+ getDelegateContractAddress(chainId);
5266
5266
  const nonce = await getAccountNonce(
5267
5267
  address,
5268
5268
  client
5269
5269
  );
5270
5270
  const auth = await actions.signAuthorization({
5271
- contractAddress: delegateContract,
5271
+ contractAddress: address,
5272
+ // smart account address
5272
5273
  chainId,
5273
5274
  nonce: Number(nonce)
5274
5275
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spicenet-io/spiceflow-ui",
3
- "version": "1.9.31",
3
+ "version": "1.9.32",
4
4
  "description": "Spiceflow UI SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",