Rabet | Docs
  • Introduction
  • Installation
  • Getting Started
  • Accessing Accounts
  • Signing Transactions
  • API
    • API refrence
  • Mobile
    • Introduction
    • Add Rabet to your dapps
Powered by GitBook
On this page
  • Browser Detection
  • Connecting to Rabet

Was this helpful?

Getting Started

Once Rabet is installed and running, every new tab you open has a window.rabetobject available in the developer console. This is how your website will interact with Rabet.

Browser Detection

To verify if the browser is running Rabet, run the following code in your developer console:

if (window.rabet) {
  console.log('Rabet is installed!');
}

You can review the full API here API refrence

Connecting to Rabet

You should only initiate a connection request in response to direct user action, such as clicking a button. You should always disable the "connect" button while the connection request is pending. You should never initiate a connection request on page load.

PreviousInstallationNextAccessing Accounts

Last updated 3 years ago

Was this helpful?