-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e493d1
commit 85a8c5f
Showing
15 changed files
with
129 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# Client | ||
|
||
[![GoDoc](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=shield)](https://pkg.go.dev/github.com/coinbase/rosetta-sdk-go/client?tab=doc) | ||
[![GoDoc](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=shield)](https://pkg.go.dev/github.com/coinbase/mesh-sdk-go/client?tab=doc) | ||
|
||
The Client package reduces the work required to communicate with a Rosetta server. | ||
The Client package reduces the work required to communicate with a Mesh server. | ||
|
||
If you want a higher-level interface that automatically asserts that server responses | ||
are correct, check out the [Fetcher](/fetcher). | ||
|
||
## Installation | ||
|
||
```shell | ||
go get github.com/coinbase/rosetta-sdk-go/client | ||
go get github.com/coinbase/mesh-sdk-go/client | ||
``` | ||
|
||
## Examples | ||
Check out the [examples](/examples) to see how easy | ||
it is to connect to a Rosetta server. | ||
it is to connect to a Mesh server. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Parser | ||
|
||
[![GoDoc](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=shield)](https://pkg.go.dev/github.com/coinbase/rosetta-sdk-go/parser?tab=doc) | ||
[![GoDoc](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=shield)](https://pkg.go.dev/github.com/coinbase/mesh-sdk-go/parser?tab=doc) | ||
|
||
The Parser package provides support for parsing Rosetta blocks. This includes | ||
The Parser package provides support for parsing Mesh blocks. This includes | ||
things like calculating all the balance changes that occurred in a block and | ||
grouping related operations. | ||
|
||
## Installation | ||
|
||
```shell | ||
go get github.com/coinbase/rosetta-sdk-go/parser | ||
go get github.com/coinbase/mesh-sdk-go/parser | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# Client | ||
|
||
[![GoDoc](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=shield)](https://pkg.go.dev/github.com/coinbase/rosetta-sdk-go/client?tab=doc) | ||
[![GoDoc](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=shield)](https://pkg.go.dev/github.com/coinbase/mesh-sdk-go/client?tab=doc) | ||
|
||
The Client package reduces the work required to communicate with a Rosetta server. | ||
The Client package reduces the work required to communicate with a Mesh server. | ||
|
||
If you want a higher-level interface that automatically asserts that server responses | ||
are correct, check out the [Fetcher](/fetcher). | ||
|
||
## Installation | ||
|
||
```shell | ||
go get github.com/coinbase/rosetta-sdk-go/client | ||
go get github.com/coinbase/mesh-sdk-go/client | ||
``` | ||
|
||
## Examples | ||
Check out the [examples](/examples) to see how easy | ||
it is to connect to a Rosetta server. | ||
it is to connect to a Mesh server. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Types | ||
|
||
[![GoDoc](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=shield)](https://pkg.go.dev/github.com/coinbase/rosetta-sdk-go/types?tab=doc) | ||
[![GoDoc](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=shield)](https://pkg.go.dev/github.com/coinbase/mesh-sdk-go/types?tab=doc) | ||
|
||
Types contains a collection of auto-generated Rosetta types. Using this | ||
Types contains a collection of auto-generated Mesh types. Using this | ||
package ensures that you don't need to automatically generate code on your | ||
own. | ||
|
||
## Installation | ||
|
||
```shell | ||
go get github.com/coinbase/rosetta-sdk-go/types | ||
go get github.com/coinbase/mesh-sdk-go/types | ||
``` |
Oops, something went wrong.