ListAccountsParams

1type ListAccountsParams = Omit<RpcSchema["Request"]["params"][0], "signerAddress" | "signerPublicKey"> &
2 | {
3 signerAddress: Address;
4}
5 | {
6 signerPublicKey: WebAuthnPublicKey;
7}
8 | {
9};

Defined in: account-kit/wallet-client/src/client/actions/listAccounts.ts:21