📃
CasperDash Knowledge Base
  • Our Story
  • Welcome to CasperDash Knowledge Base
  • Audit Reports
  • User Guides
    • CasperDash Mobile Wallet
      • How to install the mobile app?
      • How to Create a wallet with recovery phrase?
      • How to export private key from Casper Signer?
      • How to import an account from a private key?
      • How to import an account from a Recovery Phrase?
      • How to import an account from Casper Wallet?
      • How to import an account from BitGet Wallet?
      • Connect with Ledger
      • Staking
    • CasperDash Extension Wallet
      • How to install the CasperDash Extension?
    • CasperDash Web App (Beta)
      • How to install CasperDash Progressive Web App?
      • How to import wallet to CasperDash Web App?
    • Developer Docs
      • Getting Started
      • API Reference
      • Listing new dApps
  • Third Party Integration
    • Ramp.network integration
Powered by GitBook
On this page
  1. User Guides
  2. Developer Docs

Getting Started

PreviousDeveloper DocsNextAPI Reference

Last updated 2 years ago

To develop for CasperDash, install the CasperDash Chrome Extension .

Once CasperDash is installed and running (make sure you back up your Secret Recovery Phrase), you should find that new browser tabs have a window.casperDashHelper available in the developer console. This is how your website will interact with CasperDash.

Basic Considerations

CasperDash Wallet Detection

To verify if the browser is running CasperDash, copy and paste the code snippet below in the developer console of your web browser:

if (typeof window.casperDashHelper !== 'undefined') {
        console.log('CasperDash Wallet is installed');
}

You can review the full API for the window.casperDashHelper object .

here (opens new window)
here