0.0.33 • Published 3 months ago

@wepin/sdk-js v0.0.33

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

@wepin/sdk-js

npm version npm downloads

The Wepin SDK is designed for use in both Web environments. This package is exclusively available for use in web environments.

⚠️ Notice:

This package is only available for web environments and cannot be used in Android or iOS hybrid apps (Webview).

If you are using this package in a Server Side Rendering (SSR) environment, make sure to load the package only on the Client Side Rendering (CSR) side.

Please refer to the following code for implementation:

const initWepinSDK = async () => {
  const { WepinSDK } = await import('@wepin/sdk-js')
  const wepinSDK = new WepinSDK({
    appKey: '',
    appId: '',
  })
  await wepinSDK.init()
}

⏩ Document

typedoc

⏩ Get App ID and Key

After signing up for Wepin Workspace, go to the development tools menu and enter the information for each app platform to receive your App ID and App Key.

⏩ Install

To install the Wepin Widget SDK, you can use npm, yarn, or a CDN: Using npm:

npm install @wepin/sdk-js

Using yarn:

yarn add @wepin/sdk-js

Using CDN: You can also include the library directly via CDN by adding the following script tag to your HTML file:

<script src="https://cdn.jsdelivr.net/npm/@wepin/sdk-js/dist/umd/wepin-widget-sdk.umd.js"></script>

⏩ Import SDK

Using npm or yarn:

import { WepinSDK } from '@wepin/sdk-js'

Using CDN:

const { WepinSDK } = window.WepinWidgetSDK

⏩ Initialize

Create a new instance of WepinSDK and initialize it with your application's ID and key:

const wepinSdk = new WepinSDK({
  appId: 'your-wepin-app-id',
  appKey: 'your-wepin-app-key',
})

init

await wepinSdk.init(attributes?)

Parameters

  • attributes \ optional
    • type: This determines how the widget is displayed when Wepin is initiated. The default value is 'hide' and currently, only 'hide' is supported.
    • defaultLanguage: - defaultLanguage: The language to be displayed on the widget (default: 'en') Currently, only ko, en, and ja are supported.
    • defaultCurrency: The currency to be displayed on the widget (default: 'USD') Currently, only 'KRW','USD' and 'JPY' are supported.
    • loginProviders: optional An array of login providers to configure the widget.
      • If not provided, all available login providers will be displayed on the widget.
      • If an empty array is provided, only the email login function is available. (from version v0.0.3)

Example

await wepinSdk.init({
  type: 'hide',
  defaultLanguage: 'ko',
  defaultCurrency: 'KRW',
})

// google, apple login
await wepinSdk.init({
  type: 'hide',
  defaultLanguage: 'ko',
  defaultCurrency: 'KRW',
  loginProviders: ['google', 'apple'],
})

// only email login
await wepinSdk.init({
  type: 'hide',
  defaultLanguage: 'ko',
  defaultCurrency: 'KRW',
  loginProviders: [],
})

isInitialized

wepinSdk.isInitialized()

The isInitialized() method checks Wepin SDK is initialized.

Returns

  • \
    • true if Wepin SDK is already initialized.

changeLanguage

wepinSdk.changeLanguage({ language, currency })

Change the language and currency of the widget.

Parameters

  • language \ - The language to be displayed on the widget. Currently, only 'ko', 'en' and 'ja' are supported.
  • currency \ - The currency to be displayed on the widget. Currently, only 'KRW', 'USD' and 'JPY' are supported.

Returns

  • void

Example

wepinSdk.changeLanguage({
  currency: 'KRW',
  language: 'ko',
})

⏩ Method

Methods can be used after initialization of Wepin SDK.

getStatus

await wepinSdk.getStatus()

Returns lifecycle of wepin.

Parameters

  • void

