UNPKG

gray-market-js

Version:

Utility library for the Gray Market rental marketplace

10 lines (9 loc) 247 B
class AssetsClient { constructor(axiosInstance) { this.axiosInstance = axiosInstance; } getAllOwnedByWallet(address) { return this.axiosInstance.get(`/assets/getallforwallet/${address}`) } } module.exports = AssetsClient;