diff --git a/docs/src/SUMMARY.md b/docs/src/SUMMARY.md index 581cc7f..20e0a0b 100644 --- a/docs/src/SUMMARY.md +++ b/docs/src/SUMMARY.md @@ -1,5 +1,5 @@ # Summary [Verified Addresses](./index.md) -[Assets](./assets.md) -[Contracts](./contracts.md) +- [Assets](./assets.md) +- [Contracts](./contracts.md) diff --git a/docs/src/contracts.md b/docs/src/contracts.md index 241069a..4392685 100644 --- a/docs/src/contracts.md +++ b/docs/src/contracts.md @@ -1,4 +1,4 @@ -# Verified Deployed Contracts +# Verified Contracts ## Ethereum Mainnet diff --git a/docs/src/index.md b/docs/src/index.md index 6aa2ceb..0bb1ffa 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -1,3 +1,7 @@ # Verified Addresses -Verified assets and deployed contract addresses across the Fuel ecosystem. +This section serves as a reference for all verified assets and contract addresses across the Fuel ecosystem. + +The addresses are sourced from the following repositories: +- [Asset Addresses](https://github.com/FuelLabs/verified-assets) +- [Contract Addresses](https://github.com/FuelLabs/fuel-bridge/tree/main/packages/solidity-contracts/deployments) \ No newline at end of file diff --git a/src/gen-contract-docs.mjs b/src/gen-contract-docs.mjs index b266c85..f55aa26 100644 --- a/src/gen-contract-docs.mjs +++ b/src/gen-contract-docs.mjs @@ -15,7 +15,7 @@ const outputFile = "./docs/src/contracts.md"; const folders = ["mainnet", "testnet"]; // Start the markdown content with the main title -let mdContent = "# Verified Deployed Contracts\n\n"; +let mdContent = "# Verified Contracts\n\n"; // Helper function to fetch JSON data from a URL const fetchJson = async (url) => {