import { ethers } from "ethers"; export const setApprovalForAll = async ( reliquaryContract: ethers.Contract, operator: string, approved: boolean ) => reliquaryContract.setApprovalForAll(operator, approved);