Interface TxHistoryEntry

interface TxHistoryEntry {
    address: string;
    amount: number;
    billingMode?: BillingMode;
    createTime: Date;
    description: string;
    endTime: Date;
    id: string;
    paymentModel?: string;
    role: "artist" | "worker";
    source: string;
    status: "completed";
    subscriptionThrottled?: boolean;
    subscriptionTier?: null | string;
    subscriptionTrialing?: boolean;
    tokenType: TokenType;
    type: string;
    updateTime: Date;
}

Properties

address: string
amount: number
billingMode?: BillingMode
createTime: Date
description: string
endTime: Date
id: string
paymentModel?: string
role: "artist" | "worker"
source: string
status: "completed"
subscriptionThrottled?: boolean
subscriptionTier?: null | string
subscriptionTrialing?: boolean
tokenType: TokenType
type: string
updateTime: Date