@spicenet-io/spiceflow-ui 1.9.31 → 1.9.33

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
@@ -10,7 +10,7 @@ const Button = require('./Button-D2yFTia-.js');
10
10
  const reactDom = require('react-dom');
11
11
  const reactAuth = require('@privy-io/react-auth');
12
12
  const sdkReactCore = require('@dynamic-labs/sdk-react-core');
13
- const spiceflowCoreTest = require('spiceflow-core-test');
13
+ const spiceflowCore = require('@spicenet-io/spiceflow-core');
14
14
  const wagmi = require('wagmi');
15
15
  const authDynamic = require('./auth-dynamic.cjs.js');
16
16
  const authPrivy = require('./auth-privy.cjs.js');
@@ -3620,7 +3620,7 @@ const SwapWidget = ({
3620
3620
  for (const chainId of uniqueChainIds) {
3621
3621
  const client = getClientForChain(chainId);
3622
3622
  const delegateContract = getDelegateContractAddress(chainId);
3623
- const nonce = await spiceflowCoreTest.getAccountNonce(
3623
+ const nonce = await spiceflowCore.getAccountNonce(
3624
3624
  address,
3625
3625
  client
3626
3626
  );
@@ -3631,17 +3631,18 @@ const SwapWidget = ({
3631
3631
  });
3632
3632
  authorizations.push(auth);
3633
3633
  }
3634
- const hashedChainBatches = spiceflowCoreTest.hashChainBatches(allChainBatches);
3635
- const digest = spiceflowCoreTest.getAuthorizationHash(hashedChainBatches);
3634
+ const hashedChainBatches = spiceflowCore.hashChainBatches(allChainBatches);
3635
+ const exp = Math.floor(Date.now() / 1e3) + 60 * 10;
3636
+ const digest = spiceflowCore.getAuthorizationHash(0n, BigInt(exp), hashedChainBatches);
3636
3637
  const signatureResult = await actions.signMessage(digest);
3637
3638
  const signature = typeof signatureResult === "string" ? signatureResult : signatureResult.signature;
3638
3639
  if (!signature) throw new Error("Failed to sign intent authorization");
3639
3640
  const intent = {
3640
3641
  mode: "7702",
3641
- signatureType: "eip712",
3642
+ signatureType: "ecdsa",
3642
3643
  signature,
3643
3644
  nbf: 0,
3644
- exp: 0,
3645
+ exp,
3645
3646
  chainBatches: hashedChainBatches.map((b) => ({
3646
3647
  hash: b.hash,
3647
3648
  chainId: Number(b.chainId),
@@ -5264,20 +5265,22 @@ const DepositWidget = ({
5264
5265
  const authorizations = [];
5265
5266
  for (const chainId of uniqueChainIds) {
5266
5267
  const client = getClientForChain(chainId);
5267
- const delegateContract = getDelegateContractAddress(chainId);
5268
- const nonce = await spiceflowCoreTest.getAccountNonce(
5268
+ getDelegateContractAddress(chainId);
5269
+ const nonce = await spiceflowCore.getAccountNonce(
5269
5270
  address,
5270
5271
  client
5271
5272
  );
5272
5273
  const auth = await actions.signAuthorization({
5273
- contractAddress: delegateContract,
5274
+ contractAddress: address,
5275
+ // smart account address
5274
5276
  chainId,
5275
5277
  nonce: Number(nonce)
5276
5278
  });
5277
5279
  authorizations.push(auth);
5278
5280
  }
5279
- const hashedChainBatches = spiceflowCoreTest.hashChainBatches(allChainBatches);
5280
- const digest = spiceflowCoreTest.getAuthorizationHash(hashedChainBatches);
5281
+ const hashedChainBatches = spiceflowCore.hashChainBatches(allChainBatches);
5282
+ const exp = Math.floor(Date.now() / 1e3) + 60 * 10;
5283
+ const digest = spiceflowCore.getAuthorizationHash(0n, BigInt(exp), hashedChainBatches);
5281
5284
  const signatureResult = await actions.signMessage(digest);
5282
5285
  const signature = typeof signatureResult === "string" ? signatureResult : signatureResult.signature;
5283
5286
  if (!signature) throw new Error("Failed to sign intent authorization");
@@ -5286,8 +5289,7 @@ const DepositWidget = ({
5286
5289
  signatureType: "ecdsa",
5287
5290
  signature,
5288
5291
  nbf: 0,
5289
- exp: Math.floor(Date.now() / 1e3) + 60 * 10,
5290
- // 10 minutes from now
5292
+ exp,
5291
5293
  chainBatches: hashedChainBatches.map((b) => ({
5292
5294
  hash: b.hash,
5293
5295
  chainId: b.chainId,
@@ -9900,25 +9902,30 @@ const DepositModal = React.memo(
9900
9902
  throw new Error("Address not available");
9901
9903
  }
9902
9904
  const delegateContract = getDelegateContractAddress(chainId);
9903
- const nonce = await spiceflowCoreTest.getAccountNonce(address, client);
9905
+ const nonce = await spiceflowCore.getAccountNonce(address, client);
9904
9906
  const auth = await signAuthorization({
9905
9907
  contractAddress: delegateContract,
9906
9908
  chainId,
9907
9909
  nonce: Number(nonce)
9908
9910
  });
9909
- const hashedChainBatches = spiceflowCoreTest.hashChainBatches(
9911
+ const hashedChainBatches = spiceflowCore.hashChainBatches(
9910
9912
  allChainBatches
9911
9913
  );
9912
- const digest = spiceflowCoreTest.getAuthorizationHash(hashedChainBatches);
9914
+ const exp = Math.floor(Date.now() / 1e3) + 60 * 10;
9915
+ const digest = spiceflowCore.getAuthorizationHash(
9916
+ 0n,
9917
+ BigInt(exp),
9918
+ hashedChainBatches
9919
+ );
9913
9920
  const intentSignature = await signMessage({ message: digest });
9914
9921
  if (!intentSignature)
9915
9922
  throw new Error("Failed to sign intent authorization");
9916
9923
  const intent = {
9917
9924
  mode: "7702",
9918
- signatureType: "eip-7702",
9925
+ signatureType: "ecdsa",
9919
9926
  signature: intentSignature.signature,
9920
9927
  nbf: 0,
9921
- exp: 0,
9928
+ exp,
9922
9929
  chainBatches: hashedChainBatches.map((hb, idx) => ({
9923
9930
  hash: hb.hash,
9924
9931
  chainId: allChainBatches[idx].chainId,
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@ import { c as createTheme, B as Button, d as defaultTheme } from './Button-CWjGZ
8
8
  import { createPortal } from 'react-dom';
9
9
  import { useWallets, usePrivy, useSign7702Authorization, useSignMessage } from '@privy-io/react-auth';
10
10
  import { useDynamicContext } from '@dynamic-labs/sdk-react-core';
11
- import { getAccountNonce, hashChainBatches, getAuthorizationHash } from 'spiceflow-core-test';
11
+ import { getAccountNonce, hashChainBatches, getAuthorizationHash } from '@spicenet-io/spiceflow-core';
12
12
  import { useAccount, useWalletClient, useSwitchChain, useReadContracts, useConnect, useDisconnect, http as http$1, createConfig, WagmiProvider } from 'wagmi';
13
13
  import { DynamicLogin } from './auth-dynamic.js';
14
14
  import { PrivyLogin } from './auth-privy.js';
@@ -3630,16 +3630,17 @@ const SwapWidget = ({
3630
3630
  authorizations.push(auth);
3631
3631
  }
3632
3632
  const hashedChainBatches = hashChainBatches(allChainBatches);
3633
- const digest = getAuthorizationHash(hashedChainBatches);
3633
+ const exp = Math.floor(Date.now() / 1e3) + 60 * 10;
3634
+ const digest = getAuthorizationHash(0n, BigInt(exp), hashedChainBatches);
3634
3635
  const signatureResult = await actions.signMessage(digest);
3635
3636
  const signature = typeof signatureResult === "string" ? signatureResult : signatureResult.signature;
3636
3637
  if (!signature) throw new Error("Failed to sign intent authorization");
3637
3638
  const intent = {
3638
3639
  mode: "7702",
3639
- signatureType: "eip712",
3640
+ signatureType: "ecdsa",
3640
3641
  signature,
3641
3642
  nbf: 0,
3642
- exp: 0,
3643
+ exp,
3643
3644
  chainBatches: hashedChainBatches.map((b) => ({
3644
3645
  hash: b.hash,
3645
3646
  chainId: Number(b.chainId),
@@ -5262,20 +5263,22 @@ const DepositWidget = ({
5262
5263
  const authorizations = [];
5263
5264
  for (const chainId of uniqueChainIds) {
5264
5265
  const client = getClientForChain(chainId);
5265
- const delegateContract = getDelegateContractAddress(chainId);
5266
+ getDelegateContractAddress(chainId);
5266
5267
  const nonce = await getAccountNonce(
5267
5268
  address,
5268
5269
  client
5269
5270
  );
5270
5271
  const auth = await actions.signAuthorization({
5271
- contractAddress: delegateContract,
5272
+ contractAddress: address,
5273
+ // smart account address
5272
5274
  chainId,
5273
5275
  nonce: Number(nonce)
5274
5276
  });
5275
5277
  authorizations.push(auth);
5276
5278
  }
5277
5279
  const hashedChainBatches = hashChainBatches(allChainBatches);
5278
- const digest = getAuthorizationHash(hashedChainBatches);
5280
+ const exp = Math.floor(Date.now() / 1e3) + 60 * 10;
5281
+ const digest = getAuthorizationHash(0n, BigInt(exp), hashedChainBatches);
5279
5282
  const signatureResult = await actions.signMessage(digest);
5280
5283
  const signature = typeof signatureResult === "string" ? signatureResult : signatureResult.signature;
5281
5284
  if (!signature) throw new Error("Failed to sign intent authorization");
@@ -5284,8 +5287,7 @@ const DepositWidget = ({
5284
5287
  signatureType: "ecdsa",
5285
5288
  signature,
5286
5289
  nbf: 0,
5287
- exp: Math.floor(Date.now() / 1e3) + 60 * 10,
5288
- // 10 minutes from now
5290
+ exp,
5289
5291
  chainBatches: hashedChainBatches.map((b) => ({
5290
5292
  hash: b.hash,
5291
5293
  chainId: b.chainId,
@@ -9907,16 +9909,21 @@ const DepositModal = React.memo(
9907
9909
  const hashedChainBatches = hashChainBatches(
9908
9910
  allChainBatches
9909
9911
  );
9910
- const digest = getAuthorizationHash(hashedChainBatches);
9912
+ const exp = Math.floor(Date.now() / 1e3) + 60 * 10;
9913
+ const digest = getAuthorizationHash(
9914
+ 0n,
9915
+ BigInt(exp),
9916
+ hashedChainBatches
9917
+ );
9911
9918
  const intentSignature = await signMessage({ message: digest });
9912
9919
  if (!intentSignature)
9913
9920
  throw new Error("Failed to sign intent authorization");
9914
9921
  const intent = {
9915
9922
  mode: "7702",
9916
- signatureType: "eip-7702",
9923
+ signatureType: "ecdsa",
9917
9924
  signature: intentSignature.signature,
9918
9925
  nbf: 0,
9919
- exp: 0,
9926
+ exp,
9920
9927
  chainBatches: hashedChainBatches.map((hb, idx) => ({
9921
9928
  hash: hb.hash,
9922
9929
  chainId: allChainBatches[idx].chainId,
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.33",
4
4
  "description": "Spiceflow UI SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",
@@ -75,11 +75,11 @@
75
75
  "@dynamic-labs/sdk-react-core": ">=3.9.13 <5.0.0",
76
76
  "@dynamic-labs/wallet-connector-core": ">=3.9.13 <5.0.0",
77
77
  "@privy-io/react-auth": ">=2.24.0 <4.0.0",
78
+ "@spicenet-io/spiceflow-core": "0.1.1",
78
79
  "@tanstack/react-query": ">=5.0.0",
79
80
  "axios": ">=1.0.0",
80
81
  "react": "^18.0.0",
81
82
  "react-dom": "^18.0.0",
82
- "spiceflow-core-test": ">=0.1.0",
83
83
  "viem": ">=2.21.0",
84
84
  "wagmi": ">=2.12.0"
85
85
  },
@@ -103,41 +103,41 @@
103
103
  "@dynamic-labs/wallet-connector-core": "^3.9.13",
104
104
  "@privy-io/react-auth": "^2.24.0",
105
105
  "@rollup/plugin-commonjs": "^28.0.6",
106
- "axios": "^1.11.0",
107
106
  "@rollup/plugin-image": "^3.0.3",
108
107
  "@rollup/plugin-json": "^6.1.0",
109
108
  "@rollup/plugin-node-resolve": "^16.0.1",
110
109
  "@rollup/plugin-replace": "^6.0.2",
111
110
  "@rollup/plugin-typescript": "^12.1.4",
112
- "esbuild": "^0.24.0",
113
- "rollup-plugin-esbuild": "^6.1.1",
111
+ "@spicenet-io/spiceflow-core": "0.1.1",
114
112
  "@tanstack/react-query": "^5.90.5",
115
113
  "@types/node": "^24.3.0",
116
114
  "@types/react": "^18.3.3",
117
115
  "@types/react-dom": "^18.3.0",
118
116
  "@typescript-eslint/eslint-plugin": "^6.0.0",
119
117
  "@typescript-eslint/parser": "^6.0.0",
118
+ "axios": "^1.11.0",
119
+ "esbuild": "^0.24.0",
120
120
  "eslint": "^8.45.0",
121
121
  "eslint-config-prettier": "^10.1.8",
122
122
  "eslint-plugin-react": "^7.33.0",
123
123
  "eslint-plugin-react-hooks": "^4.6.0",
124
124
  "husky": "^9.1.7",
125
125
  "lint-staged": "^16.2.5",
126
+ "lucide-react": "^0.562.0",
126
127
  "postcss": "^8.5.6",
127
128
  "postcss-import": "^16.1.1",
128
129
  "prettier": "3.6.2",
129
- "jest": "^29.6.0",
130
130
  "react": "^18.3.1",
131
131
  "react-dom": "^18.3.1",
132
132
  "rollup": "^4.50.0",
133
133
  "rollup-plugin-copy": "^3.5.0",
134
+ "rollup-plugin-esbuild": "^6.1.1",
134
135
  "rollup-plugin-peer-deps-external": "^2.2.4",
135
136
  "rollup-plugin-postcss": "^4.0.2",
136
137
  "ts-node": "^10.9.2",
137
138
  "typescript": "^5.9.2",
138
139
  "viem": "2.33.1",
139
- "wagmi": "^2.18.2",
140
- "spiceflow-core-test": "^0.1.0"
140
+ "wagmi": "^2.18.2"
141
141
  },
142
142
  "lint-staged": {
143
143
  "*.{ts,tsx,js,jsx,json,md}": "prettier --write"