• Retrieves information about supported chains, tokens, and wallet providers from the MEE service. This endpoint provides configuration details needed to interact with the service.

    Parameters

    Returns Promise<GetInfoPayload>

    Promise resolving to the info payload

    Example

    const info = await getInfo(httpClient);
    // Returns:
    // {
    // version: "1.0.0",
    // node: "mee-node-1",
    // supported_chains: [
    // { chainId: "1", name: "Ethereum Mainnet" },
    // { chainId: "137", name: "Polygon" }
    // ],
    // supported_gas_tokens: [...],
    // supported_wallet_providers: [
    // {
    // walletProvider: "SAFE_V141",
    // supportedChains: ["1", "137"],
    // eoaEnabled: true
    // }
    // ]
    // }