> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bitski.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Injected Wallet

### Code Sample

Utilizing the Bitski SDK, you can easily add Bitski as an Injected Wallet option for your Dapps.

```tsx app.tsx theme={null}
import { Bitski } from 'bitski';

const bitski = new Bitski(
  'your-client-id'
  'https://your-callback-url.com/callback',
);

bitski.initialize();

// For a full list of networks, see: https://github.com/BitskiCo/bitski-js/blob/main/packages/bitski/src/index.ts#L282-L302
window.ethereum = bitski.getProvider({ networkName: 'mainnet' });
```

<Note>
  For more detailed integrations with our SDK using third-party Web3 libraries, see our [SDK documentation](/wallet-as-a-service/sdk/sdk-overview).
</Note>
