Skip to main content

resolveAccounts

Resolves account authorization functions and validates account configurations for transactions.

Import

You can import the entire package and access the function:


_10
import * as sdk from "@onflow/sdk"
_10
_10
sdk.resolveAccounts(ix, opts)

Or import directly the specific function:


_10
import { resolveAccounts } from "@onflow/sdk"
_10
_10
resolveAccounts(ix, opts)

Parameters

ix

  • Type: Interaction
  • Description: The interaction object containing accounts to resolve

opts (optional)

  • Type: Record<string, any>
  • Description: Configuration options for resolution

Returns

Promise<Interaction>


Rate this page