/** * The address of a Contract, or an EOA */ export type Address = `0x${string}`; /** * The id of a market used on the Blue contract */ export type MarketId = `0x${string}` & { __TYPE__: "marketId"; }; export type BigIntish = bigint | string | number | boolean; /** * The possible transaction type on the Blue contract */ export declare enum TransactionType { Supply = "Supply", SupplyCollateral = "Supply Collateral", Withdraw = "Withdraw", WithdrawCollateral = "Withdraw Collateral", Borrow = "Borrow", Repay = "Repay" } export type Loadable = T | undefined; export type Failable = T | null; export type Fetchable = Failable>; export declare const isMarketId: (value: unknown) => value is MarketId;