@myx-trade/sdk 1.0.2-beta.8 → 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 CHANGED
@@ -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: `0x${string}`;
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
@@ -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: `0x${string}`;
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>>;