Skip to content

Commit

Permalink
chore: tsdoc - bicoBundlerClient
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler committed Sep 19, 2024
1 parent fc3957e commit 427ce0e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/sdk/clients/createBicoBundlerClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ type BicoBundlerClientConfig = Omit<BundlerClientConfig, "transport"> &
}
>

/**
* Creates a Bico Bundler Client with a given Transport configured for a Chain.
*
* @param parameters - Configuration for the Bico Bundler Client
* @returns A Bico Bundler Client
*
* @example
* import { createBicoBundlerClient, http } from '@biconomy/sdk'
* import { mainnet } from 'viem/chains'
*
* const bundlerClient = createBicoBundlerClient({ chain: mainnet });
*/
export const createBicoBundlerClient = (
parameters: BicoBundlerClientConfig
): BundlerClient => {
Expand Down

0 comments on commit 427ce0e

Please sign in to comment.