> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# WalletFunding

> First funding transaction for a wallet: who funded it, when, with what, and on which network.

### TypeScript shape

```ts theme={null}
interface WalletFunding {
  fundedByAddress: string;
  fundedByLabel: string | null;
  fundedAt: number;
  tokenAddress: string;
  networkId: number;
  amount: string;
  transactionHash: string;
}
```

<ResponseField name="fundedByAddress" type="String!">Address that funded the wallet.</ResponseField>
<ResponseField name="fundedByLabel" type="String">Label for the funder (e.g. `binance_hot_wallet`).</ResponseField>
<ResponseField name="fundedAt" type="Int!">Funding timestamp (unix seconds).</ResponseField>
<ResponseField name="tokenAddress" type="String!">Token used to fund the wallet.</ResponseField>
<ResponseField name="networkId" type="Int!">Network ID where funding occurred.</ResponseField>
<ResponseField name="amount" type="String!">Funding amount (token units).</ResponseField>
<ResponseField name="transactionHash" type="String!">Funding transaction hash.</ResponseField>
