interface SolanaAccount {
    address: string;
    name?: string;
}

Properties

Properties

address: string

The base58 encoded Solana address.

^[1-9A-HJ-NP-Za-km-z]{32,44}$

name?: string

An optional name for the account. Account names can consist of alphanumeric characters and hyphens, and be between 2 and 36 characters long. Account names are guaranteed to be unique across all Solana accounts in the developer's CDP Project.

^[A-Za-z0-9][A-Za-z0-9-]{0,34}[A-Za-z0-9]$