getAllActiveSigners

Calls the "getAllActiveSigners" function on the contract.

Example

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 }>>

Parameters

The options for the getAllActiveSigners function.

Type

let options: { contract: ThirdwebContract<abi> } & T;

Returns

let returnType: Promise<readonly Array<{ approvedTargets: readonly Array<string>; endTimestamp: bigint; nativeTokenLimitPerTransaction: bigint; signer: string; startTimestamp: bigint }>>

The parsed result of the function call.