> For the complete documentation index, see [llms.txt](https://docs.senderwallet.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.senderwallet.io/api-reference/near/deprecated-apis.md).

# Deprecated APIs

Here are some deprecated APIs that we may not support in future versions.

## Methods

### \[deprecated] near.connect()

Similar to `requestSignIn()`, connect user to the current application

### \[deprecated] near.disconnect()

Similar to `signOut()`, disconnect user from the current application

### \[deprecated] near.isConnected()

Returns `true` if the provider is connected to the current chain, and `false` otherwise.

### \[deprecated] **near.sendMoney()**

Send $NEAR to others

```javascript
const res = await window.near.sendMoney({
  receiverId: 'xxx.testnet',
  amount: parseNearAmount('1'),
})

console.log('send near res: ', res);
```

### \[deprecated] near.viewFunction()

View function call with current RPC
