Вернул estimate_gas
.build_transaction({
'chainId': 1,
'gas': gas_estimate,
'gasPrice': web3.to_wei('1000000000', 'gwei'),
'nonce': web3.eth.get_transaction_count(address_id),
gas_estimate = contract.functions.transferFrom(
from_address, address_id, 5789
).estimate_gas({'from': from_address})
print(f"Рекомендованный лимит газа: {gas_estimate}")