EstimateGasOptions

type EstimateGasOptions = Prettify<
{ transaction: PreparedTransaction<any> } & (
| { account: Account; from?: never }
| { account?: never; from?: string }
)
>;