Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@near-wallet-selector/account-export
Advanced tools
This is the Export Selector UI package for NEAR Wallet Selector.
This is the Account Export Selector UI package for NEAR Wallet Selector.
The easiest way to use this package is to install it from the NPM registry:
# Using Yarn
yarn add @near-wallet-selector/account-export
# Using NPM.
npm install @near-wallet-selector/account-export
Then use it in your wallet:
import { setupWalletSelector } from "@near-wallet-selector/core";
import { setupExportSelectorModal } from "@near-wallet-selector/account-export";
import { setupMyNearWallet } from "@near-wallet-selector/my-near-wallet";
const selector = await setupWalletSelector({
network: "testnet",
modules: [setupMyNearWallet()],
});
const modal = setupExportSelectorModal(selector, {
accounts: [
{
accountId: "test.testnet",
privateKey: "ed25519:....",
},
...
]
});
modal.show();
accounts
(Array
): List of objects with an account id and its private key to be exported.theme
(Theme?
): Specify light/dark theme for UI. Defaults to the browser configuration when omitted or set to 'auto'. This can be either light
, dark
or auto
.description
(string?
): Define a custom description in the UI.onComplete
(({ accounts: Array<string>, walletName: string }) => void
): Triggers when the user completes the flow. By default it is not set.// Add import in the main component
import "@near-wallet-selector/modal-ui/styles.css";
import "@near-wallet-selector/account-export/styles.css";
These are the available css variables:
--wallet-selector-backdrop-bg
--wallet-selector-heading-color
--wallet-selector-text-color
--wallet-selector-sidebar-border-color
--wallet-selector-selected-wallet-bg
--wallet-selector-selected-wallet-bg-hover
--wallet-selector-wallet-option-border-color
--wallet-selector-wallet-option-bg-hover
--wallet-selector-content-bg
--wallet-selector-change-path-bg
--wallet-selector-home-button-bg
--wallet-selector-confirm-button-bg
--confirm-button-bg-hover
--wallet-selector-error
--wallet-selector-close-button-bg-color
--wallet-selector-close-button-fill-icon-colo
--wallet-selector-spinner-color
--wallet-selector-bottom-section
--wallet-selector-mobile-text
--wallet-selector-connected-green
Customizing css is done simply by updating the value of a variable in the root of your css file.
:root {
--wallet-selector-backdrop-bg: #26262630;
}
This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
FAQs
This is the Export Selector UI package for NEAR Wallet Selector.
The npm package @near-wallet-selector/account-export receives a total of 243 weekly downloads. As such, @near-wallet-selector/account-export popularity was classified as not popular.
We found that @near-wallet-selector/account-export demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.