diff --git a/src/sdk/generated_ts/paths/config.ts b/src/sdk/generated_ts/paths/config.ts deleted file mode 100644 index aa27df79..00000000 --- a/src/sdk/generated_ts/paths/config.ts +++ /dev/null @@ -1,28 +0,0 @@ -import * as ApiCallers from "../lib/api_callers"; -import { Status } from "../types"; - -export function getConfig( - parameters?: { - modes?: string[], - module?: string[], - details?: boolean, - terse?: boolean, - chain: string, - noHeader?: boolean, - fmt?: string, - verbose?: boolean, - logLevel?: number, - wei?: boolean, - ether?: boolean, - dollars?: boolean, - raw?: boolean, - toFile?: boolean, - }, - options?: RequestInit, -) { - return ApiCallers.fetch( - { - endpoint: '/config', method: 'get', parameters, options, - }, - ); -} diff --git a/src/sdk/generated_ts/types/config.ts b/src/sdk/generated_ts/types/config.ts deleted file mode 100644 index b47f191a..00000000 --- a/src/sdk/generated_ts/types/config.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { - Cache, Chain, Key, timestamp, -} from '.'; - -export type Config = { - clientVersion: string - clientIds: string - trueblocksVersion: string - rpcProvider: string - configPath: string - cachePath: string - indexPath: string - host: string - isTesting: boolean - isApi: boolean - isScraping: boolean - isArchive: boolean - isTracing: boolean - hasEskey: boolean - hasPinkey: boolean - ts: timestamp - chains: Chain[] - caches: Cache[] - keys?: Key[] -} diff --git a/src/sdk/generated_ts/types/key.ts b/src/sdk/generated_ts/types/key.ts deleted file mode 100644 index 42c1ac76..00000000 --- a/src/sdk/generated_ts/types/key.ts +++ /dev/null @@ -1,8 +0,0 @@ -import "../types"; - -export type Key = { - provider: string - apiKey: string - jwt: string - secret: string -} diff --git a/src/sdk/generated_ts/types/transfer.ts b/src/sdk/generated_ts/types/transfer.ts deleted file mode 100644 index 9be3d3fc..00000000 --- a/src/sdk/generated_ts/types/transfer.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { blknum, hash, timestamp, Datetime, address, uint64, uint256, double } from "../types"; - -export type Transfer = { - blockNumber: blknum - transactionIndex: blknum - logIndex: blknum - transactionHash: hash - timestamp: timestamp - date: Datetime - sender: address - recipient: address - assetAddr: address - assetSymbol: string - decimals: uint64 - amount: uint256 - spotPrice: double - priceSource: string - encoding: string -}