Built With
- TheGraph
- And with ❤️
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
https://thegraph.com/explorer/subgraphs/HR7owbk45vXNgf8XXyDd7fRLuVo6QGYY6XbGjRCPgUuD?view=Overview&chain=arbitrum-one
https://thegraph.com/explorer/subgraphs/J7QQ4hkWLvfNBMAMxcYhzEfWw7ChJ9DM5qQsXcad5ewb?view=Overview&chain=arbitrum-one
https://thegraph.com/explorer/subgraphs/5t5eG3Mc5ZEYUUjw5R2TWvYtVYxSZnsKFuNhpjAwUepb?view=Overview&chain=arbitrum-one
https://thegraph.com/explorer/subgraphs/7EwmQS7MyeY9BZC5xeAr25WgjcgbRNpAY95dZNBvqgja?view=Overview&chain=arbitrum-one
https://thegraph.com/explorer/subgraphs/5Sia5PDi7BLF6VfBhvByBtHgqRCMkTNKrRD17cd4Ls86?view=Overview&chain=arbitrum-one
https://thegraph.com/explorer/subgraphs/5dCiMYfUMh2RoT9AF8rnEYfKqU9eLv4e6GtPrTdD75sA?view=Overview&chain=arbitrum-one
https://thegraph.com/explorer/subgraphs/9soNvLk5RWaJ3HtgJSsr9m5Nafo985kNyrArPM7iopUV?view=Overview&chain=arbitrum-one
https://thegraph.com/explorer/subgraphs/5t5eG3Mc5ZEYUUjw5R2TWvYtVYxSZnsKFuNhpjAwUepb?view=Overview&chain=arbitrum-one
https://thegraph.com/explorer/subgraphs/HafRrZ1KFWenXXxFisxSy2Nxyv7Atan7xXkc2rWFCddL?view=Overview&chain=arbitrum-one
https://thegraph.com/explorer/subgraphs/5dCiMYfUMh2RoT9AF8rnEYfKqU9eLv4e6GtPrTdD75sA?view=Overview&chain=arbitrum-one
https://thegraph.com/explorer/subgraphs/CZxkjYEnom7ijhKv77n3Qf2WGuPMLkfVsyZzRB6EhMmP?view=Overview&chain=arbitrum-one
query VestingInfo($vestingToken: ID!) {
vestingToken(id: $vestingToken) {
id
name
symbol
decimals
redeemToken {
id
name
symbol
decimals
}
milestones(first: 1000) {
timestamp
ramp
percentage
}
balance {
allocation
claimed
claimable
locked
lastClaimedAt
}
}
}
query UserVestingsByProject(
$userAddress: String!
$vestingsTokens: [String!]!
$first: Int = 1000
$skip: Int = 0
) {
holderBalances(
first: $first
skip: $skip
where: { user: $userAddress, vestingToken_in: $vestingsTokens }
) {
vestingToken {
id
}
allocation
claimed
}
}
query VestingsBalances(
$vestingsTokens: [String!]!
$first: Int = 1000
$skip: Int = 0
) {
vestingBalances(
first: $first
skip: $skip
where: { vestingToken_in: $vestingsTokens }
) {
vestingToken {
id
}
allocation
claimed
}
}
query VestingRecipientBalances(
$vestingToken: String!
$first: Int = 1000
$skip: Int = 0
) {
holderBalances(
first: $first
skip: $skip
where: { vestingToken: $vestingToken, isRecipient: true }
) {
user
allocation
claimed
balance
updatedAt
lastClaimedAt
transferredIn
transferredOut
}
}
query VestingDistributionBatches(
$vestingToken: String!
$first: Int = 1000
$skip: Int = 0
) {
distributionBatches(
first: $first
skip: $skip
where: { vestingToken: $vestingToken }
) {
from
totalAmount
transactionHash
blockTimestamp
recipients {
to
value
}
}
}