Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
}
}
}
```