Options for creating a Solana account.

interface CreateAccountOptions {
    accountPolicy?: string;
    idempotencyKey?: string;
    name?: string;
}

Properties

accountPolicy?: string

The policy ID to apply to the account.

idempotencyKey?: string

The idempotency key.

name?: string

The name of the account.