import { ethers } from 'ethers' import { always } from 'ramda' import { execute, QueryOption } from '../../common/utils/execute' export type CreateGetAuthenticatedPropertiesCaller = ( contract: ethers.Contract, ) => () => Promise export const createGetAuthenticatedPropertiesCaller: CreateGetAuthenticatedPropertiesCaller = (contract: ethers.Contract) => always( execute({ contract, method: 'getAuthenticatedProperties', mutation: false, }), )