Securely manage your CSPR tokens, interact with dapps and sign transactions with Casper Wallet, the Go-To self-custody wallet for the Casper blockchain.
The recommended way of integrating Casper Wallet into your app is through CSPR.click, which provides a combined integration of major wallets in the Casper ecosystem, all at once, without the burden of maintaining multiple integrations at the same time. Please head over to the CSPR.click documentation to start.
Casper Wallet Playground is a React webapp created as a developer tool to help test integration with various features available in Casper Wallet.
Open https://github.com/make-software/casper-wallet-playground
Clone this repository and run following commands from the repo root folder. NOTE: Node.js LTS is required.
npm install
npm run startThis will open webapp automatically in a new tab.
- Navigate
chrome://extensions/in Chrome browser - Enable
Developer mode(right top corner, at least for Chrome 98) - Click on
Load unpackedbutton (left top corner) - Pick
build/chromefolder frombuilds.zipdeliverable orbuildsfolder when building from sources.
To open as a tab:
- Open a new tab and use the link
chrome-extension://{paste ID here}/popup.html
- Navigate
about:debugging#/runtime/this-firefoxin Firefox browser - Click on
Load Temporary Add-on...button. - Pick
build/firefox/manifest.jsonfile frombuilds.zipdeliverable orbuildsfolder when building from sources.
To open as a tab:
- Open new tab and fill the link
moz-extension://{paste Internal UUID here}/popup.html
- Open
build/safarifolder frombuilds.ziporbuildsfolder when building from sources. - Double click on "Casper Wallet.app" file.
- Follow instructions and enable Casper Wallet in opened Extensions Preferences window.
- Open Safari and enable unsigned extensions. Extension should be available.
For more information please follow the link
Working on any macOS or Linux machine with NodeJS LTS installed.
Clone this repository and run following commands from the repo root folder. NOTE: Node.js LTS is required.
npm installchmod +x scripts/*Chrome:
npm run start:chromeFirefox:
npm run start:firefoxSafari:
npm run start:safariYou can run all these commands in parallel.
Chrome:
npm run build:chromeFirefox:
npm run build:firefoxSafari:
npm run build:safariAll at once:
npm run build:allDeveloper Tools to power-up Redux development workflow or any other architecture which handles the state change.
It can be used as a browser extension (for Chrome, Edge and Firefox), as a standalone app or as a React component integrated in the client app.
You can read more about Redux DevTools on link https://github.com/reduxjs/redux-devtools
We are using redux devtool as separate local server. It can be started with devtools:redux npm start script.
All npm start scripts, except Safari (start:chrome, start:firefox) for dev-environment, already include launching the redux dev tools on 8000 port for Chrome and 8001 port for Firefox.
You should install Redux DevTools browser extension and connect it to Redux DevTool local server
-
Install browser extension
- For Chrome - https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd?hl=en
- For Firefox - https://addons.mozilla.org/en-US/firefox/addon/reduxdevtools/
- Safari not supported ๐ข
-
Start npm script for browser you need. For example, run
npm run start:chromefor Chrome -
Connect your extension with local redux dev server with steps:
- Open extension and click by right mouse button on it then pick
Redux DevToolsmenu item and click onOpen Remote DevTools
- Open
Settingsof Redux DevTools app then selectuse local (custom) serveroption and set hostname as alocalhostand set a port depends on browser you need (8000for Chrome and8001for Firefox)
- Click
Connectbutton and enjoy ๐
- Open extension and click by right mouse button on it then pick
Write tests into e2e-tests folder.
To run e2e tests, you must use npm script npm run e2e:chrome:ui:popup or e2e:chrome:ui:onboarding.
Tests are run in UI mode.
All information about how to run and debug tests can be found in playwright docs.
