Transactions
|-/redux
|
|-/transactions
|- index.ts
|- transactionsSlice.ts
|- transactionsThunks.tsHow to get transactions?
import {useAppDispatch} from 'LinkerStudio/core/hooks';
const dispatch = useAppDispatch();
dispatch(fetchAccountTransactions({}));Get specific transactions
Parameter
Type
Description
Transactions Request Example
Last updated