Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restyle up #3

Open
wants to merge 60 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
659fba7
Add address derivation
patrick-ogrady Jun 26, 2020
b551e36
prepare_metadata functions
patrick-ogrady Jun 26, 2020
3084dba
Add create_payloads
patrick-ogrady Jun 26, 2020
5b9fc9d
Combine signatures support
patrick-ogrady Jun 26, 2020
0a9b8ec
Add support for parse
patrick-ogrady Jun 26, 2020
f770135
Add support for transaction hash
patrick-ogrady Jun 26, 2020
bb04f77
nits
patrick-ogrady Jun 26, 2020
684bc66
Update endpoints
patrick-ogrady Jun 26, 2020
8ceeec4
Add flows to README
patrick-ogrady Jun 26, 2020
c202949
Update README with more explanation and context
patrick-ogrady Jun 26, 2020
60bb7f2
Update api.yaml
patrick-ogrady Jun 26, 2020
51087f4
Add docs for new models
patrick-ogrady Jun 26, 2020
982f089
Add notes about signature schemes
patrick-ogrady Jun 26, 2020
8cda1ad
Add crypto formats
patrick-ogrady Jun 26, 2020
0b14bba
Fix double space issue
patrick-ogrady Jun 26, 2020
e0d1558
Add supported curvetypes and signaturetypes to README
patrick-ogrady Jun 26, 2020
5d36140
run make gen
patrick-ogrady Jun 26, 2020
bae09da
nits
patrick-ogrady Jun 26, 2020
671d8df
Merge pull request #21 from coinbase/patrick/construction-api
patrick-ogrady Jun 26, 2020
3f4e8b7
fix misspelling in operation schema (#6)
patrick-ogrady Jun 26, 2020
12f2676
Reformat CurveType and SignatureType
patrick-ogrady Jun 26, 2020
3a45ddb
Add oldest_block_identifier to NetworkStatusResponse (#7)
patrick-ogrady Jun 26, 2020
7812bde
Remove MempoolRequest (#8)
patrick-ogrady Jun 26, 2020
221b19b
Update /account/balance documentation (#9)
patrick-ogrady Jun 26, 2020
aa85b0b
Add error details (#10)
patrick-ogrady Jun 26, 2020
9625b3b
Misspelling in transaction schema (#17)
patrick-ogrady Jun 26, 2020
c2c440a
Add historical_balance_lookup (#19)
patrick-ogrady Jun 26, 2020
faa5f7e
Nits
patrick-ogrady Jun 26, 2020
e8abc54
build
patrick-ogrady Jun 26, 2020
b5add55
Fix bool type
patrick-ogrady Jun 26, 2020
b4caace
check validity in circle
patrick-ogrady Jun 26, 2020
6ff528b
Merge pull request #22 from coinbase/patrick/misc-issues
patrick-ogrady Jun 26, 2020
e4f6303
Update links after website update
patrick-ogrady Jul 11, 2020
9d49df3
Merge pull request #24 from coinbase/patrick/update-readme-links
patrick-ogrady Jul 13, 2020
60ca23f
Improve Error description
matheusd Jul 17, 2020
f14aa75
Merge pull request #25 from matheusd/error
patrick-ogrady Jul 20, 2020
d909dc6
Add /block idempotency requirement
matheusd Jul 22, 2020
a3a6607
Merge pull request #26 from matheusd/inalterable-blocks
patrick-ogrady Jul 23, 2020
439cfa9
Unify transaction identifier response
patrick-ogrady Jul 25, 2020
515f4aa
Update default status code to 500 for errors
patrick-ogrady Jul 25, 2020
b02ae0f
Make gen
patrick-ogrady Jul 25, 2020
0d12fa7
Merge pull request #29 from coinbase/patrick/unify-tx-identifier
patrick-ogrady Jul 25, 2020
d05fa4f
Add coin construct
patrick-ogrady Jul 25, 2020
dc0288c
Add CoinChange
patrick-ogrady Jul 25, 2020
0fee82f
Add descriptions
patrick-ogrady Jul 25, 2020
53c18a9
build
patrick-ogrady Jul 25, 2020
5c2ad99
Merge pull request #30 from coinbase/patrick/sync-status
patrick-ogrady Jul 25, 2020
883e52f
Add sync status
patrick-ogrady Jul 26, 2020
ea04d76
Make build
patrick-ogrady Jul 26, 2020
eb7206c
nits
patrick-ogrady Jul 26, 2020
8c095a4
Merge pull request #31 from coinbase/patrick/partial-sync-status
patrick-ogrady Jul 26, 2020
cbd7909
Improve descroption on `/block/transaction` regarding pagination
AlanVerbner Jul 28, 2020
77be44b
Merge pull request #32 from AlanVerbner/feature/block-transaction-pag…
patrick-ogrady Jul 29, 2020
c5e4b12
Restyled by jq
restyled-commits Jul 29, 2020
d28d79a
Restyled by prettier-json
restyled-commits Jul 29, 2020
9e1a70f
Restyled by prettier-markdown
restyled-commits Jul 29, 2020
12b0149
Restyled by prettier-yaml
restyled-commits Jul 29, 2020
0719ddd
Restyled by shellharden
restyled-commits Jul 29, 2020
c89edb4
Restyled by shfmt
restyled-commits Jul 29, 2020
05f7f41
Restyled by whitespace
restyled-commits Jul 29, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
- checkout
- run: make node-deps
- run: make check-gen
check-valid:
docker:
- image: circleci/node:12
user: root
steps:
- checkout
- run: make node-deps
- run: make check-valid
salus:
machine: true
steps:
Expand All @@ -49,4 +57,5 @@ workflows:
- check-license
- check-spelling
- check-gen
- check-valid
- salus
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: node-deps go-deps deps gen check-gen add-license check-license spellcheck shellcheck salus
.PHONY: node-deps go-deps deps gen check-gen add-license check-license spellcheck shellcheck salus check-valid
LICENCE_SCRIPT=addlicense -c "Coinbase, Inc." -l "apache" -v
GO_INSTALL=GO111MODULE=off go get

Expand All @@ -14,6 +14,9 @@ deps: node-deps go-deps
gen:
./codegen.sh;

check-valid:
swagger-cli validate api.yaml

check-gen: | gen
git diff --exit-code

Expand All @@ -32,4 +35,4 @@ shellcheck:
salus:
docker run --rm -t -v ${PWD}:/home/repo coinbase/salus

release: shellcheck spellcheck check-gen check-license salus
release: check-valid shellcheck spellcheck check-gen check-license salus
388 changes: 325 additions & 63 deletions README.md

Large diffs are not rendered by default.

Loading