@circle-fin/usdckit - v0.18.0
    Preparing search index...

    Transaction

    interface Transaction {
        abiFunctionSignature?: string;
        abiParameters?: AbiParametersInner[];
        amountInUSD?: string;
        amounts?: string[];
        blockchain: Blockchain;
        blockHash?: string;
        blockHeight?: number;
        contractAddress?: string;
        createDate: string;
        custodyType?: CustodyType;
        destinationAddress?: string;
        errorDetails?: string;
        errorReason?: string;
        estimatedFee?: TransactionFee;
        feeLevel?: FeeLevel;
        firstConfirmDate?: string;
        id: string;
        networkFee?: string;
        networkFeeInUSD?: string;
        nfts?: string[];
        operation?: Operation;
        refId?: string;
        sourceAddress?: string;
        state: TransactionState;
        tokenId?: string;
        transactionScreeningEvaluation?: BaseScreeningDecision;
        transactionType: TransactionType;
        txHash?: string;
        updateDate: string;
        userId?: string;
        walletId?: string;
    }
    Index

    Properties

    abiFunctionSignature?: string

    The contract ABI function signature or callData field is required for interacting with the smart contract. The ABI function signature cannot be used simultaneously with callData. e.g. burn(uint256)

    Transaction

    abiParameters?: AbiParametersInner[]

    The contract ABI function signature parameters for executing the contract interaction. Supported parameter types include string, integer, boolean, and array. These parameters should be used exclusively with the abiFunctionSignature and cannot be used with callData.

    Transaction

    amountInUSD?: string

    Transaction amount in USD decimal format.

    Transaction

    amounts?: string[]

    Transfer amounts in decimal number format, at least one element is required for transfer. For ERC721 token transfer, the amounts field is required to be ["1"] (array with "1" as the only element).

    Transaction

    blockchain: Blockchain

    Transaction

    blockHash?: string

    Identifier for the block that includes the transaction.

    Transaction

    blockHeight?: number

    Block height of the transaction, representing the number of blockchain confirmations.

    Transaction

    contractAddress?: string

    The blockchain address of the contract to be executed.

    Transaction

    createDate: string

    Date and time the resource was created, in ISO-8601 UTC format.

    Transaction

    custodyType?: CustodyType

    Transaction

    destinationAddress?: string

    Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects.

    Transaction

    errorDetails?: string

    Additional detail associated with the corresponding transaction's error reason

    Transaction

    errorReason?: string

    Description of the error. Only present for transactions in FAILED state.

    Transaction

    estimatedFee?: TransactionFee

    Transaction

    feeLevel?: FeeLevel

    Transaction

    firstConfirmDate?: string

    Date the transaction was first confirmed in a block. ISO-8601 UTC date/time.

    Transaction

    id: string

    System-generated unique identifier of the resource.

    Transaction

    networkFee?: string

    Gas fee, in native token, paid to the network for the transaction.

    Transaction

    networkFeeInUSD?: string

    Gas fee, in USD, paid to the network for the transaction.

    Transaction

    nfts?: string[]

    List of Nfts, in JSON string format, associated with the transaction.

    Transaction

    operation?: Operation

    Transaction

    refId?: string

    Optional reference or description used to identify the transaction.

    Transaction

    sourceAddress?: string

    Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects.

    Transaction

    state: TransactionState

    Transaction

    tokenId?: string

    System-generated unique identifier of the resource.

    Transaction

    transactionScreeningEvaluation?: BaseScreeningDecision

    Transaction

    transactionType: TransactionType

    Transaction

    txHash?: string

    Blockchain generated identifier of the transaction.

    Transaction

    updateDate: string

    Date and time the resource was last updated, in ISO-8601 UTC format.

    Transaction

    userId?: string

    Unique system generated identifier for the user.

    Transaction

    walletId?: string

    System-generated unique identifier of the resource.

    Transaction