Skip to main content

/wallet/delegateresource REST API Endpoint

Delegate bandwidth or energy resources to other accounts in Stake2.0.

Updated on
Oct 4, 2023

/wallet/delegateresource REST API Endpoint

Body Parameters

owner_address
string
REQUIRED
The owner address, encoded in hexString
receiver_address
string
REQUIRED
The resource receiver address
balance
integer
REQUIRED
The amount of TRX staked for resources to be delegated, unit is sun
resource
string
REQUIRED
The TRX stake type, it can be BANDWIDTH or ENERGY
lock
boolean
REQUIRED
When set true, delegated resources cannot be undelegated within 3 days. If the owner decides to delegate the same type of resources to the same address while the lock time is still active, the lock time will be reset to 3 days
permission_id
integer
The ID of the permission that is required to execute the transaction
visible
boolean
A boolean value indicating whether the address is in base58 format

Returns

visible
A boolean value indicating whether the transaction was successful
txid
The transaction id
raw_data
An object that contains the transaction details with the following fields:
contract
An array of objects containing information about the delegate resource contract
parameter
An object containing the delegate resource contract parameters
value
An object containing the values of the delegate resource contract parameters
resource
The type of resource
owner_address
The owner account address
receiver_address
The receiver address
balance
The resource delegate amount, unit is sun
lock
When true, delegated resources cannot be undelegated within 3 days. If the owner decides to delegate the same type of resources to the same address while the lock time is still active, the lock time will be reset to 3 days
type_url
The URL of the freeze balance contract type
type
The type of the freeze balance contract
ref_block_bytes
The ref block bytes of the transaction
ref_block_hash
The ref block hash of the transaction
expiration
This is a timestamp indicating the expiration time of the transaction in milliseconds
timestamp
This is a timestamp indicating the time at which the transaction was created in milliseconds
raw_data_hex
The hexadecimal representation of the raw data in the transactio
Request
1
curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/delegateresource \
2
--header 'accept: application/json' \
3
--header 'content-type: application/json' \
4
--data '
5
{
6
"owner_address": "OWNER_ADDRESS",
7
"receiver_address": "RECEIVER_ADDRESS",
8
"balance": 1000000,
9
"resource": "BANDWIDTH",
10
"lock": false,
11
"visible": true
12
}
13
'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free