@jimmygu/sfa-sdk-test 1.0.1 → 1.0.2

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.d.mts CHANGED
@@ -769,7 +769,7 @@ declare class HyperliquidService {
769
769
  getStatus(params: HyperliquidGetStatusParams): Promise<unknown>;
770
770
  protected generatePermit(params: HyperliquidGeneratePermitParams): Promise<{
771
771
  amount: string;
772
- deadline: string;
772
+ deadline: number;
773
773
  owner: string;
774
774
  r: string;
775
775
  s: string;
package/dist/index.d.ts CHANGED
@@ -769,7 +769,7 @@ declare class HyperliquidService {
769
769
  getStatus(params: HyperliquidGetStatusParams): Promise<unknown>;
770
770
  protected generatePermit(params: HyperliquidGeneratePermitParams): Promise<{
771
771
  amount: string;
772
- deadline: string;
772
+ deadline: number;
773
773
  owner: string;
774
774
  r: string;
775
775
  s: string;
package/dist/index.js CHANGED
@@ -4956,7 +4956,7 @@ var HyperliquidService = class {
4956
4956
  const { v, r, s } = import_ethers.ethers.Signature.from(signature);
4957
4957
  const permitParams = {
4958
4958
  amount: value,
4959
- deadline: deadline.toString(),
4959
+ deadline,
4960
4960
  owner: address,
4961
4961
  r,
4962
4962
  s,
package/dist/index.mjs CHANGED
@@ -4895,7 +4895,7 @@ var HyperliquidService = class {
4895
4895
  const { v, r, s } = ethers.Signature.from(signature);
4896
4896
  const permitParams = {
4897
4897
  amount: value,
4898
- deadline: deadline.toString(),
4898
+ deadline,
4899
4899
  owner: address,
4900
4900
  r,
4901
4901
  s,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jimmygu/sfa-sdk-test",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "TypeScript SDK for StableFlow AI API - Cross-chain token swap solution",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",