@myx-trade/sdk 1.0.2-beta.7 → 1.0.2-beta.9
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 +2 -2
- package/dist/index.d.ts +2 -2
- 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
|
@@ -2256,7 +2256,7 @@ declare class Position {
|
|
|
2256
2256
|
message: string;
|
|
2257
2257
|
} | {
|
|
2258
2258
|
code: number;
|
|
2259
|
-
message:
|
|
2259
|
+
message: string;
|
|
2260
2260
|
data?: undefined;
|
|
2261
2261
|
}>;
|
|
2262
2262
|
}
|
|
@@ -2442,7 +2442,7 @@ declare class Order {
|
|
|
2442
2442
|
|
|
2443
2443
|
/** Cast viem getContract result so .read/.write and legacy contract.methodName() accept any ABI function name. */
|
|
2444
2444
|
type ContractLike = {
|
|
2445
|
-
address:
|
|
2445
|
+
address: Address;
|
|
2446
2446
|
abi: Abi;
|
|
2447
2447
|
read: Record<string, (...args: any[]) => Promise<any>>;
|
|
2448
2448
|
write?: Record<string, (...args: any[]) => Promise<any>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -2256,7 +2256,7 @@ declare class Position {
|
|
|
2256
2256
|
message: string;
|
|
2257
2257
|
} | {
|
|
2258
2258
|
code: number;
|
|
2259
|
-
message:
|
|
2259
|
+
message: string;
|
|
2260
2260
|
data?: undefined;
|
|
2261
2261
|
}>;
|
|
2262
2262
|
}
|
|
@@ -2442,7 +2442,7 @@ declare class Order {
|
|
|
2442
2442
|
|
|
2443
2443
|
/** Cast viem getContract result so .read/.write and legacy contract.methodName() accept any ABI function name. */
|
|
2444
2444
|
type ContractLike = {
|
|
2445
|
-
address:
|
|
2445
|
+
address: Address;
|
|
2446
2446
|
abi: Abi;
|
|
2447
2447
|
read: Record<string, (...args: any[]) => Promise<any>>;
|
|
2448
2448
|
write?: Record<string, (...args: any[]) => Promise<any>>;
|