Skip to content

Commit 385c067

Browse files
fix ref (#147)
1 parent 5ef400e commit 385c067

File tree

2 files changed

+6
-40
lines changed

2 files changed

+6
-40
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,4 @@ All support requests must be made via [our support team][3].
7676
[10]: https://docs.github.com/en/desktop/contributing-and-collaborating-using-github-desktop/working-with-your-remote-repository-on-github-or-github-enterprise/creating-an-issue-or-pull-request#creating-an-issue
7777
[11]: https://docs.github.com/en/desktop/contributing-and-collaborating-using-github-desktop/working-with-your-remote-repository-on-github-or-github-enterprise/creating-an-issue-or-pull-request#creating-a-pull-request
7878
[12]: https://hackerone.com/coinbase
79-
[13]: https://community.mesh-api.org
80-
[14]: https://github.com/coinbase/mesh-bitcoin/security
79+
[13]: https://github.com/coinbase/mesh-bitcoin/security

README.md

Lines changed: 5 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
<p align="center">
2-
<a href="https://www.mesh-api.org">
3-
<img width="90%" alt="Mesh" src="https://www.mesh-api.org/img/mesh_header.png">
4-
</a>
5-
</p>
61
<h3 align="center">
72
Mesh Bitcoin
83
</h3>
@@ -23,7 +18,7 @@ USE AT YOUR OWN RISK.</b><p>
2318

2419
The `mesh-bitcoin` repository provides a reference implementation of the Mesh API for Bitcoin in Golang. This repository was created for developers of Bitcoin-like (a.k.a., UTXO) blockchains, who may find it easier to fork this reference implementation than write one from scratch.
2520

26-
[Mesh](https://www.mesh-api.org/docs/welcome.html) is an open-source specification and set of tools that makes integrating with blockchains simpler, faster, and more reliable. The Mesh API is specified in the [OpenAPI 3.0 format](https://www.openapis.org).
21+
[Mesh](https://docs.cdp.coinbase.com/mesh/docs/welcome/) is an open-source specification and set of tools that makes integrating with blockchains simpler, faster, and more reliable. The Mesh API is specified in the [OpenAPI 3.0 format](https://www.openapis.org).
2722

2823
Requests and responses can be crafted with auto-generated code using [Swagger Codegen](https://swagger.io/tools/swagger-codegen) or [OpenAPI Generator](https://openapi-generator.tech), are human-readable (easy to debug and understand), and can be used in servers and browsers.
2924

@@ -79,12 +74,6 @@ While working on improvements to this repository, we recommend that you use thes
7974
* `make build-local` to build a Docker image from the local context
8075
* `make coverage-local` to generate a coverage report
8176

82-
### Deployment
83-
84-
As specified in the [Mesh API Principles](https://www.mesh-api.org/docs/automated_deployment.html), all Mesh implementations must be deployable via Docker and support running via either an [`online` or `offline` mode](https://www.mesh-api.org/docs/node_deployment.html#multiple-modes).
85-
86-
**YOU MUST [INSTALL DOCKER](https://www.docker.com/get-started) FOR THESE INSTRUCTIONS TO WORK.**
87-
8877
#### Image Installation
8978

9079
Running these commands will create a Docker image called `mesh-bitcoin:latest`.
@@ -181,22 +170,10 @@ make run-testnet-offline
181170

182171
`mesh-bitcoin` uses the `syncer`, `storage`, `parser`, and `server` package from [`mesh-sdk-go`](https://github.com/coinbase/mesh-sdk-go) instead of a new Bitcoin-specific implementation of packages of similar functionality. Below you can find an overview of how everything fits together:
183172

184-
<p align="center">
185-
<a href="https://www.mesh-api.org">
186-
<img width="90%" alt="Architecture" src="https://www.mesh-api.org/img/mesh_bitcoin_architecture.jpg">
187-
</a>
188-
</p>
189-
190173
### Concurrent Block Syncing
191174

192175
To speed up indexing, `mesh-bitcoin` uses concurrent block processing with a "wait free" design (using [the channels function](https://golangdocs.com/channels-in-golang) instead of [the sleep function](https://pkg.go.dev/time#Sleep) to signal which threads are unblocked). This allows `mesh-bitcoin` to fetch multiple inputs from disk while it waits for inputs that appeared in recently processed blocks to save to disk.
193176

194-
<p align="center">
195-
<a href="https://www.mesh-api.org">
196-
<img width="90%" alt="Concurrent Block Syncing" src="https://www.mesh-api.org/img/mesh_bitcoin_concurrent_block_synching.jpg">
197-
</a>
198-
</p>
199-
200177
## Test the Implementation with the mesh-cli Tool
201178

202179
To validate `mesh-bitcoin`, [install `mesh-cli`](https://github.com/coinbase/mesh-cli#install) and run one of these commands:
@@ -205,7 +182,7 @@ To validate `mesh-bitcoin`, [install `mesh-cli`](https://github.com/coinbase/mes
205182
* `mesh-cli check:construction --configuration-file mesh-cli-conf/testnet/config.json` - This command validates the blockchain’s construction, signing, and broadcasting.
206183
* `mesh-cli check:data --configuration-file mesh-cli-conf/mainnet/config.json` - This command validates that the Data API information in the `mainnet` network is correct. It also ensures that the implementation does not miss any balance-changing operations.
207184

208-
Read the [How to Test your Mesh Implementation](https://www.mesh-api.org/docs/mesh_test.html) documentation for additional details.
185+
Read the [How to Test your Mesh Implementation](https://docs.cdp.coinbase.com/mesh/docs/mesh-test/) documentation for additional details.
209186

210187
## Contributing
211188

@@ -217,24 +194,14 @@ You may contribute to the `mesh-bitcoin` project in various ways:
217194

218195
Read our [Contributing](CONTRIBUTING.MD) documentation for more information.
219196

220-
When you've finished an implementation for a blockchain, share your work in the [ecosystem category of the community site](https://community.mesh-api.org/c/ecosystem). Platforms looking for implementations for certain blockchains will be monitoring this section of the website for high-quality implementations they can use for integration. Make sure that your implementation meets the [expectations](https://www.mesh-api.org/docs/node_deployment.html) of any implementation.
221-
222197
You can also find community implementations for a variety of blockchains in the [mesh-ecosystem](https://github.com/coinbase/mesh-ecosystem) repository.
223198

224199
## Documentation
225200

226-
You can find the Mesh API documentation at [mesh-api.org](https://www.mesh-api.org/docs/welcome.html).
227-
228-
Check out the [Getting Started](https://www.mesh-api.org/docs/getting_started.html) section to start diving into Mesh.
201+
You can find the Mesh API documentation [here](https://docs.cdp.coinbase.com/mesh/docs/welcome/).
229202

230-
Our documentation is divided into the following sections:
203+
Check out the [Getting Started](https://docs.cdp.coinbase.com/mesh/docs/getting-started/) section to start diving into Mesh.
231204

232-
* [Product Overview](https://www.mesh-api.org/docs/welcome.html)
233-
* [Getting Started](https://www.mesh-api.org/docs/getting_started.html)
234-
* [Mesh API Spec](https://www.mesh-api.org/docs/Reference.html)
235-
* [Testing](https://www.mesh-api.org/docs/mesh_cli.html)
236-
* [Best Practices](https://www.mesh-api.org/docs/node_deployment.html)
237-
* [Repositories](https://www.mesh-api.org/docs/mesh_specifications.html)
238205

239206
## Related Projects
240207

@@ -244,7 +211,7 @@ Our documentation is divided into the following sections:
244211

245212
### Sample Implementations
246213

247-
You can find community implementations for a variety of blockchains in the [mesh-ecosystem](https://github.com/coinbase/mesh-ecosystem) repository, and in the [ecosystem category](https://community.mesh-api.org/c/ecosystem) of our community site.
214+
You can find community implementations for a variety of blockchains in the [mesh-ecosystem](https://github.com/coinbase/mesh-ecosystem) repository.
248215

249216
## License
250217
This project is available open source under the terms of the [Apache 2.0 License](https://opensource.org/licenses/Apache-2.0).

0 commit comments

Comments
 (0)