UNPKG

@circle-fin/circle-sdk

Version:
36 lines (32 loc) 651 B
/* tslint:disable */ /* eslint-disable */ /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A blockchain that a given currency is available on. * @export * @enum {string} */ export const Chain = { Algo: "ALGO", Arb: "ARB", Avax: "AVAX", Base: "BASE", Btc: "BTC", Celo: "CELO", Eth: "ETH", Flow: "FLOW", Hbar: "HBAR", Near: "NEAR", Noble: "NOBLE", Op: "OP", Pah: "PAH", Poly: "POLY", Sol: "SOL", Trx: "TRX", Xlm: "XLM" } as const; export type Chain = typeof Chain[keyof typeof Chain];