Retrieves information about supported chains, tokens, and wallet providers from the MEE service. This endpoint provides configuration details needed to interact with the service.
const info = await getInfo(httpClient);// Returns:// {// version: "1.0.0",// node: "mee-node-1",// supportedChains: [// { chainId: "1", name: "Ethereum Mainnet" },// { chainId: "137", name: "Polygon" }// ],// supportedGasTokens: [...],// supported_wallet_providers: [// {// walletProvider: "SAFE_V141",// supportedChains: ["1", "137"],// eoaEnabled: true// }// ]// } Copy
const info = await getInfo(httpClient);// Returns:// {// version: "1.0.0",// node: "mee-node-1",// supportedChains: [// { chainId: "1", name: "Ethereum Mainnet" },// { chainId: "137", name: "Polygon" }// ],// supportedGasTokens: [...],// supported_wallet_providers: [// {// walletProvider: "SAFE_V141",// supportedChains: ["1", "137"],// eoaEnabled: true// }// ]// }
The HTTP client instance
Promise resolving to the info payload
Retrieves information about supported chains, tokens, and wallet providers from the MEE service. This endpoint provides configuration details needed to interact with the service.
Example