Skip to content
Alchemy Logo

AlchemySignerParamsSchema

const AlchemySignerParamsSchema: ZodObject<
  object & object,
  "strip",
  ZodTypeAny,
  {
    client:
      | AlchemySignerWebClient
      | {
          connection: {} | {} | {} | ({} & object);
          iframeConfig: Object;
          rootOrgId: string;
          oauthCallbackUrl: string;
          enablePopupOauth: boolean;
          rpId?: string;
        };
    sessionConfig?: Object;
  },
  {
    client:
      | AlchemySignerWebClient
      | {
          connection: {} | {} | {} | ({} & object);
          iframeConfig: Object;
          rpId?: string;
          rootOrgId?: string;
          oauthCallbackUrl?: string;
          enablePopupOauth?: boolean;
        };
    sessionConfig?: Object;
  }
>;

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

Was this page helpful?