Calls the "getAllSigners" function on the contract.
import { getAllSigners } from "thirdweb/extensions/erc4337"; const result = await getAllSigners({ contract,});
function getAllSigners(options: BaseTransactionOptions) : Promise<readonly Array<{ approvedTargets: readonly Array<string>; endTimestamp: bigint; nativeTokenLimitPerTransaction: bigint; signer: string; startTimestamp: bigint }>>
The options for the getAllSigners 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.