With account abstraction we want to give users who are
new to blockchain as simple a user experience as possible.Showing the gas fee in USD rather than the native token will
make it a lot easier to understand for newer users, and we
can do this in a couple of simple steps.First we start by estimating the current batch of UserOps.
This will be the units of gas used.
Copy
const estimation = await primeSdk.estimate();
Then we want to get the gas in wei for this batch.