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

docs(repo): fix links to LICENSE file #18641

Merged
merged 1 commit into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
41 changes: 20 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[![YouTube](https://img.shields.io/youtube/channel/subscribers/UCxd_ARE9LtAEdnRQA6g1TaQ)](https://www.youtube.com/@taikoxyz)

[![GitPOAP Badge](https://public-api.gitpoap.io/v1/repo/taikoxyz/taiko-mono/badge)](https://www.gitpoap.io/gh/taikoxyz/taiko-mono)
[![License](https://img.shields.io/github/license/taikoxyz/taiko-mono)](https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE.md)
[![License](https://img.shields.io/github/license/taikoxyz/taiko-mono)](https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE)

</div>

Expand All @@ -34,27 +34,26 @@ Get started with Taiko:
> [!TIP]
> Make sure your node is using the latest version tags for taiko-client and taiko-geth. Check out the [node releases page](https://docs.taiko.xyz/network-reference/software-releases-and-deployments)!

| Package | Description |
| :---------------------------------------------------------------------------- | :------------------------------------------------------ |
| Package | Description |
| :---------------------------------------------------------------------------- | :----------------------------------------------------------------- |
| [balance-monitor](./packages/balance-monitor) | Service that monitors Ethereum L1/L2 addresses and token balances. |
| [blobstorage](./packages/blobstorage) | Service for storing and retrieving blob data. |
| [bridge-ui](./packages/bridge-ui) | Bridge UI. |
| [docs-site](./packages/docs-site) | End user documentation site. |
| [eventindexer](./packages/eventindexer) | Event indexer. |
| [fork-diff](./packages/fork-diff) | Fork diff page. |
| [geth-rpc-gateway](./packages/geth-rpc-gateway) | RPC gateway for geth nodes. |
| [guardian-prover-health-check](./packages/guardian-prover-health-check) | Guardian prover health check service. |
| [guardian-prover-health-check-ui](./packages/guardian-prover-health-check-ui) | Guardian prover health check UI. |
| [monitors](./packages/monitors) | Monitoring and alerting services. |
| [nfts](./packages/nfts) | NFT-related smart contracts and utilities. |
| [protocol](./packages/protocol) | Taiko protocol smart contracts. |
| [relayer](./packages/relayer) | Bridge backend relayer. |
| [snaefell-ui](./packages/snaefell-ui) | Snaefell UI. |
| [supplementary-contracts](./packages/supplementary-contracts) | Supplementary contracts not part of the Taiko protocol. |
| [taiko-client](./packages/taiko-client) | Taiko client implementation in Go. |
| [taikoon-ui](./packages/taikoon-ui) | Taikoon UI. |
| [ui-lib](./packages/ui-lib) | UI library. |

| [blobstorage](./packages/blobstorage) | Service for storing and retrieving blob data. |
| [bridge-ui](./packages/bridge-ui) | Bridge UI. |
| [docs-site](./packages/docs-site) | End user documentation site. |
| [eventindexer](./packages/eventindexer) | Event indexer. |
| [fork-diff](./packages/fork-diff) | Fork diff page. |
| [geth-rpc-gateway](./packages/geth-rpc-gateway) | RPC gateway for geth nodes. |
| [guardian-prover-health-check](./packages/guardian-prover-health-check) | Guardian prover health check service. |
| [guardian-prover-health-check-ui](./packages/guardian-prover-health-check-ui) | Guardian prover health check UI. |
| [monitors](./packages/monitors) | Monitoring and alerting services. |
| [nfts](./packages/nfts) | NFT-related smart contracts and utilities. |
| [protocol](./packages/protocol) | Taiko protocol smart contracts. |
| [relayer](./packages/relayer) | Bridge backend relayer. |
| [snaefell-ui](./packages/snaefell-ui) | Snaefell UI. |
| [supplementary-contracts](./packages/supplementary-contracts) | Supplementary contracts not part of the Taiko protocol. |
| [taiko-client](./packages/taiko-client) | Taiko client implementation in Go. |
| [taikoon-ui](./packages/taikoon-ui) | Taikoon UI. |
| [ui-lib](./packages/ui-lib) | UI library. |

## Issues

Expand Down
2 changes: 1 addition & 1 deletion packages/eventindexer/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const docTemplate = `{
},
"license": {
"name": "MIT",
"url": "https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE.md"
"url": "https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE"
},
"version": "{{.Version}}"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/eventindexer/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"license": {
"name": "MIT",
"url": "https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE.md"
"url": "https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE"
},
"version": "1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/eventindexer/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ info:
url: https://community.taiko.xyz/
license:
name: MIT
url: https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE.md
url: https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE
termsOfService: http://swagger.io/terms/
title: Taiko Event Indexer API
version: "1.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/eventindexer/pkg/http/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
// @contact.email info@taiko.xyz

// @license.name MIT
// @license.url https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE.md
// @license.url https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE

// @host eventindexer.hekla.taiko.xyz
// Server represents an eventindexer http server instance.
Expand Down
2 changes: 1 addition & 1 deletion packages/relayer/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const docTemplate = `{
},
"license": {
"name": "MIT",
"url": "https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE.md"
"url": "https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE"
},
"version": "{{.Version}}"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/relayer/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"license": {
"name": "MIT",
"url": "https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE.md"
"url": "https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE"
},
"version": "1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/relayer/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ info:
url: https://community.taiko.xyz/
license:
name: MIT
url: https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE.md
url: https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE
termsOfService: http://swagger.io/terms/
title: Taiko Bridge Relayer API
version: "1.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/relayer/pkg/http/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type ethClient interface {
// @contact.email info@taiko.xyz

// @license.name MIT
// @license.url https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE.md
// @license.url https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE

// @host relayer.hekla.taiko.xyz
// Server represents an relayer http server instance.
Expand Down
Loading