I'm making web3py contract transaction, using this code:
txn = contract.functions.bid(
tokenId,
price
).buildTransaction({
'chainId': 56,
'gas': gasLimit,
'gasPrice': web3.toWei('5', 'gwei'),
'nonce': nonce
})
signed_txn = web3.eth.account.sign_transaction(txn, private_key=privateKey)
web3.eth.sendRawTransaction(web3.toHex(signed_txn.rawTransaction))
Then, I check transaction status on Bscscan
The transaction appeared on Bscscan at 05:54:42, but sendRawTransaction was at 05:54:39 (3 secs difference). Is it possible to minimize this time difference?
HOW TO HANDLE TRANSACTION SPEED?
For greater speed adjust the gas price (transaction fee) for your transaction. However, be aware that Higher GWEI = Higher Speed = Higher Rates.
If you don't define the gasPrice transaction object it will default to web3.eth.getGasPrice() which is often 5 gwei. [READ MORE]
USE 5 GWEI FOR STANDARD TRANSACTION SPEED
USE 6 GWEI FOR FAST TRANSACTION SPEED
USE 7 GWEI FOR VERY FAST TRANSACTION SPEED
USE 15 GWEI OR MORE FOR INSTANT TRANSACTION SPEED
Typically 7 GWEI is more than enough for most cases, being perhaps the best cost-benefit between speed and cost in gas fees.
However if you really need to guarantee instant transactions I recommend gasPrice of 15 GWEI or above.