afrimomo-sdk
Version:
A unified SDK for African payment providers
17 lines • 486 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PawapayWallets = void 0;
class PawapayWallets {
network;
constructor(network) {
this.network = network;
}
async getAllBalances() {
return this.network.get("/wallet-balances");
}
async getCountryBalance(country) {
return this.network.get(`/wallet-balances/${country}`);
}
}
exports.PawapayWallets = PawapayWallets;
//# sourceMappingURL=wallets.js.map