debeem-wallet
TransactionDetailItem: TransactionLike & {
    blockHash: string;
    blockNumber: number;
    floatTotal: number;
    floatTotalGasFee: number;
    floatValue: number;
    gas: number;
    gasLimit: number;
    input: any;
    r: string;
    s: string;
    total: bigint;
    totalGasFee: bigint;
    transactionIndex: number;
    v: number;
    yParity: number;
}

Type declaration

  • blockHash: string

    The hash of the block containing this transaction. It is a unique identifier for the block. '0xb891060f7ef8d1c9d25520c80596881ad8b3076eafb29ba22bb31a8b6468822b'

  • blockNumber: number

    The number of the block containing this transaction. original : '0x5dcff7' Decimal: 0x5dcff7 converts to 6147063.

  • floatTotal: number

    float value in Ether from the bigint .total in wei

  • floatTotalGasFee: number

    float value in Ether from the bigint .totalGasFee in wei

  • floatValue: number

    float value in Ether from the bigint .value in wei

  • gas: number

    the amount of used gas by the transaction

    the maximum amount of gas in wei units that the transaction can consume.
    original : '0x5208'
    Decimal: 0x5208 converts to 21000.
  • gasLimit: number

    the amount of limit gas

    query by calling InfuraRpcService.fetchEthEstimatedGasLimit
    
  • input: any

    the input data sent with the transaction. Here it is empty, indicating no additional data.

    Remark

    The content of the input field depends on the type and purpose of the transaction. For regular Ethereum transfer transactions, it is typically empty. For transactions involving contract invocation or contract creation, it contains operation-related data, usually formatted and parsed using ABI encoding.

    original : '0x'
    
  • r: string

    the r value of the transaction signature. '0x87566c86db24a5a3182177960fadf00ca9365d8b05d099b7cddfbfcadd40c923'

  • s: string

    the s value of the transaction signature. '0x1ef1f5470f4f67120db7ddd49f84df24c1ad57ea45e7ef22fed1d6d9198c1df7'

  • total: bigint

    total value in wei { value } + { totalGasFee }

  • totalGasFee: bigint

    Total gas fee, in wei { gas price } * { gas }

  • transactionIndex: number

    the index of the transaction in the block. '0xd' Decimal: 0xd converts to 13.

  • v: number

    the recovery id of the transaction signature. '0x1'

  • yParity: number

    the parity bit for the v value in EIP-1559 transactions, indicating the y-coordinate of the curve point for the public key recovery. '0x1'