How can I read tron smartcontract storage?

Viewed 165

I want to read the TRON smart contract storage. I know, that at ethereum we can use web3.eth.getStorageAt(). I can't find any similar or equivalent implementation for TronWeb API.

1 Answers

Tron does not provide this API.

The only way to read contract storage is by using a public variable.

Related