Skip to content

Commit 2e9d28a

Browse files
committed
fix links
1 parent b29721c commit 2e9d28a

File tree

8 files changed

+10
-12
lines changed

8 files changed

+10
-12
lines changed
File renamed without changes.

sdk/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ title: 'React Native',
8181
description: 'Set up the SDK in a React Native or Expo dapp.',
8282
},
8383
{
84-
href: 'https://web3onboard.thirdweb.com/',
84+
href: 'https://web3onboard.thirdweb.com',
8585
title: 'Web3-Onboard',
8686
description: 'Use SDK features with Web3-Onboard.',
8787
buttonIcon: 'external-arrow',

services/how-to/get-testnet-tokens.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Use [testnet endpoints](../get-started/endpoints.md) during development and init
2525
| [Celo Alfajores](https://docs.celo.org/getting-started/alfajores-testnet)| [Celo Alfajores faucet](https://faucet.celo.org/alfajores)| [Celo bridge](https://docs.celo.org/protocol/bridge#token-bridges)|
2626
| [Ethereum Sepolia](https://docs.blast.io/building/bridges/testnet)| [Ethereum Sepolia faucet](https://faucet.quicknode.com/ethereum/sepolia)| [Sepolia bridge](https://docs.blast.io/building/bridges/testnet)|
2727
| [Linea Sepolia](https://support.linea.build/getting-started/how-to-get-linea-goerli-testnet-eth)| [Linea Sepolia faucet](https://docs.metamask.io/developer-tools/faucet)| [Linea bridge](https://bridge.linea.build)|
28-
| [Mantle Sepolia](https://docs.mantle.xyz/network/for-uers/how-to-guides/connecting-wallet-to-mantle-network)| [Mantle Sepolia faucet](https://faucet.sepolia.mantle.xyz) |[Mantle bridge](https://bridge.sepolia.mantle.xyz)|
28+
| [Mantle Sepolia](https://docs.mantle.xyz/network/for-uers/how-to-guides/connecting-wallet-to-mantle-network)| [Mantle Sepolia faucet](https://faucet.sepolia.mantle.xyz) |[Mantle bridge](https://app.mantle.xyz/bridge?network=sepolia)|
2929
| [Optimism Sepolia](https://docs.optimism.io/builders/tools/build/faucets)| [Optimism Sepolia faucet](https://faucet.quicknode.com/optimism/sepolia)| [Optimism bridge](https://app.optimism.io/bridge)|
3030
| [Palm](https://docs.palm.io/get-started/connect/testnet)| [PALM token](https://docs.palm.io/get-started/tokens)| [Token bridge](https://app.palm.io/bridge)|
3131
| [Polygon Amoy](https://docs.polygon.technology/tools/wallets/metamask/add-polygon-network/)| [Polygon Amoy faucet](https://faucet.polygon.technology)| [Polygon bridge](https://portal.polygon.technology/bridge)|

services/reference/gas-api/quickstart.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ Create a `.env` file at the project root and add the following data:
5151

5252
:::caution warning
5353
Do not commit the `.env` file to your repository if it contains sensitive data.
54-
You can [create a `.gitignore`
55-
file](https://docs.infura.io/tutorials/developer-tools/javascript-dotenv#create-a-.gitignore-file)
54+
You can [create a `.gitignore` file](../../how-to/javascript-dotenv.md#create-a-gitignore-file)
5655
to prevent accidentally committing the file.
5756
:::
5857

@@ -65,7 +64,7 @@ Replace the Infura project credential placeholders with your own.
6564

6665
:::note
6766
The `INFURA_API_KEY_SECRET` is optional and only necessary if you are using an
68-
[API key secret](https://docs.infura.io/dashboard/secure-an-api/api-key-secret) to authenticate requests.
67+
[API key secret](/developer-tools/dashboard/how-to/secure-an-api/api-key-secret) to authenticate requests.
6968
:::
7069

7170
## Create your script

wallet/how-to/manage-networks/add-network.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Prompt a user to add or switch to an Ethereum network.
66

77
In some cases, such as when [interacting with smart contracts](../../concepts/smart-contracts.md),
88
your dapp must connect a user to a new network in MetaMask.
9-
Instead of the user [adding a new network manually](https://support.metamask.io/hc/en-us/articles/360043227612-How-to-add-a-custom-network-RPC#h_01G63GGJ83DGDRCS2ZWXM37CV5),
9+
Instead of the user [adding a new network manually](https://support.metamask.io/configure/networks/how-to-add-a-custom-network-rpc/#adding-a-network-manually),
1010
which requires them to configure RPC URLs and chain IDs, your dapp can use the
1111
[`wallet_addEthereumChain`](/wallet/reference/json-rpc-methods/wallet_addethereumchain) and
1212
[`wallet_switchEthereumChain`](/wallet/reference/json-rpc-methods/wallet_switchethereumchain) RPC methods to prompt

wallet/how-to/run-devnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Follow these steps to connect MetaMask to Hardhat Network.
4040

4141
:::tip
4242
Alternatively, to prevent committing your seed phrase, we recommend adding your seed phrase to a
43-
[`.env` file](https://docs.infura.io/tutorials/developer-tools/javascript-dotenv) and using the
43+
[`.env` file](/services/how-to/javascript-dotenv) and using the
4444
`process.env` global variable in `hardhat.config.js`.
4545
:::
4646

wallet/how-to/use-non-evm-networks/starknet/send-starknet-transactions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can send Starknet transactions using the
1818
## Send a transaction
1919

2020
Send a transaction using the
21-
[`starknet.account.execute()`](https://starknetjs.com/docs/api/classes/accountinterface/#execute)
21+
`starknet.account.execute()`
2222
function (with `get-starknet`) or the
2323
[`starknet_executeTxn`](../../../reference/non-evm-apis/starknet-snap-api.md#starknet_executetxn)
2424
method (with `wallet_invokeSnap`):

wallet/reference/non-evm-apis/starknet-snap-api.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Registers a contract's class on the Starknet blockchain without deploying it.
100100
- `senderAddress`: `string` - Address of the sender.
101101
- `chainId`: `string` - (Optional) ID of the target Starknet network. The default is the Starknet Sepolia testnet.
102102
- `contractPayload`: `object` - Transaction payload to be deployed.
103-
- `contract`: `CompiledContract` | `string` - The compiled contract code ([in Cairo](https://book.cairo-lang.org/ch13-00-introduction-to-starknet-smart-contracts.html)).
103+
- `contract`: `CompiledContract` | `string` - The compiled contract code (in Cairo).
104104
- `classHash?`: `string` - (Optional) The computed class hash of compiled contract.
105105
- `casm?`: `CompiledContract` | `string` - (Optional) - The compiled [casm](https://docs.starknet.io/architecture-and-concepts/smart-contracts/cairo-and-sierra/).
106106
- `compiledClassHash?`: `string` - (Optional) The compiled class hash from casm.
@@ -278,12 +278,11 @@ Gets the estimated gas fee for calling a method on any contract.
278278
#### Parameters
279279

280280
- `address`: `string` - The account address from which the transaction is being made.
281-
- `invocations`: `array` - The [invocations](https://starknetjs.com/docs/API/namespaces/types#invocations)
282-
to estimate the fee for.
281+
- `invocations`: `array` - The invocations to estimate the fee for.
283282
Each invocation represents a contract call.
284283
- `chainId`: `string` - The chain ID of the target Starknet network.
285284
If not provided, the default is the Starknet Sepolia testnet.
286-
- `details`: `object` - (Optional) The [universal details](https://starknetjs.com/docs/API/interfaces/types.EstimateFeeDetails)
285+
- `details`: `object` - (Optional) The universal details
287286
associated with the invocations, such as nonce and version.
288287

289288
#### Returns

0 commit comments

Comments
 (0)