@keplr-ewallet/ewallet-sdk-cosmos
Version:
11 lines (10 loc) • 312 B
text/typescript
/**
* Dummy function for Keplr interface compatibility.
* This function is provided to match the Keplr API and does nothing.
* It can be safely called and awaited, but has no effect.
*
* @param _chainId - The chain ID (unused)
*/
export async function enable(_chainId: string): Promise<void> {
return;
}