Current account data.

Hierarchy (View Summary)

  • DataEntity<
        {
            balance: BalanceData;
            network: null
            | SupernetType;
            networkStatus: "connected" | "disconnected" | "connecting" | "switching";
            refreshToken?: string;
            token?: string;
            username?: string;
            walletAddress?: string;
        },
    >
    • CurrentAccount

Constructors

  • Parameters

    • Optionaldata: {
          balance: BalanceData;
          network: null | SupernetType;
          networkStatus: "connected" | "disconnected" | "connecting" | "switching";
          refreshToken?: string;
          token?: string;
          username?: string;
          walletAddress?: string;
      }
      • balance: BalanceData
      • network: null | SupernetType
      • networkStatus: "connected" | "disconnected" | "connecting" | "switching"

        Current network status:

        • connected - connected to the socket
        • disconnected - disconnected from the socket
        • connecting - connecting to the socket
        • switching - switching network type (fast/relaxed)
        'disconnected'
        
      • OptionalrefreshToken?: string
      • Optionaltoken?: string
      • Optionalusername?: string
      • OptionalwalletAddress?: string

    Returns CurrentAccount

Properties

data: {
    balance: BalanceData;
    network: null | SupernetType;
    networkStatus: "connected" | "disconnected" | "connecting" | "switching";
    refreshToken?: string;
    token?: string;
    username?: string;
    walletAddress?: string;
}

Type declaration

  • balance: BalanceData
  • network: null | SupernetType
  • networkStatus: "connected" | "disconnected" | "connecting" | "switching"

    Current network status:

    • connected - connected to the socket
    • disconnected - disconnected from the socket
    • connecting - connecting to the socket
    • switching - switching network type (fast/relaxed)
    'disconnected'
    
  • OptionalrefreshToken?: string
  • Optionaltoken?: string
  • Optionalusername?: string
  • OptionalwalletAddress?: string
lastUpdated: Date = ...
listeners: { updated?: (data: string[]) => void[] } = {}

Accessors

  • get networkStatus(): "connected" | "disconnected" | "connecting" | "switching"
  • Returns "connected" | "disconnected" | "connecting" | "switching"

Methods

  • Dispatch an event to all listeners

    Type Parameters

    • T extends "updated"

    Parameters

    • event: T
    • data: { updated: string[] }[T]

    Returns void

  • Remove an event listener

    Type Parameters

    • T extends "updated"

    Parameters

    • event: T
    • listener: (data: { updated: string[] }[T]) => void

    Returns void

  • Add an event listener, returns a function that can be called to remove the listener

    Type Parameters

    • T extends "updated"

    Parameters

    • event: T
    • listener: (data: { updated: string[] }[T]) => void

    Returns () => void

  • Add an event listener that will be called only once

    Type Parameters

    • T extends "updated"

    Parameters

    • event: T
    • listener: (data: { updated: string[] }[T]) => void

    Returns () => void

  • Get a copy of the entity's data

    Returns {
        balance: BalanceData;
        network: null | SupernetType;
        networkStatus: "connected" | "disconnected" | "connecting" | "switching";
        refreshToken?: string;
        token?: string;
        username?: string;
        walletAddress?: string;
    }

    • balance: BalanceData
    • network: null | SupernetType
    • networkStatus: "connected" | "disconnected" | "connecting" | "switching"

      Current network status:

      • connected - connected to the socket
      • disconnected - disconnected from the socket
      • connecting - connecting to the socket
      • switching - switching network type (fast/relaxed)
      'disconnected'
      
    • OptionalrefreshToken?: string
    • Optionaltoken?: string
    • Optionalusername?: string
    • OptionalwalletAddress?: string