Skip to main content
Solayer Chain currently has native integration support for WalletConnect (Reown) and Nightly.

WalletConnect (Reown SDK)

WalletConnect lets you accept top Solana wallets such as Solflare, Phantom, Backpack, Jupiter, Ledger and many more (see the full list here). Via their Reown SDK, you can also access building tools beyond wallet connections; including authentication, payment solutions and multichain tools. Supported frameworks: React, Next.js, Vue, JavaScript, React Native

Quick Setup

  1. Get a Project ID from Reown Dashboard
  2. Install the SDK for your framework
  3. Configure with Solana network settings

Reown SDK — Solana

Framework-specific setup guides for Reown SDK with Solana

Solana Adapter (Advanced)

Lower-level Solana adapter for Wallet Adapter library users
If you’re new to the Wallet Adapter library, Reown recommends using the Reown SDK directly for a simpler multichain setup.

Nightly Wallet

Nightly is a non-custodial wallet with native Solana and SVM support, compatible with Solayer Chain.

Detection

Nightly follows the Wallet Standard, making it detectable via @wallet-standard/core.
npm install @wallet-standard/core
# or
yarn add @wallet-standard/core
import { getWallets } from '@wallet-standard/core'
import { isWalletAdapterCompatibleStandardWallet } from '@solana/wallet-adapter-base'

const { get } = getWallets()
const allWallets = get()

// Filter for Solana-compatible wallets (includes Nightly)
const solanaWallets = allWallets.filter(isWalletAdapterCompatibleStandardWallet)
You can also access Nightly directly via window.nightly.solana.

Nightly Wallet Docs — Solana Detection

Full guide for detecting and integrating Nightly Wallet on Solana