# adapters

```javascript
(async() => {
    SOLPay.adapters.CURRENT_ADAPTER // Current wallet adapter
    SOLPay.adapters.PHANTOM // Phantom wallet adapter
    SOLPay.adapters.SOLFLARE // Solflare wallet adapter
    SOLPay.adapters.SLOPE // Slope wallet adapter
    SOLPay.adapters.GLOW // Glow wallet adapter
    SOLPay.adapters.EXODUS // Exodus wallet adapter

    await SOLPay.connectWallet(SOLPay.adapters.CURRENT_WALLET); // {"address": "..."}
    await SOLPay.connectWallet(SOLPay.adapters.PHANTOM); // {"address": "..."}
    await SOLPay.connectWallet(SOLPay.adapters.SOLFLARE); // {"address": "..."}
    await SOLPay.connectWallet(SOLPay.adapters.SLOPE); // {"address": "..."}
    await SOLPay.connectWallet(SOLPay.adapters.GLOW); // {"address": "..."}
    await SOLPay.connectWallet(SOLPay.adapters.EXODUS); // {"address": "..."}
})();
```

### Properties

* CURRENT\_ADAPTER - The adapter that is currently being used (leave the adapter field blank to use this adapter by default)
* PHANTOM - Phantom wallet adapter ([phantom.app](https://phantom.app/))
* SOLFLARE - Solflare wallet adapter ([solflare.com](https://solflare.com/))
* SLOPE - Slope wallet adapter ([slope.finance](https://slope.finance/))
* GLOW - Glow wallet adapter ([glow.app](https://glow.app/))
* EXODUS - Exodus wallet adapter ([exodus.com/browser-extension](https://www.exodus.com/browser-extension/))
* BRAVE - Brave wallet adapter ([brave.com/wallet](https://brave.com/wallet))


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://solpay-docs.solblaze.org/reference/sdk-reference/adapters.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
