Init Transfer Nft Item to Client
Initialize send Nft item to client. It returns unsigned transaction data.
Init Transfer Nft Item to Client
POST
{{server-url}}/web3/client/transfer
It returns transaction hash of blockchain transaction.
Headers
Name | Type | Description |
---|---|---|
Authorization* | String | UUID formatted access token |
Content-Type* | String | application/json |
PROJECT-ID* | String | UUID formatted projectId information |
Request Body
Name | Type | Description |
---|---|---|
address | String | Represents sender's wallet address |
amount | Number | Represents count of Nft item |
nftItemId | Number | Represents Nft item's identifier, which will send after this transaction |
Example Response Body
Response Fields
Key | Type | Description |
---|---|---|
from | String | Sender address |
to | String | Receiver address (it will be contract address for our case) |
data | String | Represents encoded transaction content |
gas | Number | Represents transaction fee parameter |
gasPrice | String | Represents transaction fee parameter |
nonce | Number | Count of sender transactions |
chainId | Number | Represents the id information of the network where the transaction will perform. |
Last updated