Sponsor
An address that has sent USDC to the Sablier treasury for the billing process.
type Sponsor {
id: String!
address: String!
chainId: Int!
sponsorshipCount: Int!
sponsorships(
skip: Int = 0
first: Int = 100
orderBy: Sponsorship_orderBy
orderDirection: OrderDirection
where: Sponsorship_filter
): [Sponsorship!]!
totalAmount: BigInt!
totalAmountDisplay: String!
}
Fields
Sponsor.id ● String! non-null scalar
Unique identifier: {chainId}_{address}
Sponsor.address ● String! non-null scalar
Address of the sponsor.
Sponsor.chainId ● Int! non-null scalar
The chain ID where the sponsorship was made (sponsorships are chain-specific).
Sponsor.sponsorshipCount ● Int! non-null scalar
Number of sponsorships made by this sponsor.
Sponsor.sponsorships ● [Sponsorship!]! non-null object
List of individual sponsorship transfers made by this sponsor.
Sponsor.sponsorships.skip ● Int scalar
Sponsor.sponsorships.first ● Int scalar
Sponsor.sponsorships.orderBy ● Sponsorship_orderBy enum
Sponsor.sponsorships.orderDirection ● OrderDirection enum
Sponsor.sponsorships.where ● Sponsorship_filter input
Sponsor.totalAmount ● BigInt! non-null scalar
Cumulative raw USDC amount paid by the sponsor.
Sponsor.totalAmountDisplay ● String! non-null scalar
Human-readable cumulative USDC amount paid by the sponsor (e.g., "1729.12").