getAllSigners

Calls the "getAllSigners" function on the contract.

Example

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

Parameters

The options for the getAllSigners 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.