FlowAccount

FlowAccount Interface

The FlowAccount interface represents the structure of a Flow blockchain account in the Flooks library.

Definition

export interface FlowAccount {
  address?: string;
}

Properties

  • address: string (optional)
    • Represents the address of the Flow account.
    • It's marked as optional, indicating that not all instances of FlowAccount will necessarily have an address.

Usage

This interface is typically used to represent and handle Flow account data within applications that interact with the Flow blockchain. It provides a standardized format for account information, primarily focusing on the account's address.