Returns

  • Promise\
    • The lifecycle of the wepin is defined as follows.
      • 'not_initialized': if wepin is not initialized
      • 'initializing': if wepin is initializing
      • 'initialized': if wepin is initialized
      • 'before_login': if wepin is initialized but the user is not logged in
      • 'login': if the user is logged in
      • 'login_before_register': if the user is logged in but the user is NOT registered in wepin

Example

const status = await wepinSdk.getStatus()

openWidget

await wepinSdk.openWidget()

The openWidget() method displays the Wepin widget. If a user is not logged in, the widget will not open. Therefore, you must log in to Wepin before using this method. To log in to Wepin, use the loginWithUI method or the loginWepin method from the @wepin/login-js.

Parameters

  • void

Returns

  • Promise \

Example

await wepinSdk.openWidget()

closeWidget

wepinSdk.closeWidget()

The closeWidget() method closes Wepin widget.

Parameters

  • void

Returns

  • void

Example

wepinSdk.closeWidget()

loginWithUI

await wepinSdk.loginWithUI({email}?)

The loginWithUI() method returns the information of the user who is logged in. If no user is logged in, the Wepin widget will display a login page. To perform a login without the widget, use the loginWepin() method from @wepin/login-js instead.

Parameters

  • email \ optional
    • The email parameter allows users to log in using the specified email address, providing access to the login service.

Returns

  • Promise\
    • status \<'success'|'fail'>
    • userInfo \ optional
      • userId \
      • email \
      • provider \<'google'|'apple'|'naver'|'discord'|'email'|'external_token'>
      • use2FA \
    • userStatus: \ - The user's status of wepin login. including:
      • loginStatus: \<'complete' | 'pinRequired' | 'registerRequired'> - If the user's loginStatus value is not complete, it must be registered in the wepin.
      • pinRequired?:
    • token: \ - The user's token of wepin. including:
      • accessToken: \ - The access token.
      • refreshToken: \ - The refresh token.
    • walletId \

Example

//without email
const userInfo = await wepinSdk.loginWithUI()
//with email
const userInfo = await wepinSdk.loginWithUI({ email })
  • response
{
  "status": "success",
  "userInfo": {
    "userId": "120349034824234234",
    "email": "abc@gmail.com",
    "provider": "google",
    "use2FA": true
  }
}

register

await wepinSdk.register()

Register the user with Wepin. After joining and logging in, the Register page of the Wepin widget opens and registers (wipe and account creation) the Wepin service. Available only if the life cycle of the WepinSDK is login_before_register. After calling the loginWepin() method in @wepin/login-js, if the loginStatus value in the userStatus is not 'complete', this method must be called.

Parameters

  • void

Returns

  • Promise\
    • status \<'success'|'fail'>
    • userInfo \ optional
      • userId \
      • email \
      • provider \<'google'|'apple'|'naver'|'discord'|'email'|'external_token'>
      • use2FA \
    • userStatus: \ - The user's status of wepin login. including:
      • loginStatus: \<'complete' | 'pinRequired' | 'registerRequired'> - If the user's loginStatus value is not complete, it must be registered in the wepin.
      • pinRequired?:
    • token: \ - The user's token of wepin. including:
      • accessToken: \ - The access token.
      • refreshToken: \ - The refresh token.
    • walletId \

Exception

Example

const userInfo = await wepinSdk.register()

registerUserEmail

await wepinSdk.registerUserEmail(param)

The registerUserEmail function registers an email for accounts from OAuth providers that do not already have an email associated with them.

Supported Version

Supported in version 0.0.18 and later

Parameters

  • provider \ - Provider for Firebase login. The value must be one of the supported login provider names in lowercase, such as 'google', 'naver', 'discord', 'apple', 'facebook', or 'line'. Please refer to Wepin Social Login Auth Provider documentation to check the supported login providers.
  • idToken \ - id token value to be used for login
  • accessToken \ - access token value to be used for login

