16 lines
391 B
JavaScript
16 lines
391 B
JavaScript
|
import { WALLET_LIST_PENDING, WALLET_LIST_SUCCESS, WALLET_LIST_ERROR } from "../types/WalletType";
|
||
|
|
||
|
|
||
|
export const fetchWalletListPending = () => ({
|
||
|
type: WALLET_LIST_PENDING
|
||
|
});
|
||
|
|
||
|
export const fetchWalletListSuccess = (res) => ({
|
||
|
type: WALLET_LIST_SUCCESS,
|
||
|
result: res,
|
||
|
});
|
||
|
|
||
|
export const fetchWalletListError = (error) => ({
|
||
|
type: WALLET_LIST_ERROR,
|
||
|
result: error
|
||
|
});
|