We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a2fa77 commit 8516471Copy full SHA for 8516471
src/sync_handlers/event_data_sync_handler.ts
@@ -506,7 +506,10 @@ export const syncEventData = async (
506
const account = getValueFromAttributes(event.attributes, "sender");
507
// if AuthnVerification then we need to fetch the config from chain directly
508
let config: any;
509
- if (authenticatorType === "AuthnVerification") {
+ if (
510
+ authenticatorType === "AuthnVerification" ||
511
+ authenticatorType === "SignatureVerification"
512
+ ) {
513
const authenticator =
514
await queryClient.ixo.smartaccount.v1beta1.getAuthenticator({
515
account: account,
0 commit comments