Skip to main content

authzResolveMany

Creates a test authorization resolver that handles multiple accounts with different roles.

Import

You can import the entire package and access the function:


_10
import * as sdk from "@onflow/sdk"
_10
_10
sdk.authzResolveMany(opts)

Or import directly the specific function:


_10
import { authzResolveMany } from "@onflow/sdk"
_10
_10
authzResolveMany(opts)

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
}

Returns

function


Rate this page