Giant Update
NPM Installation / build (16.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (16.x, windows-latest) (push) Has been cancelled
NPM Installation / build (17.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (17.x, windows-latest) (push) Has been cancelled
NPM Installation / build (18.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (18.x, windows-latest) (push) Has been cancelled

This commit is contained in:
Wian Drs
2026-07-31 13:57:55 +07:00
parent 73a32380e7
commit 03fe4b1fd4
32 changed files with 3635 additions and 37 deletions
+6
View File
@@ -0,0 +1,6 @@
import api from '@/api/axios'
export const getMyWallets = async () => (await api.get('/wallets')).data
export const getWalletLedger = async (id, params = {}) => (await api.get(`/wallets/${id}/ledger`, { params })).data
export const transferWallet = async (id, payload) => (await api.post(`/wallets/${id}/transfer`, payload)).data
export const withdrawWallet = async (id, payload) => (await api.post(`/wallets/${id}/withdraw`, payload)).data