Return Value

  • Promise\
    • status \<'success'|'fail'>
    • userInfo \ optional
      • userId \
      • email \
      • provider \<'google'|'apple'|'naver'|'discord'|'email'|'external_token'>
      • use2FA \
    • userStatus: \ - The user's status of wepin login. including:
      • loginStatus: \<'complete' | 'pinRequired' | 'registerRequired'> - If the user's loginStatus value is not complete, it must be registered in the wepin.
      • pinRequired?:
    • token: \ - The user's token of wepin. including:
      • accessToken: \ - The access token.
      • refreshToken: \ - The refresh token.
    • walletId \

Example

await wepinSdk.registerUserEmail({
  provider: 'google',
  idToken: 'google-idToken',
})

getLoginSession

await wepinSdk.getLoginSession(prevToken)

The getLoginSession method retrieves and refreshes the Firebase authentication token. If a previous token is provided, it updates the stored token before returning the latest authentication details.

Parameters

  • prevToken \ optional - A previously issued token. This token represents the user's authenticated session. If provided, it updates the stored Firebase token with prevToken before returning the token information. including:
    • firebaseToken\ - The user's token of firebase
      • provider\ - The authentication provider (e.g., google, apple).
      • idToken\ - The Firebase authentication ID token.
      • refreshToken\ - The refresh token used to obtain a new ID token when expired.
    • wepinToken\ - The user's token of wepin.
      • accessToken\ - The access token.
      • refreshToken\ - The refresh token.

Return Value

  • Promise\
    • firebaseToken\ - The user's token of firebase. including:
      • provider\ - The authentication provider (e.g., google, apple).
      • idToken\ - The Firebase authentication ID token.
      • refreshToken\ - The refresh token used to obtain a new ID token when expired.
    • wepinToken\ - The user's token of wepin. including:
      • accessToken\ - The access token.
      • refreshToken\ - The refresh token.

Example

const prevToken = await wepinSdk.getLoginSession()
const newToken = await wepinSdk.getLoginSession(prevToken)

logout

await wepinSdk.logout()

The logout() method performs a wepin logout.

Parameters

  • void

Returns

  • Promise \

getAccounts

await wepinSdk.getAccounts()
await wepinSdk.getAccounts(options?)

The getAccounts() method returns user accounts. It is recommended to use getAccounts() method without argument to get all user accounts. It can be only usable after widget login.

Parameters
  • options:
    • networks: \ optional A list of network names to filter the accounts.
      • network \ optional
    • withEoa: \ optional If AA accounts are included, whether to include EOA accounts

Returns

  • Promise \<Account[]> - A promise that resolves to an array of the user's accounts.
    • address \
    • network \
    • contract \ optional token contract address.
    • isAA \ optional Whether it is aa account or not

Example

const result = await wepinSdk.getAccounts({
  networks: ['Ethereum'],
  withEoa: true,
})
  • response
[
  {
    "address": "0x0000001111112222223333334444445555556666",
    "network": "Ethereum"
  },
  {
    "address": "0x0000001111112222223333334444445555556666",
    "network": "Ethereum",
    "contract": "0x777777888888999999000000111111222222333333"
  },
  {
    "address": "0x4444445555556666000000111111222222333333",
    "network": "Ethereum",
    "isAA": true
  }
]

getBalance

await wepinSdk.getBalance(accounts)
await wepinSdk.getBalance()

It returns the account's balance information. It can be only usable after widget login. It use getBalance() method without argument to get all user accounts.

Parameters

  • accounts \<Account[]> optional
    • network \
    • address \
    • isAA \ optional Whether it is aa account or not

Returns

  • Promise \<AccountBalanceInfo[]>
    • network \
    • address \
    • symbol \ - symbol of account
    • balance \ - balance of account
    • tokens \<Array\> - token balance information for account
      • symbol \ - token symbol
      • balance \ - token balance
      • contract \ - token contract address

Example

const result = await wepinSdk.getBalance([
  {
    address: '0x0000001111112222223333334444445555556666',
    network: 'Ethereum',
  },
])
  • response
