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

Fixing broken links #251

Merged
merged 3 commits into from
Mar 18, 2025
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
2 changes: 1 addition & 1 deletion content/evm/precompiles/example-usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const signer = await provider.getSigner();
const contract = new ethers.Contract(WASM_PRECOMPILE_ADDRESS, WASM_PRECOMPILE_ABI, signer);
```

<Callout type="info">If using MetaMask, the wallet must be switched to the Sei EVM Devnet chain. Information to import the Sei EVM Devnet chain can be found [here](/learn/wallet).</Callout>
<Callout type="info">If using MetaMask, the wallet must be switched to the Sei EVM Devnet chain. Information to import the Sei EVM Devnet chain can be found [here](/learn/wallets).</Callout>

#### Querying & Executing a CosmWasm Contract

Expand Down
3 changes: 1 addition & 2 deletions content/evm/reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,7 @@ are returned, it's recommended to split and re-run the query in smaller chunks
to ensure all logs are captured. There are no warnings when these limits are
exceeded.

To address these issues, consider using the wrapper function described in
[our Developer Hub](https://seideveloperhub.com/eth-get-logs-wrapper).
To address these issues, consider using the wrapper function in [sei-logs-wrapper](https://www.npmjs.com/package/sei-logs-wrapper).

### eth_uninstallFilter

Expand Down
4 changes: 2 additions & 2 deletions content/evm/tokens.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
To view ERC20 tokens in MetaMask, the process mirrors that on other EVM chains.
For tokens not automatically listed, you'll need to manually import them into
your wallet. Detailed instructions can be found
[here](https://support.metamask.io/hc/en-us/articles/360015489031-How-to-display-tokens-in-MetaMask#h_01FWH492CHY60HWPC28RW0872H).
[here](https://support.metamask.io/manage-crypto/tokens/how-to-display-tokens-in-metamask/).

#### ERC721 NFTs

Viewing NFTs in MetaMask requires manual addition. Follow the steps provided
[here](https://support.metamask.io/hc/en-us/articles/360058238591-NFT-tokens-in-your-MetaMask-wallet)
[here](https://support.metamask.io/manage-crypto/nfts/nft-tokens-in-your-metamask-wallet/)
to add and view your NFTs in the wallet.

#### TokenFactory & CW20 Tokens
Expand Down
2 changes: 1 addition & 1 deletion content/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import Image from 'next/image';
## Cosmos

- **Chain ID**: pacific-1
- **RPC URL**: [https://wallet.rpc.pacific-1.seinetwork.io](https://wallet.rpc.pacific-1.seinetwork.io)
- **RPC URL**: [https://rpc.sei-apis.com](https://rpc.sei-apis.com)
- **Explorer**: [SeiTrace](https://seitrace.com/?chain=pacific-1), [SeiScan](https://www.seiscan.app/?chain=pacific-1)
- **Testnet & Devnet**: [Chain Information](/cosmwasm/networks)

Expand Down
2 changes: 1 addition & 1 deletion content/learn/explorers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ with the network including:
<Tabs items={[`devnet (${CHAIN_IDS.devnet})`, `testnet (${CHAIN_IDS.testnet})`, `mainnet (${CHAIN_IDS.mainnet})`]}>
<Tabs.Tab>
- [Seistream](https://devnet.seistream.app/)
- [Seitrace](`https://seitrace.com/?chain=arctic-1`)
- [Seitrace](https://seitrace.com/?chain=arctic-1)

</Tabs.Tab>
<Tabs.Tab>
Expand Down
6 changes: 3 additions & 3 deletions content/learn/pointers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ a reference point for verifying the authenticity of the paired contract itself.
View each pointer contract's documentation for more details on how to deploy by choosing a pointer type you want to use.

<Cards>
<Cards.Card icon={<IconCoin />} title="Standard" href="/cosmwasm/pointers/standard" />
<Cards.Card icon={<IconCode />} title="IBC" href="/cosmwasm/pointers/ibc" />
<Cards.Card icon={<IconCoin />} title="Token Factory" href="/cosmwasm/pointers/tokenfactory" />
<Cards.Card icon={<IconCoin />} title="Standard" href="/evm/pointers/standard" />
<Cards.Card icon={<IconCode />} title="IBC" href="/evm/pointers/ibc" />
<Cards.Card icon={<IconCoin />} title="Token Factory" href="/evm/pointers/tokenfactory" />
</Cards>
4 changes: 2 additions & 2 deletions content/learn/user-FAQ.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ same account.

### How can I link my EVM / 0x and Sei addresses?

You can use the Sei App to link your addresses. More information and a step by
You can use the [Sei App]() to link your addresses. More information and a step by
step guide is available in the
[Linking Addresses](/user-guides/linking-addresses) user guide.
[Linking Addresses](./accounts) user guide.
2 changes: 1 addition & 1 deletion content/node/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ make install
```

To determine the correct version for any given network (mainnet/testnet/devnet)
please refer to [this table](./reference)
please refer to [this table](#current-binary-versions--genesis-files)

---

Expand Down
4 changes: 2 additions & 2 deletions content/node/validators.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A validator in the Sei network serves several critical functions. As a validator

- Participating in consensus by proposing and validating blocks
- Maintaining high uptime and performance to avoid slashing
- Running a price feeder to provide oracle data (refer to the [Oracle Price Feeder Guide](node/oracle-pricefeeder) for complete setup instructions)
- Running a price feeder to provide oracle data (refer to the [Oracle Price Feeder Guide](./oracle-pricefeeder) for complete setup instructions)
- Managing delegator relationships and maintaining transparent operations
- Participating in governance and network upgrades

Expand Down Expand Up @@ -87,7 +87,7 @@ The commission parameters require strategic consideration:

## Monitoring and Alerting

**Please refer to the [Advanced Operations](node/advanced-config-monitoring) section for details around monitoring + alerting for your validator, price feeder and other nodes.**
**Please refer to the [Advanced Operations](./advanced-config-monitoring) section for details around monitoring + alerting for your validator, price feeder and other nodes.**

## Security Practices

Expand Down
6 changes: 3 additions & 3 deletions src/components/ChainInformation/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const networks: NetworkEntry[] = [
type: 'Cosmos',
name: 'Mainnet',
chainId: 'pacific-1',
rpcUrl: 'https://wallet.rpc.pacific-1.seinetwork.io',
rpcUrl: 'https://rpc.sei-apis.com',
explorerLinks: [
{ name: 'SeiTrace', url: 'https://seitrace.com/?chain=pacific-1' },
{ name: 'SeiScan', url: 'https://www.seiscan.app/?chain=pacific-1' }
Expand All @@ -45,7 +45,7 @@ export const networks: NetworkEntry[] = [
type: 'Cosmos',
name: 'Testnet',
chainId: 'atlantic-2',
rpcUrl: 'https://wallet.rpc.atlantic-2.seinetwork.io',
rpcUrl: 'https://rpc-testnet.sei-apis.com',
explorerLinks: [
{ name: 'SeiTrace', url: 'https://seitrace.com/?chain=atlantic-2' },
{ name: 'SeiScan', url: 'https://www.seiscan.app/?chain=atlantic-2' }
Expand All @@ -55,7 +55,7 @@ export const networks: NetworkEntry[] = [
type: 'Cosmos',
name: 'Devnet',
chainId: 'arctic-1',
rpcUrl: 'https://wallet.rpc.arctic-1.seinetwork.io',
rpcUrl: 'https://rpc-arctic-1.sei-apis.com',
explorerLinks: [{ name: 'SeiTrace', url: 'https://seitrace.com/?chain=arctic-1' }]
}
];