type Chain: {
  createdAt: Date;
  exchangeContract: string;
  id: number;
  logo: string;
  minMarketPrice: string;
  name: string;
  nativeToken: string;
  settlementContract: string;
  updatedAt: Date;
  usdtContract: string;
};

Represents a blockchain network (chain) with its properties.

Type declaration

MemberTypeDescription
createdAtDateThe timestamp when the blockchain network was created.
exchangeContractstringThe contract address of the decentralized exchange on the blockchain network.
idnumberThe unique identifier for the blockchain network.
logostringThe URL or path to the logo representing the blockchain network.
minMarketPricestringThe minimum market price allowed on the blockchain network.
namestringThe name of the blockchain network.
nativeTokenstringThe symbol of the native token of the blockchain network.
settlementContractstringThe contract address of the settlement contract on the blockchain network.
updatedAtDateThe timestamp when the blockchain network was last updated.
usdtContractstringThe contract address of the USDT (Tether) token on the blockchain network.