History
Check what transactions you made in the past, or export it.
The transaction history displays all deposits and withdrawals from the user wallet. When building applications, try to keep the data as shallow as possible to reduce the data fetched. We added filter parameters to reduce the number of entries per page or pick a specific coin types that are referenced by their respective tokenID.
var parameters = {
nextPageToken: 'optional',
serviceId: 'optional',
walletID: 'optional',
type: 'optional',
}
const response = await relysia.wallet.v1.history(parameters);
We currently integrate token transactions into the /history endpoint.
get
https://api.relysia.com
/v1/history
Get your transaction history.
Last modified 10mo ago