Skip to content
Alchemy Logo

SignPreparedCallsResult

type SignPreparedCallsResult =
  | {
      data: Signed<
        Extract<
          PrepareCallsResult,
          {
            type: "array";
          }
        >["data"][number]
      >[];
      type: "array";
    }
  | Signed<
      Extract<
        PrepareCallsResult,
        {
          type: "user-operation-v060";
        }
      >
    >
  | Signed<
      Extract<
        PrepareCallsResult,
        {
          type: "user-operation-v070";
        }
      >
    >;

Defined in: packages/wallet-apis/src/actions/signPreparedCalls.ts:22

Was this page helpful?