An open API service indexing awesome lists of open source software.

https://github.com/descartesnetwork/sen-connector

🤝 Senhub Connector to power your DApps with Senhub Platform
https://github.com/descartesnetwork/sen-connector

Last synced: 9 months ago
JSON representation

🤝 Senhub Connector to power your DApps with Senhub Platform

Awesome Lists containing this project

README

          

# 🤝 Senhub Connector

[![https://img.shields.io/npm/v/@sentre/connector](https://img.shields.io/npm/v/@sentre/connector)](https://www.npmjs.com/package/@sentre/connector)
[![https://img.shields.io/npm/dw/@sentre/connector](https://img.shields.io/npm/dm/@sentre/connector)](https://www.npmjs.com/package/@sentre/connector)
[![https://img.shields.io/bundlephobia/min/@sentre/connector](https://img.shields.io/bundlephobia/min/@sentre/connector)](https://www.npmjs.com/package/@sentre/connector)
[![https://img.shields.io/github/issues-raw/descartesnetwork/sen-connector](https://img.shields.io/github/issues-raw/descartesnetwork/sen-connector)](https://github.com/DescartesNetwork/sen-connector)
[![https://img.shields.io/github/license/descartesnetwork/sen-connector](https://img.shields.io/github/license/descartesnetwork/sen-connector)](https://github.com/DescartesNetwork/sen-connector)

[![https://img.shields.io/twitter/follow/SentreProtocol?style=social](https://img.shields.io/twitter/follow/SentreProtocol?style=social)](https://twitter.com/SentreProtocol)

By the integration, your DApps can fully communicate with Senhub platform.

## Installation

```bash
npm i @sentre/connector
```

or,

```bash
yarn add @sentre/connector
```

## To use

### With [@solana/wallet-adapter](https://solana-labs.github.io/wallet-adapter/)

```ts
import {
PhantomWalletAdapter,
SlopeWalletAdapter,
} from '@solana/wallet-adapter-wallets'
import { SentreWalletAdapter } from '@sentre/connector'

// Add SentreWalletAdapter with your provided app id to @solana/wallet-adapter
// Example: https://solana-labs.github.io/wallet-adapter/

const appId = 'my-app-id'
const wallets = [
new SentreWalletAdapter({ appId }),
new PhantomWalletAdapter(),
new SlopeWalletAdapter(),
// Other wallets
]
```

### Manual integration

```ts
import { WalletConnector } from '@sentre/connector'

const wallet = new WalletConnector('my_app_id')
const isConnected = await wallet.isConnected()
if (isConnected) {
// Get the address
const address = await wallet.getAddress()
// Sign a transaction
const signedTransaction = await wallet.signTransaction(transaction)
// Sign multiple transactions
const signedTransactions = await wallet.signAllTransactions(transactions)
// Sign a message
const { signature, address, message } = await wallet.signMessage(
'the message needs to be signed',
)
}
```

### Testing

👉 Test your DApps locally by [Senhub Connector Tester](https://hub.sentre.io/app/connector_tester?autoInstall=true).

[![action](https://github.com/DescartesNetwork/sen-connector/blob/master/button.png?raw=true)](https://hub.sentre.io/app/connector_tester?autoInstall=true)

## OAuth

This module is heavily inspired by [JWT](https://www.npmjs.com/package/jsonwebtoken). However, JST (Json Solana Token) adopted Solana wallet adapter standard as the main cryptography mechanism.

### Usage

```ts
import { OAuth } from '@sentre/connector'

const jst = OAuth.issue({ issuer: 'hub.sentre.io' }) // Default at one month of expiration

// On client side
// To sign the jst to get bearer
const bearer = await OAuth.sign(jst, signer)

// On server side
// To verify the bearer
const ok = OAuth.verify(bearer)
// If you want to catch error messages
try {
OAuth.verify(bearer, true)
} catch (er: any) {
console.log(`Verify failed because: ${er.message}`)
}

// To read bearer details
const { publicKey, signature, jst } = OAuth.parse(bearer)
```

### Examples

👉 [Authenticate with Keypair](https://github.com/DescartesNetwork/sen-connector/blob/master/tests/oauth.test.ts)