@gearbox-protocol/sdk 3.0.0-vfour.333 → 3.0.0-vfour.335
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,6 +1,6 @@
|
|
|
1
1
|
import type { Address, Chain } from "viem";
|
|
2
2
|
import { z } from "zod";
|
|
3
|
-
type Curator = "Chaos Labs" | "K3";
|
|
3
|
+
export type Curator = "Chaos Labs" | "K3";
|
|
4
4
|
export interface GearboxChain extends Chain {
|
|
5
5
|
network: NetworkType;
|
|
6
6
|
defaultMarketConfigurators: Record<Address, Curator>;
|
|
@@ -15,4 +15,3 @@ export declare function getChain(chainIdOrNetworkType: number | bigint | Network
|
|
|
15
15
|
export declare function getNetworkType(chainId: number | bigint): NetworkType;
|
|
16
16
|
export declare function isSupportedNetwork(chainId: number | undefined): chainId is number;
|
|
17
17
|
export declare function isPublicNetwork(networkOrChainId: NetworkType | number | bigint): boolean;
|
|
18
|
-
export {};
|