ProviderKeeperMobile

npm

ProviderKeeperMobile implements a Signature Provider for Signer protocol library.

Installation

Install using npm:

npm install @waves/signer @keeper-wallet/provider-keeper-mobile

or yarn

yarn add @waves/signer @keeper-wallet/provider-keeper-mobile

Content Security Policy

If your dapp uses a CSP enabled server setup, you need to append Wallet Connect endpoints for the following directives:

connect-src  wss://relay.walletconnect.com https://registry.walletconnect.com;
frame-src  https://verify.walletconnect.com;

For more information and common use cases for CSP, see the MDN CSP documentation.

Usage

  • Provider with app metadata

    You can specify application metadata used to display in Keeper Wallet.

    import { ProviderKeeperMobile } from '@keeper-wallet/provider-keeper-mobile';
    
    const keeperMobile = new ProviderKeeperMobile({
      // meta: all fields are optional
      name: 'My dApp', // name of your dApp
      icon: 'https://avatars.githubusercontent.com/u/96250405', // display icon for your dApp
    });

    🛈 The recommended icon size is at least 180×180 px.

  • For Testnet:

    import { Signer } from '@waves/signer';
    import { ProviderKeeperMobile } from '@keeper-wallet/provider-keeper-mobile';
    
    const signer = new Signer({
      // Specify URL of the node on Testnet
      NODE_URL: 'https://nodes-testnet.wavesnodes.com',
    });
    const keeperMobile = new ProviderKeeperMobile();
    signer.setProvider(keeperMobile);
  • For Mainnet:

    import { Signer } from '@waves/signer';
    import { ProviderKeeperMobile } from '@keeper-wallet/provider-keeper-mobile';
    
    const signer = new Signer();
    const keeperMobile = new ProviderKeeperMobile();
    signer.setProvider(keeperMobile);

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:

Or invoke some dApp:

For more examples see Signer documentation.

Last updated

Was this helpful?