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
Member | Type | Description |
---|---|---|
createdAt | Date | The timestamp when the blockchain network was created. |
exchangeContract | string | The contract address of the decentralized exchange on the blockchain network. |
id | number | The unique identifier for the blockchain network. |
logo | string | The URL or path to the logo representing the blockchain network. |
minMarketPrice | string | The minimum market price allowed on the blockchain network. |
name | string | The name of the blockchain network. |
nativeToken | string | The symbol of the native token of the blockchain network. |
settlementContract | string | The contract address of the settlement contract on the blockchain network. |
updatedAt | Date | The timestamp when the blockchain network was last updated. |
usdtContract | string | The contract address of the USDT (Tether) token on the blockchain network. |