Skip to content

Releases: upbond/embed

Setup Login Provider

04 Jan 09:44
Compare
Choose a tag to compare
v1.2.0

Fixed default loginconfig loginprovider

add v2 url

19 Dec 11:51
Compare
Choose a tag to compare
1.2.12

v1.1.12

05 Dec 12:40
Compare
Choose a tag to compare
prod

Adjustment Store ID

01 Dec 07:06
Compare
Choose a tag to compare
v1.1.11

Update version v.1.1.10

v1.1.0 [Skip dialog feature]

28 Nov 05:40
Compare
Choose a tag to compare

V1.1.10

Updates

  • Add code comments
  • Minor fix

What's new

  • Enable you to using skipDialog

Skip Dialog

Is used if you want to directly to upbond login without showing the upbond wallet modal.

Getting started

useEffect(() => {
  await upbondEmbed.init({
    buildEnv: this.env,
    isUsingDirect: true, // optional
    skipDialog: true, // add this if you want to use skipDialog
    dappRedirectUri: window.location.origin,
    selectedVerifier: 'line', // if you set skipDialog to `true` this property is mandatory
    loginConfig: {
      jwt: {
        // ... your jwt loginConfig
      },
      line: {
        // ... your line loginConfig
      },
      // ... another your loginConfig
    }
  })
}, [])

const loginUpbondEmbed = async () => {
  await upbondEmbed.login() // login to upbond wallet using embed
}

v1.0.10

22 Nov 07:10
Compare
Choose a tag to compare

Update new build env

v1.0.9

15 Nov 04:50
Compare
Choose a tag to compare

Change documentation

v1.0.8

14 Nov 05:28
Compare
Choose a tag to compare

v1.0.2

31 Oct 05:40
Compare
Choose a tag to compare

v1.0.2

  • Additional bugfixes

v1.0.0

31 Oct 03:30
Compare
Choose a tag to compare

Releasing our Upbond embed

now you can install our embed library based on npm or yarn
This is the main class of anything related to Upbond Embed

const Upbond = require("@upbond/embed");

Using ES6

import Upbond  from "@upbond/embed";

Then, create a new instance of Upbond

const upbond = new Upbond(options);