@gearbox-protocol/sdk 8.17.0 → 8.17.1
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { type Address } from "viem";
|
|
1
2
|
import { z } from "zod/v4";
|
|
2
3
|
/**
|
|
3
4
|
* Like Address from abitype/zod, but converts an address into an address that is checksum encoded.
|
|
4
5
|
*/
|
|
5
|
-
export declare const ZodAddress: () => z.ZodPipe<z.ZodString, z.ZodTransform
|
|
6
|
+
export declare const ZodAddress: () => z.ZodPipe<z.ZodString, z.ZodTransform<Address, string>>;
|