mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-03-17 08:41:38 +03:00
14 lines
375 B
TypeScript
14 lines
375 B
TypeScript
import jsonChains from './chains.json' assert { type: 'json' };
|
|
import jsonEnvs from './envs.json' assert { type: 'json' };
|
|
import { pureEnvSchema, pureChainInfoSchema } from './schemas/index.js';
|
|
|
|
const chains = pureChainInfoSchema.parse(jsonChains);
|
|
const envs = pureEnvSchema.parse(jsonEnvs);
|
|
|
|
export {
|
|
chains,
|
|
envs,
|
|
};
|
|
|
|
export * as schemas from './schemas/index.js';
|