Analytics is an application built upon IoTeX core API which extracts data from IoTeX blockchain and reindexes them for applications to use via a GraphQL web interface.
API Documents : https://analyser-api.iotex.io/docs
GraphQL Playground: https://analyser-api.iotex.io/graphql
Install Google protocol buffers compiler protoc
install required protoc plugins:
go install github.com/ysugimoto/grpc-graphql-gateway/protoc-gen-graphql/...
go install google.golang.org/protobuf/cmd/[email protected]
go install google.golang.org/grpc/cmd/[email protected]
go install github.com/grpc-ecosystem/grpc-gateway/v2/[email protected]
go install github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc@latest
Compiling protocol buffers and generate Go code, Only when you modified proto file.
make proto
Build Server
make
API service depends on iotex-analyser. You need to use docker start iotex-analyser
before that.
docker run -p 8888:8888 -p 8889:8889 -e "GRPC_API_PORT=8888" -e "HTTP_API_PORT=8889" -e "CHAIN_GRPC_ENDPOINT=api.iotex.one:443" -e "DB_DRIVER=postgres" -e "DB_HOST=x.x.x.x" -e "DB_PORT=5432" -e "DB_USER=user" -e "DB_PASSWORD=password" -e "DB_NAME=dbname" iotexproject/iotex-analyser-api
- Note: Please change your database config in command
API supports gRPC,RESTful HTTP and GraphQL
curl -g "http://localhost:8889/graphql" -d '
{
GetActionsByAddress(address: "io14u5d66rt465ykm7t2847qllj0reml27q30kr75") {
count
results{
actHash
amount
}
}
}'
curl -g "http://localhost:8889/api.ActionsService.GetActionsByAddress" -d '
{
"address": "io14u5d66rt465ykm7t2847qllj0reml27q30kr75"
}'
grpcurl -plaintext -d '{"address": "io14u5d66rt465ykm7t2847qllj0reml27q30kr75"}' 127.0.0.1:8888 api.ActionsService.GetActionsByAddress
GraphQL Playground Support
This project is licensed under the Apache License 2.0.