We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TransactionInfo interface at the moment (main branch):
export interface TransactionInfo { id: string; fee: number; blockNumber: number; blockTimeStamp: number; contractResult: string[]; contract_address: string; receipt: { energy_usage: number; energy_fee: number; origin_energy_usage: number; energy_usage_total: number; net_usage: number; net_fee: number; result: string; energy_penalty_total: number; }; log: { address: Address; topics: string[]; data: string; }[]; result?: 'FAILED'; resMessage: string; withdraw_amount: number; unfreeze_amount: number; withdraw_expire_amount: number; cancel_unfreezeV2_amount: HTTPMap<string, number>; exchange_id: string; }
Docs interface: https://developers.tron.network/reference/gettransactioninfobyid
The text was updated successfully, but these errors were encountered:
It looks like there are some other fields missing too. We'll add it in our next version.
Sorry, something went wrong.
No branches or pull requests
TransactionInfo interface at the moment (main branch):
Docs interface: https://developers.tron.network/reference/gettransactioninfobyid
The text was updated successfully, but these errors were encountered: