interface SolanaAccount {
    address: string;
    createdAt?: string;
    name?: string;
    policies?: string[];
    updatedAt?: string;
}

Properties

address: string

The base58 encoded Solana address.

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

createdAt?: string

The ISO 8601 UTC timestamp at which the account was created.

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]$

policies?: string[]

The list of policy IDs that apply to the account. This will include both the project-level policy and the account-level policy, if one exists.

updatedAt?: string

The ISO 8601 UTC timestamp at which the account was last updated.