🫧Bundler API

All the Bundler API endpoints are listed below

  • eth_sendUserOperation This endpoint lets you send a group of actions (called a UserOperation) to a bundler service on the network. If everything goes well, you'll get a unique code to track the progress of your transaction. If there's an issue, you'll receive an error code and explanation to help you troubleshoot.

  • eth_estimateUserOperationGas This endpoint lets you send a group of actions (called a UserOperation) to a bundler service on the network. If everything goes well, you'll get a unique code to track the progress of your transaction. If there's an issue, you'll receive an error code and explanation to help you troubleshoot.

  • eth_getUserOperationByHash Returns a user operation based on the given user operation hash. It returns the user operation along with extra information including what block/transaction it was included in. If the operation has not yet been included, it will return null.

  • eth_getUserOperationReceipt Endpoint acts like a receipt tracker. Simply provide the unique hash you received when submitting your UserOperation, and this function will attempt to retrieve any associated metadata. If your transaction has been successfully processed and included in a block, you'll receive a detailed receipt containing valuable information. However, if the transaction is still pending, the function will return "null" until it's finalized.

  • skandha_getGasPrice Returns a fee per gas that is an estimate of how much users should set as a priority fee in User Operations for Skandha endpoints.

Last updated