Instant Distribution Events
Query IDA Events
Last updated
Query IDA Events
Last updated
#get events where subscriber "0xdcb" claimed a pending distribution
query MyQuery {
indexDistributionClaimedEvents(
where: {subscriber: "0xDCB45e4f6762C3D7C61a00e96Fb94ADb7Cf27721"}
) {
amount
indexId
timestamp
token
}
}#get events where subscriber "0xdcb" approved a subscription
query MyQuery {
subscriptionApprovedEvents(
where: {subscriber: "0xdcb45e4f6762c3d7c61a00e96fb94adb7cf27721"}
) {
timestamp
token
transactionHash
}
}#get a subscriber's index subscriptions
{
accounts(where: {
#your address below
id: "0x..."
}) {
subscriptions{
index {
token{
symbol
}
}
id
approved
units
totalAmountReceivedUntilUpdatedAt
}
}
}query MyQuery {
indexUpdatedEvents(where: {indexId: $id}) {
timestamp
}
}