@myx-trade/sdk 1.0.8-beta.6 → 1.0.8-beta.7

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
@@ -2134,7 +2134,13 @@ declare class Seamless {
2134
2134
  chainId: number;
2135
2135
  masterAddress: string;
2136
2136
  seamlessAddress: string;
2137
- signFunction: (abi: any, domain: any, functionHash: string) => string;
2137
+ signFunction: (signParams: {
2138
+ domain: any;
2139
+ functionHash: string;
2140
+ to: string;
2141
+ nonce: string;
2142
+ deadline: number;
2143
+ }) => Promise<string>;
2138
2144
  functionName: string;
2139
2145
  forwardFeeToken: string;
2140
2146
  orderParams: any;
package/dist/index.d.ts CHANGED
@@ -2134,7 +2134,13 @@ declare class Seamless {
2134
2134
  chainId: number;
2135
2135
  masterAddress: string;
2136
2136
  seamlessAddress: string;
2137
- signFunction: (abi: any, domain: any, functionHash: string) => string;
2137
+ signFunction: (signParams: {
2138
+ domain: any;
2139
+ functionHash: string;
2140
+ to: string;
2141
+ nonce: string;
2142
+ deadline: number;
2143
+ }) => Promise<string>;
2138
2144
  functionName: string;
2139
2145
  forwardFeeToken: string;
2140
2146
  orderParams: any;