diff --git a/README.md b/README.md index 27b5726d..782dce80 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,6 @@ This section in the documentation has relevant information and tutorials on the ## Safe{Core} API -The [Safe{Core} API](safe-core-api/available-services.md) refers to all the Safe infrastructure needed to power interfaces with all Safe account related information. This includes the Safe Transaction Service, Safe Events Service, etc. +The [Safe{Core} API](safe-core-api/supported-networks.md) refers to all the Safe infrastructure needed to power interfaces with all Safe account related information. This includes the Safe Transaction Service, Safe Events Service, etc. This section in the documentation has information related to the services architecture. diff --git a/safe-core-api/supported-networks.md b/safe-core-api/supported-networks.md index af716658..fddc685b 100644 --- a/safe-core-api/supported-networks.md +++ b/safe-core-api/supported-networks.md @@ -18,6 +18,7 @@ description: This page provides an overview of the available services | Ethereum Mainnet | [https://safe-transaction-mainnet.safe.global](https://safe-transaction-mainnet.safe.global/) | | Gnosis Chain | [https://safe-transaction-gnosis-chain.safe.global](https://safe-transaction-gnosis-chain.safe.global/) | | Goerli | [https://safe-transaction-goerli.safe.global](https://safe-transaction-goerli.safe.global/) | +| Sepolia | [https://safe-transaction-sepolia.safe.global](https://safe-transaction-sepolia.safe.global/) | | Optimism | [https://safe-transaction-optimism.safe.global](https://safe-transaction-optimism.safe.global/) | | Polygon | [https://safe-transaction-polygon.safe.global](https://safe-transaction-polygon.safe.global/) | | Polygon zkEVM | [https://safe-transaction-zkevm.safe.global](https://safe-transaction-zkevm.safe.global/) | diff --git a/safe-core-sdk/protocol-kit/README.md b/safe-core-sdk/protocol-kit/README.md index d0da795e..e39b9099 100644 --- a/safe-core-sdk/protocol-kit/README.md +++ b/safe-core-sdk/protocol-kit/README.md @@ -90,7 +90,7 @@ const ethAdapterOwner1 = new EthersAdapter({ The [API Kit](https://github.com/safe-global/safe-core-sdk/tree/main/packages/api-kit) consumes the [Safe Transaction Service API](https://github.com/safe-global/safe-transaction-service). To use this library, create a new instance of the `SafeApiKit` class, imported from `@safe-global/api-kit`. In chains where Safe provides a Transaction Service, it's enough to specify the `chainId.` You can specify your own service using the optional `txServiceUrl` parameter. -You will be using Goerli for this tutorial, however, you can also get [service URLs for different networks](../../safe-core-api/available-services.md). +You will be using Goerli for this tutorial, however, you can also get [service URLs for different networks](../../safe-core-api/supported-networks.md). ```tsx import SafeApiKit from '@safe-global/api-kit'