post https://api-sdk.lmnl.dev/api/wallet/get-transfer
Retrieves transaction details related to a wallet. Search can be conducted using either txid (transaction Id) or sequence Id.
Quick Navigation: Function Index
Get Transfer By Sequence Id
If the transaction type is 'send', it can be tracked using the 'sequenceID'.
Example Request Body
{
"wallet":{
"coin": "eth",
"walletId":3520
},
"sequenceId":"93544241-c00e-c754-3bd0-494567a67ee8"
}
Get Transfer by Transaction Id
If the transaction type is 'receive', this method is particularly useful. However, it can be employed for both 'send' and 'receive' transaction types.
Example Request Body
{
"wallet":{
"coin": "eth",
"walletId":1
},
"txId":"0x992ea09580d5c3c18cde5092dc96c9564c4945b42dafc1eba3f67b72b99f2efb"
}