AccountTransactions: {
    total?: number;
    list?: {
        blockNumber?: number;
        transactionIndex?: number;
        nonce?: number;
        hash?: string;
        from?: string;
        to?: string;
        value?: string;
        gasPrice?: string;
        gasFee?: string;
        timestamp?: number | string;
        status?: number;
        contractCreated?: string;
        method?: string;
    }[];
    addressInfo?: {
        [key: string]: {
            contract?: { name?: string; verify?: { result?: number } };
            token?: {
                name?: string;
                symbol?: string;
                decimals?: number;
                website?: string;
                iconUrl?: string;
                tokenType?: string;
            };
        };
    };
}

Type declaration

  • Optionaltotal?: number
  • Optionallist?: {
        blockNumber?: number;
        transactionIndex?: number;
        nonce?: number;
        hash?: string;
        from?: string;
        to?: string;
        value?: string;
        gasPrice?: string;
        gasFee?: string;
        timestamp?: number | string;
        status?: number;
        contractCreated?: string;
        method?: string;
    }[]
  • OptionaladdressInfo?: {
        [key: string]: {
            contract?: { name?: string; verify?: { result?: number } };
            token?: {
                name?: string;
                symbol?: string;
                decimals?: number;
                website?: string;
                iconUrl?: string;
                tokenType?: string;
            };
        };
    }