LLM Notice: This documentation site supports content negotiation for AI agents. Request any page with Accept: text/markdown or Accept: text/plain header to receive Markdown instead of HTML. Alternatively, append ?format=md to any URL. All markdown files are available at /md/ prefix paths. For all content in one file, visit /llms-full.txt
Skip to main content

resolveSignatures

Resolves signatures for a transaction by coordinating the signing process for inside and outside signers.

Import

You can import the entire package and access the function:


_10
import * as sdk from "@onflow/sdk"
_10
_10
sdk.resolveSignatures(ix)

Or import directly the specific function:


_10
import { resolveSignatures } from "@onflow/sdk"
_10
_10
resolveSignatures(ix)

Parameters

ix

  • Type: Interaction
  • Description: The interaction object containing transaction details

Returns

Promise<Interaction>

The interaction object with resolved signatures


Rate this page