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

WalletConnect (Reown AppKit)

Reown AppKit is the standard wallet connection protocol supporting Solana and SVM-based chains, including Solayer Chain. 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 AppKit — Solana

Framework-specific setup guides for AppKit 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 AppKit 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