Sponsorship
A single USDC transfer to the Sablier treasury. Immutable — one per Transfer event.
type Sponsorship {
id: String!
amount: BigInt!
amountDisplay: String!
block: Int!
chainId: Int!
logIndex: Int!
sender: String!
sponsor: Sponsor!
timestamp: Int!
txHash: String!
}
Fields
Sponsorship.id ● String! non-null scalar
Unique identifier: {chainId}_{txHash}_{logIndex}
Sponsorship.amount ● BigInt! non-null scalar
Raw USDC amount.
Sponsorship.amountDisplay ● String! non-null scalar
Human-readable USDC amount (e.g., "1719.12").
Sponsorship.block ● Int! non-null scalar
Block number of the transaction.
Sponsorship.chainId ● Int! non-null scalar
The ID of the chain where the transfer occurred (e.g., 1 for Ethereum).
Sponsorship.logIndex ● Int! non-null scalar
Log index of the Transfer event within the transaction.
Sponsorship.sender ● String! non-null scalar
Address of the transaction signer (may differ from from for contract wallets).
Sponsorship.sponsor ● Sponsor! non-null object
The sponsor who made this transfer.
Sponsorship.timestamp ● Int! non-null scalar
Unix timestamp of the transaction.
Sponsorship.txHash ● String! non-null scalar
Hash of the transaction.