Skip to main content

authzDeepResolveMany

Creates a deep test authorization resolver with nested resolution for complex testing scenarios.

Import

You can import the entire package and access the function:


_10
import * as sdk from "@onflow/sdk"
_10
_10
sdk.authzDeepResolveMany(opts, depth)

Or import directly the specific function:


_10
import { authzDeepResolveMany } from "@onflow/sdk"
_10
_10
authzDeepResolveMany(opts, depth)

Parameters

opts (optional)

  • Type: IAuthzResolveMany
  • Description: Configuration including authorizations array and optional proposer/payer

_10
interface IAuthzResolveMany {
_10
tempId?: string
_10
authorizations: any[]
_10
proposer?: any
_10
payer?: any
_10
}

depth (optional)

  • Type: number
  • Description: The depth of nesting for the resolver (default: 1)

Returns

function


Rate this page