Type Alias AccountTransactions
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
Optional
total?: number
Optional
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;
}[]
Optional
addressInfo?: {
[key: string]: {
contract?: { name?: string; verify?: { result?: number } };
token?: {
name?: string;
symbol?: string;
decimals?: number;
website?: string;
iconUrl?: string;
tokenType?: string;
};
};
}