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