Type alias GetInfoPayload

GetInfoPayload: {
    node: string;
    supported_chains: SupportedChain[];
    supported_gas_tokens: GetGasTokenPayload[];
    supported_wallet_providers: SupportedWalletProvider[];
    version: string;
}

Response payload for the getInfo endpoint

Type declaration

  • node: string

    Node information string

    Example

    "mee-node-1"
    
  • supported_chains: SupportedChain[]

    List of supported blockchain chains

  • supported_gas_tokens: GetGasTokenPayload[]

    List of supported gas tokens per chain

    See

    GetGasTokenPayload

  • supported_wallet_providers: SupportedWalletProvider[]

    List of supported wallet providers and their capabilities

  • version: string

    Version of the MEE API

    Example

    "1.0.0"