🔗buyNFT
Description
The buyNFT
function facilitates the purchase of a non-fungible token (NFT) on a blockchain-based marketplace.
The function requires the blockchain name, the private key of the user's wallet, the ID of the token, the payment amount in cryptocurrency, and the address of the NFT contract.
Parameters
Parameter | Type | Description |
---|---|---|
| string | The name of the blockchain on which the NFT is being sold (e.g., Ethereum, Binance Smart Chain). |
| string | The private key of the user's wallet. |
| string | The ID of the token being purchased. |
| string | The amount of cryptocurrency being sent as payment. |
| string | The address of the NFT contract. |
Response
Parameter | Type | Description |
---|---|---|
| number | A code indicating whether the transaction was successful (1) or unsuccessful (0). |
| string | The transaction hash of the purchase, returned if the transaction was successful. |
| string | An error message, returned if the transaction was unsuccessful. The message describes the error. |
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 buyNFT
request using the Nest SDK:
Response
Use Cases
Crypto Wallets: The function can be used by crypto wallets to allow users to purchase NFTs on a blockchain-based marketplace.
NFT Marketplaces: The function can be used by NFT marketplaces to facilitate the purchase of NFTs using cryptocurrency.
Cryptocurrency Exchanges: The function can be used by cryptocurrency exchanges to enable users to buy and sell NFTs using cryptocurrency.
Last updated