Adds admin permissions for a specified address.
import { isAccountDeployed } from "thirdweb/extensions/erc4337"; const transaction = addAdmin({ contract, account, adminAddress: "0x...",}); await isAccountDeployed({ contract, adminSigner });
function isAccountDeployed( options: BaseTransactionOptions<GetAddressParams>,): Promise<boolean>;
The options for the addAdmin function.
let options: BaseTransactionOptions<GetAddressParams>;
let returnType: Promise<boolean>;
The transaction object to be sent.