i need help com many parameters for sign a transaction.
What is "nonce"?
How i calculte gas value?
How i calculate gasPrice?
what is data field?
Chain ID 1 is a Mainnet?
I will using infura.
$transaction = new Transaction([
'nonce' => '0x'.$hexNonce,
'gas' => '0x'.$gas,
'gasPrice' => '0x'.$gasPrice,
'value' => '0x'.$hexValue,
'chainId' => 1,
'data' => '0x0'
]);