Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pinax-network/subgraph-farmers-world
Subgraph - Farmers World
https://github.com/pinax-network/subgraph-farmers-world
subgraph
Last synced: about 2 months ago
JSON representation
Subgraph - Farmers World
- Host: GitHub
- URL: https://github.com/pinax-network/subgraph-farmers-world
- Owner: pinax-network
- License: mit
- Created: 2024-09-10T14:03:01.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-13T01:43:19.000Z (4 months ago)
- Last Synced: 2024-09-13T23:32:59.727Z (4 months ago)
- Topics: subgraph
- Language: Makefile
- Homepage: https://thegraph.com/explorer/subgraphs/3eMDCbB9JBiherY33aC6e5gGUbuMYLA8xKFwEC27mSkz?view=Query&chain=arbitrum-one
- Size: 1.13 MB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Subgraph: `Farmers World`
> Transactions, Decoded Actions & Database Operations
>
> [`sf.antelope.type.v1.Block`](https://buf.build/pinax/firehose-antelope/docs/main:sf.antelope.type.v1)- [x] **Blocks**
- [x] **Transactions**
- [x] **Actions**
- [x] **Authorization**
- [x] **Receiver**
- [x] **DatabaseOperations**## Smart Contracts
- `farmersworld`
- `farmerstoken`## Subgraph
- **API Key**: https://thegraph.com/studio/apikeys/
- **Base URL**: https://gateway.thegraph.com/api
- **Subgraph ID**:
- `3eMDCbB9JBiherY33aC6e5gGUbuMYLA8xKFwEC27mSkz`
- `17768678606329269960802053840745243856261143871618426305868635028232249275547`
- **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
}
}
}
```