Socket
Book a DemoInstallSign in
Socket

@waves/provider-metamask

Package Overview
Dependencies
Maintainers
16
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@waves/provider-metamask

* [Overview](#overview) * [Getting Started](#getting-started)

latest
Source
npmnpm
Version
1.1.7
Version published
Maintainers
16
Created
Source

ProviderMetamask

  • Overview
  • Getting Started

Overview

ProviderMetamask

Getting Started

1. Library installation

To install Signer and ProviderMetamask libraries use

npm i @waves/signer @waves/provider-metamask

2. Library initialization

Add library initialization to your app.

  • For Stagenet:

    import { Signer } from '@waves/signer';
    import { ProviderMetamask } from '@waves/provider-metamask';
    
    const signer = new Signer({
    	// Specify URL of the node on Stagenet
    	NODE_URL: 'https://nodes-stagenet.wavesnodes.com'
    });
    const provider = new ProviderMetamask({
    	wavesConfig: {
    		nodeUrl: 'https://nodes-stagenet.wavesnodes.com',
    		chainId: 'S'.charCodeAt(0)
    	}
    });
    signer.setProvider(provider);
    
  • For Mainnet:

    import { Signer } from '@waves/signer';
    import { ProviderMetamask } from '@waves/provider-metamask';
    
    const signer = new Signer();
    const provider = new ProviderMetamask();
    signer.setProvider(provider);
    

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',
  })
  .broadcast();
const user = await signer.login();
const [invoke] = await signer
  .invoke({
	dApp: "3F4bY4PsS8E1tShx9ruSYthie3uzYiSffSv",
	call:{
		 function: "deposit",
		 args:[{ type: "string", value: "string" }]
	},
	payment:[]
  })
  .broadcast();

For more information see Signer documentation.

4. How to sign order

Set the order parameters:

  • Omit senderPublicKey.
  • Specify asset IDs in Waves format: 32 bytes in base58. For WAVES use the string WAVES.
const orderData = {
  orderType: 'sell',
  version: 4,
  assetPair: {
	amountAsset: '8KTfWNoWYf9bP3hg1QYBLpkk9tgRb5wiUZnT1HUiNa9r',
	priceAsset: 'WAVES',
  },
  price: 100000,
  amount: 100000,
  timestamp: 1634563969123,
  expiration: 1637069590926,
  matcherFee: 300000,
  matcherFeeAssetId: null,
};
const provider = new ProviderMetamask();
const sign = await provider.signOrder(orderData);

5. How to get Ethereum address

import { ProviderMetamask } from '@waves/provider-metamask';
import { wavesAddress2eth } from '@waves/node-api-js';

const user = await signer.login();
const ethereumAddress = wavesAddress2eth(user.address);

6. How to sign message

const message = 'message text';
const provider = new ProviderMetamask();
const sign = await provider.signMessage(message);

FAQs

Package last updated on 19 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts