https://github.com/BitteProtocol/wallet
The Bitte Wallet Integration package.
https://github.com/BitteProtocol/wallet
Last synced: 5 days ago
JSON representation
The Bitte Wallet Integration package.
- Host: GitHub
- URL: https://github.com/BitteProtocol/wallet
- Owner: BitteProtocol
- Created: 2025-01-13T17:02:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-09T15:55:58.000Z (about 1 year ago)
- Last Synced: 2026-04-26T18:25:50.432Z (about 2 months ago)
- Language: TypeScript
- Size: 14.8 MB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-bitte - @bitte-ai/wallet
README
# @bitte-ai/wallet
This is the [Bitte Wallet](https://wallet.bitte.ai) SDK package.
check our [React integration](https://github.com/BitteProtocol/react/blob/main/README.md)


## Installation and Usage
The easiest way to use this package is to install it from the NPM registry,
```bash
# Using Yarn
yarn add @bitte-ai/wallet
# Using NPM.
npm install @bitte-ai/wallet
# Using PNPM.
pnpm install @bitte-ai/wallet
```
Then use it in your dApp:
```ts
import { setupWalletSelector } from "@near-wallet-selector/core";
import { setupBitteWallet } from "@bitte-ai/wallet";
const wallet = setupBitteWallet({
network: 'mainnet',
});
const selector = await setupWalletSelector({
network: "mainnet",
modules: [wallet],
});
```
## setupBitteWallet
- `network:` Near Networks
- `walletUrl:` valid wallet urls
## Troubleshooting
**Client-side only:**
The wallet runs only on client-side.
Any other questions or issues you can contact support on our [Telegram Channel](https://telegram.me/mintdev).
## License
This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0).