# Getting Started

:exclamation:*You are reviewing an outdated version of the Pontem Wallet documentation! We recommend switching to the most recent version from the new* [*official website*](https://docs.pontemwallet.xyz/)! :warning:<br>

## Getting Started

Use the v1.3.0 or higher version of Pontem Wallet to go through the current docs.

### Wallets Adapter

If you want to use [Aptos Wallet Adapter](https://github.com/hippospace/aptos-wallet-adapter), navigate to the [Wallet Adapter documentation](/01.-wallet/wallet_adapter.md) and skip the current doc.

#### Provider Browser Detection

When the page is loaded, the provider is integrated into the site page. You can check it this way:

```javascript
if (typeof window.pontem !== 'undefined') {
  console.log('Pontem Wallet is installed!');
}
```

After that, you need to request access to the site from the user, for this use the connect method:

```javascript
window.pontem.connect()
    .then(address => console.log(`Access for address ${address} allowed by user`))
    .catch(e => console.log('Access denied by user', e))
```

After that, you can fully interact with all wallet methods.


---

# 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://docs.pontem.network/01.-wallet/getting_started.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.
