authzResolveMany
Creates a test authorization resolver that handles multiple accounts with different roles.
Import
You can import the entire package and access the function:
_10import * as sdk from "@onflow/sdk"_10_10sdk.authzResolveMany(opts)
Or import directly the specific function:
_10import { authzResolveMany } from "@onflow/sdk"_10_10authzResolveMany(opts)
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}
Returns
function