⛏️getTransferFromAddress
Description
The getTransfersFromAddress
function is an asynchronous function used to retrieve transfer transactions from a specific address on a specified blockchain.
It returns the result containing the transfer transactions from the address.
Parameters
Parameter | Data Type | Description |
---|---|---|
| string | The address from which to retrieve transfer transactions. |
| string | The blockchain on which the address exists. |
| string | The environment or network of the blockchain. |
Response
Field | Data Type | Description |
---|---|---|
| number | The response code indicating the success or failure of the operation. |
| object[] | An array of transfer transactions from the specified address. |
Example Request and Response
Prerequisites
Before making requests with Nest SDK, you must have it installed.
You can install Nest SDK using either npm
or yarn
. Use the following commands to install Nest SDK:
Request
Here is an example of how to make a getTransferFromAddress
request using the Nest SDK:
Response
Use Cases
Retrieving transfer transactions: By invoking this function with the appropriate parameters, you can retrieve transfer transactions from a specific address on a specified blockchain.
Address validation: The function validates the address to ensure it is valid.
Sending HTTP request: The function sends an HTTP request to the blockchain explorer's API to fetch transfer transactions from the specified address.
Last updated