@alchemy/aa-core
Version:
viem based SDK that enables interactions with ERC-4337 Smart Accounts. ABIs are based off the definitions generated in @account-abstraction/contracts
18 lines (16 loc) • 520 B
text/typescript
import type { Chain, Client, Hex, Transport } from "viem";
import type { BundlerRpcSchema } from "../../client/decorators/bundlerClient";
import type { UserOperationResponse } from "../../types";
export const getUserOperationByHash = async <
TClient extends Client<Transport, Chain | undefined, any, BundlerRpcSchema>
>(
client: TClient,
args: {
hash: Hex;
}
): Promise<UserOperationResponse | null> => {
return client.request({
method: "eth_getUserOperationByHash",
params: [args.hash],
});
};