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:
_10import * as sdk from "@onflow/sdk"_10_10sdk.authzDeepResolveMany(opts, depth)
Or import directly the specific function:
_10import { authzDeepResolveMany } from "@onflow/sdk"_10_10authzDeepResolveMany(opts, depth)
Parameters
opts
(optional)
- Type:
IAuthzResolveMany
- Description: Configuration including authorizations array and optional proposer/payer
_10interface 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