Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/molekilla/connex-graphql
A GraphQL implementation based on Ethereum and uses Connex
https://github.com/molekilla/connex-graphql
Last synced: 3 days ago
JSON representation
A GraphQL implementation based on Ethereum and uses Connex
- Host: GitHub
- URL: https://github.com/molekilla/connex-graphql
- Owner: molekilla
- License: mit
- Created: 2020-02-13T16:24:08.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T01:22:43.000Z (almost 2 years ago)
- Last Synced: 2024-04-10T02:56:45.691Z (7 months ago)
- Language: TypeScript
- Size: 1.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# connex-graphql
thor connex graphql### Install
`npm i`### Run
`npm start`
Open graphiql in `http://localhost:3000`### Environment variables
`THOR_URL: Thor node`
### Sample
```graphql
{
contractFilter(
abiSignatures: [
"event LogSomething(bytes32 indexed id,address indexed user)",
"event LogOther(bytes32 indexed id,address indexed user, address indexed payer)"
]
address: "0xe24dBBEd860aD4b71cf69ED9c0AcEeeDcA99f935",
filter: {
indexed: [{
user: "0xf02e4e64f9f7fe6e461f136d248baab3c1f2a11d"
}],
order: "desc",
limit: 200,
range: {
from: "06/01/2019"
to: "07/30/2019"
},
}) {
meta{
txID
}
txDate
logName
timestamp
address
decoded
}
}
```