JSPM

  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q40497F
  • License MIT

Features of the Rarimo SDK that provide access to wallets and the ability to interact with them on the NEAR blockchain.

Package Exports

  • @rarimo/providers-near

Readme

@rarimo/providers-near

Features of the Rarimo SDK that provide access to wallets and the ability to interact with them on the NEAR blockchain.

version (scoped package) types tree-shaking checks

Example

For example applications, see rarimo/js-sdk-examples on GitHub.

Here is an example that creates a NearProvider object for a Near wallet and prints its address:

import { createProvider } from '@rarimo/provider'
import { NearProvider } from '@rarimo/providers-near'

const getNearWalletAddress = async () => {
  // Connect to the MyNearWallet wallet in the browser using the NearProvider interface to limit bundle size.
  const provider = await createProvider(NearProvider)
  await provider.connect()

  // Get the address of the wallet
  console.log(provider.address)
}

Changelog

For the change log, see CHANGELOG.md.