@myx-trade/sdk 1.0.8-beta.6 → 1.0.8-beta.8
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 +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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: (
|
|
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: (
|
|
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;
|