XYOracleNetwork/clients

View on GitHub
packages/automation-witness-server/src/Jobs/getJobs.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { Job } from '@xyo-network/shared'

import { getJob as getCryptoMarketWitnessJob } from './CryptoMarket/index.js'
import { getJob as getEthereumGasJob } from './EthereumGas/index.js'
import { getJob as getTZeroStockPriceJob } from './TZeroStockMarket/index.js'

export const getJobs = (): Job[] => {
  return [getCryptoMarketWitnessJob(), getEthereumGasJob(), getTZeroStockPriceJob()]
}