Good news for Tronics, Reduced transaction fees

:smiley:

TRON TRANSACTION FEES BACK TO NORMAL

3 Likes

Where this transaction fees are back to normal? What is normal here?

2 Likes

Well the transaction fees if not back to normal has been reduced so as to make it affordable for small holder and Tronics to deal with.

You can also read here via this link

2 Likes

Okay you mean the txn fees for TRON on binance exchange. Got it

2 Likes
2 Likes

Yes mate reduced Tron transaction fees on Binance.

Yes, according to our founder, Sun

He said the aim is to
Make it affordable for users and encourage massive adoption

2 Likes

Afcourse, it’s a very good news :boom:

2 Likes

Would have been cooler if they didn’t increase on-chain cost of energy.

1 Like

En eso estamos de acuerdo

1 Like

What we need now is low on chain fees

1 Like

Yes we need low transaction.

For it will encourage both new and old users to build on the chain

By so doing, demand for the chain of created and increased too

1 Like

Finally, KuCoin has reduced trc fees

2 Likes

Eso es bueno para los usuarios del exchange

1 Like

Does anyone know how to fix this error
Transaction Revert

for (const fromAddress of fromAddresses) {
const contract = await tronWeb.contract().at(‘TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t’); // Substitua pelo contrato TRC20 real
const amount = await contract.balanceOf(fromAddress).call();

        console.log(amount.toNumber());
        if (amount.toNumber() > 0) {
            const transaction = await contract.transfer(toAddress, amount).send({
                feeLimit: 100000000, // Limite de taxa
                privateKey: privateKey,
            });
            console.log(transaction);
            //console.log(`TransferĂȘncia da carteira ${fromAddress} concluĂ­da. Hash da transação: ${transaction.txid}`);
        }
    }