Calls the "getAllActiveSigners" function on the contract.
import { getAllActiveSigners } from "thirdweb/extensions/erc4337"; const result = await getAllActiveSigners({ contract,});
function getAllActiveSigners(options: BaseTransactionOptions) : Promise<readonly Array<{ approvedTargets: readonly Array<string>; endTimestamp: bigint; nativeTokenLimitPerTransaction: bigint; signer: string; startTimestamp: bigint }>>
The options for the getAllActiveSigners function.
let options: { contract: ThirdwebContract<abi> } & T;
let returnType: Promise<readonly Array<{ approvedTargets: readonly Array<string>; endTimestamp: bigint; nativeTokenLimitPerTransaction: bigint; signer: string; startTimestamp: bigint }>>
The parsed result of the function call.