
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@near-wallet-selector/modal-ui-js
Advanced tools
This is the Modal UI package for NEAR Wallet Selector.
The easiest way to use this package is to install it from the NPM registry:
# Using Yarn
pnpm add -w @near-wallet-selector/modal-ui-js
# Using NPM.
npm install @near-wallet-selector/modal-ui-js
Then use it in your dApp:
import { setupWalletSelector } from "@near-wallet-selector/core";
import { setupModal } from "@near-wallet-selector/modal-ui-js";
import { setupMyNearWallet } from "@near-wallet-selector/my-near-wallet";
const selector = await setupWalletSelector({
network: "testnet",
modules: [setupMyNearWallet()],
});
const modal = setupModal(selector, {
contractId: "test.testnet",
});
modal.show();
contractId
(string
): Account ID of the Smart Contract used for sign in and signing transactions.methodNames
(Array<string>?
): Specify limited access to particular methods on the Smart Contract.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.Import modal css styles:
/* Add import in the main css file */
@import "~@near-wallet-selector/modal-ui-js/styles.css";
// Add import in the main component
import "@near-wallet-selector/modal-ui-js/styles.css";
These are the available css variables:
--backdrop-bg
--heading-color
--text-color
--sidebar-border-color
--selected-wallet-bg
--selected-wallet-bg-hover
--wallet-option-border-color
--wallet-option-bg-hover
--content-bg
--change-path-bg
--home-button-bg
--confirm-button-bg
--confirm-button-bg-hover
--error
--close-button-bg-color
--close-button-fill-icon-colo
--spinner-color
--bottom-section
--mobile-text
--connected-green
Customizing css is done simply by updating the value of a variable in the root of your css file.
:root {
--backdrop-bg: #26262630;
}
You can find the entire API reference for Modal UI here.
This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
FAQs
Modal UI package for NEAR wallet Selector
We found that @near-wallet-selector/modal-ui-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.