Alchemy Logo

OauthProviderConfig

type OauthProviderConfig =
  | {
      auth0Connection?: string;
      authProviderId: "auth0";
      isCustomProvider?: false;
    }
  | {
      auth0Connection?: never;
      authProviderId: KnownAuthProvider;
      isCustomProvider?: false;
    }
  | {
      auth0Connection?: never;
      authProviderId: string;
      isCustomProvider: true;
    };

Defined in: account-kit/signer/src/signer.ts:75

Was this page helpful?