sendTransaction
method handles gas estimation, nonce management, transaction signing,
and broadcasting for EVM accounts. This means that you don’t need to specify these details when you submit
a transaction onchain. CDP’s nonce management system ensures that the nonce is set correctly for each transaction,
and the gas price is estimated to ensure that the transaction is sent at a reasonable price.
You can read more about the sendTransaction
API in the API Reference.
sendTransaction
method.
You can also refer to our example code in
Typescript and
Python.