[
  {
    "network": "Ethereum",
    "address": "0x0000001111112222223333334444445555556666",
    "symbol": "ETH",
    "balance": "1.1",
    "tokens": [
      {
        "contract": "0x123...213",
        "symbol": "TEST",
        "balance": "10"
      }
    ]
  }
]

send

await wepinSdk.send({account, txData?})

It returns the sent transaction id information. It can be only usable after widget login.

Parameters

  • account \
    • network \
    • address \
  • txData \ optional
    • to \
    • amount \

Returns

  • Promise \
    • txId \

Example

const result = await wepinSdk.send({
  account: {
    address: '0x0000001111112222223333334444445555556666',
    network: 'Ethereum',
  },
  txData: {
    to: '0x9999991111112222223333334444445555556666',
    amount: '0.1',
  },
})
  • response
{
  "txId": "0x76bafd4b700ed959999d08ab76f95d7b6ab2249c0446921c62a6336a70b84f32"
}

finalize

await wepinSdk.finalize()

The finalize() method finalizes the Wepin SDK.

Parameters

  • Promise\

Returns

  • void

Example

await wepinSdk.finalize()

⏩ WepinSDK Events Registration

Registering WepinSDK events allows you to trigger responses based on changes in the user's connection status. WepinSDK triggers specific events such as wepinLifeCycleChange, send_in_process, send_complete, and more. Generally, this is not a mandatory step and is only performed when necessary.

on(EVENT, CALLBACK)

WepinSDK defines the following events to monitor state changes.

Events

Event NameWEPIN_SDK_EVENTSEvent TextDescription
wepinLifeCycleChangeWEPIN_SDK_EVENTS.WEPIN_LIFECYCLE_CHANGE“wepinLifeCycleChange”Triggered when the lifeCycle of WepinSDK changes
send_in_processWEPIN_SDK_EVENTS.SEND_IN_PROGRESSsend_in_progressTriggered when a send is in progress
send_completeWEPIN_SDK_EVENTS.SEND_COMPLETEsend_completeTriggered when a send is complete

Example

import { WEPIN_SDK_EVENTS, WepinLifeCycle, IWepinUser, WepinSDK } from "@wepin/sdk-js";

const subscribeWepinEvents = (wepinSDK: WepinSDK) => {
  wepinSDK.on(
    WEPIN_SDK_EVENTS.WEPIN_LIFECYCLE_CHANGE,
    (lifecycle: WepinLifeCycle, userInfo?: IWepinUser) => {
      console.log('wepinLifeCycleChange', lifecycle)
      if (lifecycle == 'login' || lifecycle === 'login_before_register') {
        console.log('userInfo', userInfo)
      }
    }
  )
  wepinSDK.on(WEPIN_SDK_EVENTS.SEND_IN_PROGRESS, () => {
    console.log('send_in_progress')
  })
  wepinSDK.on(
    WEPIN_SDK_EVENTS.SEND_COMPLETE,
    (success: boolean, message?: string) => {
      if (success) {
        console.log('send_complete: success', message)
      } else {
        console.log('send_complete: failure', message)
      }
    }
  )
}
0.0.33

3 months ago

0.0.31

4 months ago

0.0.32

4 months ago

0.0.30

6 months ago

0.0.29

6 months ago

0.0.25

6 months ago

0.0.26

6 months ago

0.0.27

6 months ago

0.0.28

6 months ago

0.0.23

7 months ago

0.0.24

7 months ago

0.0.22

8 months ago

0.0.21

8 months ago

0.0.20

8 months ago

0.0.18

8 months ago

0.0.19

8 months ago

0.0.16

8 months ago

0.0.13

10 months ago

0.0.14

10 months ago

0.0.15

10 months ago

0.0.10

11 months ago

0.0.11

11 months ago

0.0.12

11 months ago

0.0.9

11 months ago

0.0.8

11 months ago

0.0.5

12 months ago

0.0.7

11 months ago

0.0.6

12 months ago

0.0.3

1 year ago

0.0.4

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago