Polkadot & Kusama ecosystem Enterprise Desktop application.
- Hardware wallet (Polkadot Vault) support
- Multishard wallet and multishard operations
- Show wallet balances for any supported token (assets, ORML, balances)
- Token transfer for any supported token (assets, ORML, balances)
- Multisig account and transactions without passing callData off-chain
- Relay Chain staking
Detailed changelog with releases description is located in the changelog file.
Minimum version of Node.js
is v20.x
.
Minimum version of pnpm
is v9.x
.
# Setup dev environment.
pnpm install
# Start Electron and prebuild app in staging mode. You can also access app with browser.
pnpm preview
# Start Electron app in dev mode. You can also access app with browser.
pnpm start
# Start renderer without Electron (not recommended).
pnpm start:renderer
# Run unit tests for renderer.
pnpm test
# Run linter.
pnpm lint
# Run typescript typechecker.
pnpm types
# Build app in staging mode.
pnpm staging:sequence
# Build app in production mode.
pnpm prod:sequence
Development configuration uses:
chains_dev.json
file that contains testnets in order to debug and test new features- debug tools are enabled by default
- error handling is turned off in order to pay developer's attention to errors
Stage configuration uses:
chains.json
file for chains configuration- debug tools are enabled by default
- errors are handled in a smooth way in order not to interrupt the user
Production configuration uses:
chains.json
file for chains configuration- debug tools are disabled by default
- errors are handled in a smooth way in order not to interrupt the user
All the localisation files are stored in the /src/shared/i18n/locales
folder.
ESlint checks if localisation files are well-formed and valid including:
- Valid json formatting
- Json files contain the same set of keys
- Each key contains the same amount of placeholders for all locales
- All
tsx
files are translated
In some cases there is no need to translate the text, so ESlint ignore rules should be used.
<span className="font-bold">
{/* eslint-disable-next-line i18next/no-literal-string */}
{data?.asset.symbol} ({data?.asset.name})
</span>
or
//eslint-disable-next-line i18next/no-literal-string
const qrCodePayload = `substrate:${address}:${wallet.accountId}`;
Log files help to solve your problem. Logs are collected in the nova-spektr.log
that is located in the folder:
- macOS
~/Library/Logs/nova-spektr/nova-spektr.log
- Windows
%USERPROFILE%\AppData\Roaming\nova-spektr\logs\nova-spektr.log
- Linux
~/.config/nova-spektr/logs/nova-spektr.log
Sharing logs when you're contacting the support will speed up the problem fix.
Contributing guide is described in the CONTRIBUTING.md
Check the official support channels:
- wiki (https://docs.novaspektr.io)
- Telegram group
- GitHub issues
All issues are being tracked in the Nova Spektr Support project
Your feedback is welcome. Use GitHub issues for submitting the feedback. All feedback is being tracked in the Nova Spektr Feedback project
Nova Spektr - Polkadot, Kusama enterprise application is available under the Apache 2.0 license. See the LICENSE file for more info. © Novasama Technologies GmbH 2023