@silentswap/sdk 0.0.15 → 0.0.16
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/order.d.ts +1 -1
- package/dist/order.js +1 -1
- package/dist/sdk.d.ts +2 -2
- package/package.json +1 -1
package/dist/order.d.ts
CHANGED
|
@@ -274,7 +274,7 @@ export declare const EIP712_TYPES_WALLET_GENERATION: {
|
|
|
274
274
|
export declare const EIP712_DOMAIN_ORDER_DEFAULT: {
|
|
275
275
|
readonly name: "SilentSwap v2";
|
|
276
276
|
readonly version: "1";
|
|
277
|
-
readonly chainId:
|
|
277
|
+
readonly chainId: 1;
|
|
278
278
|
};
|
|
279
279
|
export declare function quoteResponseToEip712Document(quoteResponse: QuoteResponse): TypedDataDocument<typeof EIP712_DOMAIN_ORDER_DEFAULT>;
|
|
280
280
|
export {};
|
package/dist/order.js
CHANGED
|
@@ -97,7 +97,7 @@ export const EIP712_TYPES_WALLET_GENERATION = {
|
|
|
97
97
|
export const EIP712_DOMAIN_ORDER_DEFAULT = {
|
|
98
98
|
name: 'SilentSwap v2',
|
|
99
99
|
version: '1',
|
|
100
|
-
chainId:
|
|
100
|
+
chainId: 1,
|
|
101
101
|
};
|
|
102
102
|
export function quoteResponseToEip712Document(quoteResponse) {
|
|
103
103
|
return {
|
package/dist/sdk.d.ts
CHANGED
|
@@ -108,7 +108,7 @@ export declare function createEip712DocForOrder(quote: QuoteResponse): {
|
|
|
108
108
|
domain: {
|
|
109
109
|
readonly name: "SilentSwap v2";
|
|
110
110
|
readonly version: "1";
|
|
111
|
-
readonly chainId:
|
|
111
|
+
readonly chainId: 1;
|
|
112
112
|
};
|
|
113
113
|
primaryType: "Order";
|
|
114
114
|
message: {
|
|
@@ -156,7 +156,7 @@ export declare function createEip712DocForWalletGeneration(scope: string, token:
|
|
|
156
156
|
domain: {
|
|
157
157
|
readonly name: "SilentSwap v2";
|
|
158
158
|
readonly version: "1";
|
|
159
|
-
readonly chainId:
|
|
159
|
+
readonly chainId: 1;
|
|
160
160
|
};
|
|
161
161
|
primaryType: "WalletGeneration";
|
|
162
162
|
message: {
|