All Projects → lukehedger → eth-graphql

lukehedger / eth-graphql

Licence: MIT license
🧠 Ethereum GraphQL API

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to eth-graphql

Jsonrpc
The jsonrpc package helps implement of JSON-RPC 2.0
Stars: ✭ 143 (+694.44%)
Mutual labels:  json-rpc
Ethereumex
Elixir JSON-RPC client for the Ethereum blockchain
Stars: ✭ 225 (+1150%)
Mutual labels:  json-rpc
node-mole-rpc
Transport agnostic spec compliant JSON RPC client and server
Stars: ✭ 54 (+200%)
Mutual labels:  json-rpc
Nginx upstream module
Tarantool NginX upstream module (REST, JSON API, websockets, load balancing)
Stars: ✭ 157 (+772.22%)
Mutual labels:  json-rpc
Rpc
Simple RPC style APIs with generated clients & servers.
Stars: ✭ 192 (+966.67%)
Mutual labels:  json-rpc
Php Bitcoinrpc
Fully unit-tested Bitcoin JSON-RPC client based on GuzzleHttp.
Stars: ✭ 231 (+1183.33%)
Mutual labels:  json-rpc
Jsonrpcserver
Process JSON-RPC requests in Python
Stars: ✭ 126 (+600%)
Mutual labels:  json-rpc
mqtt-json-rpc
JSON-RPC protocol over MQTT communication
Stars: ✭ 31 (+72.22%)
Mutual labels:  json-rpc
Aria2p
Command-line tool and library to interact with an aria2c daemon process with JSON-RPC.
Stars: ✭ 201 (+1016.67%)
Mutual labels:  json-rpc
odooly
Python library and CLI to interact with Odoo and OpenERP.
Stars: ✭ 53 (+194.44%)
Mutual labels:  json-rpc
Build Server Protocol
Protocol for IDEs and build tools to communicate about compile, run, test, debug and more.
Stars: ✭ 169 (+838.89%)
Mutual labels:  json-rpc
Autoserver
Create a full-featured REST/GraphQL API from a configuration file
Stars: ✭ 188 (+944.44%)
Mutual labels:  json-rpc
Brayns
Visualizer for large-scale and interactive ray-tracing of neurons
Stars: ✭ 232 (+1188.89%)
Mutual labels:  json-rpc
Jsonrpc C
JSON-RPC in C (server only for now)
Stars: ✭ 155 (+761.11%)
Mutual labels:  json-rpc
transmission
Go wrapper for the transmission API
Stars: ✭ 34 (+88.89%)
Mutual labels:  json-rpc
Mjson
C/C++ JSON parser, emitter, JSON-RPC engine for embedded systems
Stars: ✭ 136 (+655.56%)
Mutual labels:  json-rpc
Jquery.terminal
jQuery Terminal Emulator - JavaScript library for creating web-based terminals with custom commands
Stars: ✭ 2,623 (+14472.22%)
Mutual labels:  json-rpc
jr
A tiny Command Line Interface JavaScript Object Notation Remote Procedure Call client
Stars: ✭ 16 (-11.11%)
Mutual labels:  json-rpc
WebApiClient.Extensions
WebApiClient项目的第三方扩展:Autofac、DependencyInjection、HttpClientFactory、SteeltoeOSS.Discovery、MessagePack、Protobuf、Json-Rpc
Stars: ✭ 73 (+305.56%)
Mutual labels:  json-rpc
Web3swift
Elegant Web3js functionality in Swift. Native ABI parsing and smart contract interactions.
Stars: ✭ 237 (+1216.67%)
Mutual labels:  json-rpc

Just a proof-of-concept for now with a few methods implemented!

Setup

npm install

Run

npm start

Try

Test it out on http://localhost:4000/:

query {
  blockNumber
  accounts
  getBalance(params:["0x1f0dff2d80c4812adaf0c93349b28abaa9a84710"])
}

graphql-playground

Or with curl:

curl 'http://localhost:4000/' -H 'Content-Type: application/json' --data-binary '{"query":"query {\n  blockNumber\n  accounts\n  getBalance(params:[\"0x1f0dff2d80c4812adaf0c93349b28abaa9a84710\"])\n}","variables":{},"operationName":null}'
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].