curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/marketbuyasset \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "41b487cdb2d8dc7b2a8e5e7e7b4e3e8b8b8b8b8b",
"sell_token_id": "",
"sell_token_quantity": "100000000",
"buy_token_id": "1002000",
"buy_token_quantity": "1000000"
}'
{
"visible": true,
"txID": "<string>",
"raw_data": {
"contract": [
"<any>"
],
"ref_block_bytes": "<string>",
"ref_block_hash": "<string>",
"expiration": 123,
"timestamp": 123
},
"raw_data_hex": "<string>"
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/marketbuyasset \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "41b487cdb2d8dc7b2a8e5e7e7b4e3e8b8b8b8b8b",
"sell_token_id": "",
"sell_token_quantity": "100000000",
"buy_token_id": "1002000",
"buy_token_quantity": "1000000"
}'
{
"visible": true,
"txID": "<string>",
"raw_data": {
"contract": [
"<any>"
],
"ref_block_bytes": "<string>",
"ref_block_hash": "<string>",
"expiration": 123,
"timestamp": 123
},
"raw_data_hex": "<string>"
}
owner_address
— hexadecimal address of the account placing the buy ordersell_token_id
— token ID being offered (use empty string for TRX)sell_token_quantity
— quantity of tokens to offer in exchangebuy_token_id
— token ID desired to purchase (use empty string for TRX)buy_token_quantity
— quantity of tokens desired to purchasevisible
— boolean indicating whether addresses are in visible formattxID
— unique transaction ID for the buy order transactionraw_data
— raw transaction data containing:
contract
— array with market buy order contract detailsref_block_bytes
— reference block bytes for transaction validationref_block_hash
— hash of the reference blockexpiration
— transaction expiration timestamptimestamp
— transaction creation timestampraw_data_hex
— complete transaction data encoded in hexadecimal formatwallet/marketbuyasset
method is used for:
Market buy order transaction
The response is of type object
.
Was this page helpful?