curl --request POST \
--url https://api.lootexplus.com/v1/project-wallet/transfer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "native",
"chainId": 1,
"recipientAddress": "0x1234567890123456789012345678901234567890",
"amount": "1000000000000000000"
}
'{
"id": "<string>",
"jobId": "<string>",
"status": "<string>",
"projectId": "<string>",
"transactionHash": "<string>",
"chainId": 123,
"from": "<string>",
"to": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"value": "<string>",
"data": "<string>",
"gasUsed": "<string>",
"gasPrice": "<string>",
"totalGasFee": "<string>",
"metadata": {}
}Transfer Tokens
Transfer native tokens, ERC20, ERC721, or ERC1155 to a recipient address
curl --request POST \
--url https://api.lootexplus.com/v1/project-wallet/transfer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "native",
"chainId": 1,
"recipientAddress": "0x1234567890123456789012345678901234567890",
"amount": "1000000000000000000"
}
'{
"id": "<string>",
"jobId": "<string>",
"status": "<string>",
"projectId": "<string>",
"transactionHash": "<string>",
"chainId": 123,
"from": "<string>",
"to": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"value": "<string>",
"data": "<string>",
"gasUsed": "<string>",
"gasPrice": "<string>",
"totalGasFee": "<string>",
"metadata": {}
}Authorizations
Secret key for authentication
Body
Transfer request details
The type of token to transfer. (Options: native, erc20, erc721, erc1155)
native, erc20, erc721, erc1155 "native"
The chain ID of the token to transfer
1868
Recipient wallet address
"0x742D35Cc6634C0532925a3b8D4c4D9e2c8E0B3E9"
Contract address - required for ERC20, ERC721, and ERC1155 transfers
"0x1234567890123456789012345678901234567890"
Transfer amount in smallest unit (wei for ETH, base units for tokens) - required for native, ERC20, and ERC1155 transfers. Must be a positive integer string without decimals.
"1000000000000000000"
Token ID - required for ERC721 and ERC1155 transfers. Must be a positive integer string.
"123"
Additional data for ERC1155 transfers (optional)
Additional metadata for the transfer (optional)
Response
Transfer successful