Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pinax-network/subgraph-upland
Subgraph - Upland
https://github.com/pinax-network/subgraph-upland
subgraph
Last synced: about 2 months ago
JSON representation
Subgraph - Upland
- Host: GitHub
- URL: https://github.com/pinax-network/subgraph-upland
- Owner: pinax-network
- License: mit
- Created: 2024-09-10T00:04:07.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-16T15:25:55.000Z (4 months ago)
- Last Synced: 2024-09-16T18:33:43.651Z (4 months ago)
- Topics: subgraph
- Language: Makefile
- Homepage: https://thegraph.com/explorer/subgraphs/68hLjdJHCYMufv8UUN56aEZ4XV4ERgFnAwbLARnNX6wz?view=Query&chain=arbitrum-one
- Size: 500 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Subgraph: `Upland`
> Transactions, Decoded Actions & Database Operations
- [x] **Blocks**
- [x] **Transactions**
- [x] **Actions**
- [x] **Authorization**
- [x] **Receiver**
- [x] **DatabaseOperations**## Smart Contracts
- `playuplandme`
- `uplandnftact`
- `upxtokenacct`## Subgraph
- **API Key**: https://thegraph.com/studio/apikeys/
- **Base URL**: https://gateway.thegraph.com/api
- **Subgraph ID**: [`68hLjdJHCYMufv8UUN56aEZ4XV4ERgFnAwbLARnNX6wz`](https://thegraph.com/explorer/subgraphs/68hLjdJHCYMufv8UUN56aEZ4XV4ERgFnAwbLARnNX6wz?view=Query&chain=arbitrum-one)
- **Subgraph NFT**: `34494355199261144729623062330884641703975822318042303183496619944705633044937`
- **Query URL format**: `{base_url}`/api/`{api-key}`/subgraphs/id/`{subgraph_id}`## GraphQL
```graphql
{
actions(
orderBy: block__number
orderDirection: desc
) {
block{
number
time
}
transaction {
id
}
account
name
jsonData
dbOps {
code
tableName
primaryKey
newDataJson
}
}
}
```