Helius SDK - v2.2.2
    Preparing search index...

    Interface FundingSource

    Wallet funding source information

    interface FundingSource {
        amount: number;
        amountRaw: string;
        date: string;
        decimals: number;
        explorerUrl: string;
        funder: string;
        funderName: string | null;
        funderType: string | null;
        mint: string;
        signature: string;
        slot: number;
        symbol: string;
        timestamp: number;
    }
    Index

    Properties

    amount: number

    Initial funding amount (human-readable, in SOL)

    amountRaw: string

    Raw funding amount in smallest unit (lamports for SOL)

    date: string

    Human-readable UTC date in ISO 8601 format

    decimals: number

    Token decimals

    explorerUrl: string

    Solana Explorer URL for the transaction

    funder: string

    Address that originally funded this wallet

    funderName: string | null

    Name of the funder if it's a known entity (e.g., "Coinbase 2")

    funderType: string | null

    Type of the funder entity (e.g., "exchange")

    mint: string

    Token mint address (So11111111111111111111111111111111111111112 for SOL)

    signature: string

    Transaction signature of the funding transfer

    slot: number

    Slot number

    symbol: string

    Token symbol (e.g., "SOL")

    timestamp: number

    Unix timestamp in seconds