0.1.2 ā€¢ Published 2 years ago

@sentre/connector v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

šŸ¤ Senhub Connector

https://img.shields.io/npm/v/@sentre/connector https://img.shields.io/npm/dw/@sentre/connector https://img.shields.io/bundlephobia/min/@sentre/connector https://img.shields.io/github/issues-raw/descartesnetwork/sen-connector https://img.shields.io/github/license/descartesnetwork/sen-connector

https://img.shields.io/twitter/follow/SentreProtocol?style=social

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

Installation

npm i @sentre/connector

or,

yarn add @sentre/connector

To use

With @solana/wallet-adapter

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

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.

action

OAuth

This module is heavily inspired by JWT. However, JST (Json Solana Token) adopted Solana wallet adapter standard as the main cryptography mechanism.

Usage

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

0.1.1-next.1

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.2-next.1

2 years ago

0.0.60-alpha.0

2 years ago

0.0.60-alpha.1

2 years ago

0.1.0

2 years ago

0.1.0-next.3

2 years ago

0.0.62

2 years ago

0.1.0-next.4

2 years ago

0.0.63

2 years ago

0.0.60

2 years ago

0.0.61

2 years ago

0.1.0-next.0

2 years ago

0.1.0-next.1

2 years ago

0.1.0-next.2

2 years ago

0.0.40

2 years ago

0.0.41

2 years ago

0.0.42

2 years ago

0.0.43

2 years ago

0.0.44

2 years ago

0.0.45

2 years ago

0.0.46

2 years ago

0.0.47

2 years ago

0.0.59-next.11

2 years ago

0.0.59-next.10

2 years ago

0.0.37

2 years ago

0.0.38

2 years ago

0.0.39

2 years ago

0.0.31

2 years ago

0.0.32

2 years ago

0.0.33

2 years ago

0.0.34

2 years ago

0.0.35

2 years ago

0.0.36

2 years ago

0.0.59

2 years ago

0.0.51

2 years ago

0.0.52

2 years ago

0.0.53

2 years ago

0.0.54

2 years ago

0.0.59-next.6

2 years ago

0.0.55

2 years ago

0.0.59-next.7

2 years ago

0.0.56

2 years ago

0.0.59-next.8

2 years ago

0.0.57

2 years ago

0.0.59-next.9

2 years ago

0.0.58

2 years ago

0.0.59-next.2

2 years ago

0.0.59-next.3

2 years ago

0.0.59-next.4

2 years ago

0.0.59-next.5

2 years ago

0.0.59-next.1

2 years ago

0.0.50

2 years ago

0.0.48

2 years ago

0.0.49

2 years ago

0.0.30

2 years ago

0.0.29

2 years ago

0.0.28

2 years ago

0.0.27

2 years ago

0.0.26

2 years ago

0.0.25

2 years ago

0.0.24

2 years ago

0.0.23

2 years ago

0.0.22

2 years ago

0.0.21

2 years ago

0.0.20

2 years ago

0.0.19

2 years ago

0.0.18

2 years ago

0.0.17

2 years ago

0.0.16

2 years ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago