Skip to content

Commit 8516471

Browse files
committed
fix: adding signature verification indexing for smart accounts
1 parent 4a2fa77 commit 8516471

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/sync_handlers/event_data_sync_handler.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,10 @@ export const syncEventData = async (
506506
const account = getValueFromAttributes(event.attributes, "sender");
507507
// if AuthnVerification then we need to fetch the config from chain directly
508508
let config: any;
509-
if (authenticatorType === "AuthnVerification") {
509+
if (
510+
authenticatorType === "AuthnVerification" ||
511+
authenticatorType === "SignatureVerification"
512+
) {
510513
const authenticator =
511514
await queryClient.ixo.smartaccount.v1beta1.getAuthenticator({
512515
account: account,

0 commit comments

Comments
 (0)