UNPKG

gray-market-js

Version:

Utility library for the Gray Market rental marketplace

15 lines (14 loc) 433 B
class CustodyProvidersClient { constructor(axiosInstance) { this.axiosInstance = axiosInstance; } getKeepers(networkID, signerAddress, collectionAddress) { return this.axiosInstance.get( `/custodyproviders/getkeepers?` + `networkID=${networkID}&` + `signerAddress=${signerAddress}&` + `collectionAddress=${collectionAddress}` ); } } module.exports = CustodyProvidersClient;