LOBSTR signer extension allows you to securely connect to decentralized services on the Stellar network and sign transactions with your LOBSTR wallet mobile app.
To integrate the LOBSTR signer extension into your project and add the 'Log in with LOBSTR wallet' option, use the package @lobstrco/signer-extension-api and UI resources.
This repo is constructed using yarn workspaces and consists of the 3 sections:
- the browser extension (
/extension
) - the client-facing SDK (
/@lobstrco/signer-extension-api
) - some shared files that the above use (
/@shared/*
)
You will need
- Node (>=18): https://nodejs.org/en/download/
- Yarn (v1.22.5 or newer): https://classic.yarnpkg.com/en/docs/install
To simply build a production version of the extension, install the prerequisites then navigate to this root folder in your command line and run these 2 steps:
yarn setup
followed by
yarn build:extension
This will generate the files that make up the extension in extension/build
yarn setup
yarn start
This will start up multiple watching builds in parallel:
- The
@lobstrco/signer-extension-api
npm module - A dev server with the webapp running in the extension, serving on
localhost:9000
- The actual built extension, able to be installed in Chrome, in
build/
Each of these will build in response to editing their source.
These can be started individually with yarn start:\<workspace name\>
where
\<workspace name\>
is one of:
extension-api
extension
yarn build
This will produce final output for the @lobstrco/signer-extension-api
npm module, and
the extension.
yarn build:\<workspace name\>
, like the equivalent start commands, will build
an individual workspace.
It's important to note that these two won't interact with the dev server popup
UI on localhost:9000
— you'll need to re-install the unpacked extension each
time you make a change.
In some cases, you will want to import a workspace into another. For example, in
extension
we need to import @shared/constants
. To do this, simply add
@shared/constants
to the dependencies list in package.json in extension
. Yarn
symlinks all the workspaces, so doing so will allow you to import files from the
@shared/constants
workspace as if it were a published npm package.
Many dev dependencies (such as Typescript, linters, Webpack, etc.) have been moved to the root package.json
to allow devs to upgrade these libraries all in one place.