1.1.14 • Published 8 months ago

@keeper-wallet/provider-keeper-mobile v1.1.14

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

@keeper-wallet/provider-keeper-mobile

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:

const user = await signer.login();
const [transfer] = await signer
  .transfer({
    recipient: '3Myqjf1D44wR8Vko4Tr5CwSzRNo2Vg9S7u7',
    amount: 100000, // equals to 0.001 WAVES
    assetId: null, // equals to WAVES
  })
  .broadcast();

Or invoke some dApp:

const [invoke] = await signer
  .invoke({
    dApp: '3Fb641A9hWy63K18KsBJwns64McmdEATgJd',
    fee: 1000000,
    payment: [
      {
        assetId: '73pu8pHFNpj9tmWuYjqnZ962tXzJvLGX86dxjZxGYhoK',
        amount: 7,
      },
    ],
    call: {
      function: 'foo',
      args: [
        { type: 'integer', value: 1 },
        { type: 'binary', value: 'base64:AAA=' },
        { type: 'string', value: 'foo' },
      ],
    },
  })
  .broadcast();

For more examples see Signer documentation.

1.1.9

10 months ago

1.1.8

10 months ago

1.1.7

10 months ago

1.1.12

9 months ago

1.1.11

10 months ago

1.1.10

10 months ago

1.1.14

8 months ago

1.1.13

8 months ago

1.1.6

11 months ago

1.1.5

12 months ago

1.1.4

12 months ago

1.1.1

1 year ago

1.1.0

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.0-beta.1

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.8-beta.1

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.4.8

1 year ago

0.4.7-beta.1

1 year ago

0.4.6-beta.1

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

0.5.0-beta.1

1 year ago

0.5.2-beta.1

1 year ago

1.0.1-beta.1

1 year ago

0.3.0

2 years ago

0.4.5

1 year ago

0.4.4

1 year ago

0.4.7

1 year ago

0.4.6

1 year ago

0.5.0

1 year ago

0.4.1

1 year ago

0.4.0

2 years ago

0.5.2

1 year ago

0.4.3

1 year ago

0.5.1

1 year ago

0.4.2

1 year ago

0.1.0

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.3

2 years ago

0.0.1

2 years ago