Getting Started

To develop for CasperDash, install the CasperDash Chrome Extension here (opens new window).

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.

Last updated