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

# DebugEventBrowserProvider

```ts theme={null}
type DebugEventBrowserProvider: {
  "action": "sendEip1193Payload";
  "payload": {
     "method": string;
     "params": any[];
    };
 } | {
  "action": "receiveEip1193Result";
  "result": any;
 } | {
  "action": "receiveEip1193Error";
  "error": Error;
};
```

The possible additional events dispatched when using the `"debug"` event on a
[**BrowserProvider**](/sdk/content/classes/BrowserProvider).

## Source

[providers/provider-browser.ts:40](https://github.com/dominant-strategies/quais.js/blob/c1c12d43f9d34c6baad2b0542bd6d0acd6fefcbf/src/providers/provider-browser.ts#L40)
