Skip to main content

TypeScript shape

interface Network {
  name: string;
  id: number;
  networkShortName: string | null;
}
name
String!
Display name of the network (e.g. Ethereum, Solana).
id
Int!
Network ID used in API calls.
networkShortName
String
Short identifier for the network (e.g. eth, sol).