mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-04-11 13:38:38 +03:00
7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
import { z } from 'zod';
|
|
|
|
const pmmSchema = z.object({
|
|
orionPMMRouterContractAddress: z.string()
|
|
});
|
|
|
|
export default pmmSchema |