tendermint/rpc/core
Anton Kaliaev 96ae535fb8 proto3 timestamp (#2064)
This PR changes ABCI time format from int64 (Unix seconds) to WKT (WellKnownType) google.protobuf.Timestamp.

Refs #1857

Reasons:

better precision
standard DT for proto

* update Gopkg.lock
* [makefile] remove extra grep
    - go list excludes vendor by default now
* proto3 timestamp
* [docs/abci-spec] note about serialisation format
* make time non-nullable
2018-07-27 04:23:19 +02:00
..
types Fix 0.22.7, bump to 0.22.8 2018-07-26 18:08:09 -07:00
README.md rpc: Improve slate for Jenkins (#2070) 2018-07-25 23:37:08 +02:00
abci.go proto3 timestamp (#2064) 2018-07-27 04:23:19 +02:00
blocks.go rpc: fix /blockchain OOM #2049 2018-07-24 21:18:20 -04:00
blocks_test.go rpc: fix /blockchain OOM #2049 2018-07-24 21:18:20 -04:00
consensus.go Revert "delete everything" (includes everything non-go-crypto) 2018-06-20 17:35:30 -07:00
dev.go Revert "delete everything" (includes everything non-go-crypto) 2018-06-20 17:35:30 -07:00
doc.go crypto: Refactor to move files out of the top level directory 2018-07-18 08:38:44 -07:00
doc_template.txt Revert "delete everything" (includes everything non-go-crypto) 2018-06-20 17:35:30 -07:00
events.go Revert "delete everything" (includes everything non-go-crypto) 2018-06-20 17:35:30 -07:00
health.go Revert "delete everything" (includes everything non-go-crypto) 2018-06-20 17:35:30 -07:00
mempool.go fix import paths 2018-07-01 22:36:49 -04:00
net.go Revert "delete everything" (includes everything non-go-crypto) 2018-06-20 17:35:30 -07:00
pipe.go fix import paths 2018-07-01 22:36:49 -04:00
pipe_test.go Revert "delete everything" (includes everything non-go-crypto) 2018-06-20 17:35:30 -07:00
routes.go Revert "delete everything" (includes everything non-go-crypto) 2018-06-20 17:35:30 -07:00
slate_header.txt rpc: Improve slate for Jenkins (#2070) 2018-07-25 23:37:08 +02:00
status.go rpc: log error when we timeout getting validators from consensus (#2045) 2018-07-25 10:56:00 +04:00
status_test.go rpc: Test Validator retrevial timeout 2018-07-20 17:08:55 +02:00
tx.go fix import paths 2018-07-01 22:36:49 -04:00
version.go Revert "delete everything" (includes everything non-go-crypto) 2018-06-20 17:35:30 -07:00

README.md

Tendermint RPC

We are using Slate to power our RPC documentation. For generating markdown use:

go get github.com/davecheney/godoc2md

# from root of this repo
make rpc-docs

Pagination

Requests that return multiple items will be paginated to 30 items by default. You can specify further pages with the ?page parameter. You can also set a custom page size up to 100 with the ?per_page parameter.