Home

Awesome

ProviderSeed

<a id="overview"></a>

Overview

ProviderSeed implements a Signature Provider for Signer protocol library. ProviderSeed creates user account from SEED.

<a id="getting-started"></a>

Getting Started

1. Library installation

To install Signer and ProviderSeed libraries use

npm i @waves/signer @waves/provider-seed @waves/waves-transactions

2. Library initialization

Add library initialization to your app.

3. Basic example

Now your application is ready to work with Waves Platform. Let's test it by implementing basic functionality. For example, we could try to authenticate user and transfer funds.

const user = await signer.login();
const [transfer] = await signer
  .transfer({
    amount: 1,
    recipient: 'alias:T:merry',
  })
  .sign();

For more information see Signer documentation.