new TxHistoryApi()
- Version:
- 1.0
TxHistory service.
Methods
getV2HistoryFdTx(opts, callback)
Get Fee Delegation Transaction History Returns the history of fee delegation transactions. You can find out the KRW and USD price of the fees at the time of sending the transaction. If you add the `from` query parameter, only the transactions from a certain address will be returned.
Parameters:
| Name | Type | Description |
|---|---|---|
opts |
Object | Optional parameters |
callback |
TxHistoryApi~getV2HistoryFdTxCallback | The callback function, accepting three arguments: error, data, response data is of type: FDTransactionWithCurrencyResultList |
getV2HistoryFdTxTransactionHash(callback)
Get Fee Delegation Transaction History Returns a single fee delegation transaction. You can find out the KRW and USD price of the fees at the time of sending the transaction.
Parameters:
| Name | Type | Description |
|---|---|---|
callback |
TxHistoryApi~getV2HistoryFdTxTransactionHashCallback | The callback function, accepting three arguments: error, data, response data is of type: FDTransactionWithCurrencyResult |
Type Definitions
getV2HistoryFdTxCallback(error, data, response)
Callback function to receive the result of the getV2HistoryFdTx operation.
Parameters:
| Name | Type | Description |
|---|---|---|
error |
String | Error message, if any. |
data |
FDTransactionWithCurrencyResultList | The data returned by the service call. |
response |
String | The complete HTTP response. |
getV2HistoryFdTxTransactionHashCallback(error, data, response)
Callback function to receive the result of the getV2HistoryFdTxTransactionHash operation.
Parameters:
| Name | Type | Description |
|---|---|---|
error |
String | Error message, if any. |
data |
FDTransactionWithCurrencyResult | The data returned by the service call. |
response |
String | The complete HTTP response. |