Skip to content

Commit 12ae53f

Browse files
authored
Fix links (#64)
* link fixes * more link fixes * bash * merge issues
1 parent 305bbc5 commit 12ae53f

File tree

9 files changed

+433
-677
lines changed

9 files changed

+433
-677
lines changed

pages/dev-node/quickstart.mdx

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
# Running a Sei RPC node
22
A full Sei node is a fundamental building block of the Sei Blockchain. It consists of a local copy of the blockchain, including its history and state. Running a full node is essential for participating in network operations like validating transactions, joining consensus, and broadcasting events to other network participants.
33

4-
```
4+
## System Configuration
5+
- CPU Cores RAM Disk
6+
- 16 cores 64GB 1TB NVMe
7+
8+
## Quick start
9+
There is a setup script that runs a lot of the basic setup to easily get you started running an RPC node. If you are an advanced user, please see Node Configurations.
10+
11+
You can use this startup script:
12+
13+
`python3 scripts/run-node.py`
14+
15+
```sh
16+
python3 scripts/run-node.py
17+
518
..:=++****++=:.
619
.:+*##############*+:.
720
.=*#####+:....:+#######+.
@@ -21,16 +34,4 @@ A full Sei node is a fundamental building block of the Sei Blockchain. It consis
2134
.:+#######*-:..::*#####=.
2235
.-+###############*+:.
2336
..-+********+-..
24-
```
25-
26-
## System Configuration
27-
- CPU Cores RAM Disk
28-
- 16 cores 64GB 1TB NVMe
29-
30-
## Quick start
31-
There is a setup script that runs a lot of the basic setup to easily get you started running an RPC node. If you are an advanced user, please see Node Configurations.
32-
33-
You can use this startup script:
34-
35-
`python3 scripts/run-node.py`
36-
37+
```

pages/dev-smart-contracts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Interoperability is a key feature of the Sei blockchain, allowing EVM and CosmWa
8383

8484
- EVM Precompile Contracts: Precompiles are smart contracts pre-bundled into the chain. Sei has many precompiles to enable EVM dApps and contracts to access native Cosmos functions, such as staking and executing CosmWasm contracts. The official precompiles can be found in [@sei-js/evm](https://github.com/sei-protocol/sei-js/tree/main/packages/evm/src/precompiles)
8585
- **Pointer Contracts**: These contracts act as intermediaries, enabling calls between EVM and CosmWasm contracts. This allows developers to leverage the strengths of both environments and create more versatile dApps.
86-
- [Pointer Contracts Documentation](https://v2.docs.sei.io/interoperability/pointer-contracts)
86+
- [Pointer Contracts Documentation](./dev-tutorials/pointer-contracts.mdx)
8787

8888
## Best Practices
8989

pages/dev-tutorials/building-a-frontend.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Select one of the tabs below to get started!
1111
<Tabs items={["EVM", "CosmWasm"]}>
1212
<Tabs.Tab>
1313
In this section, we'll explore Sei's unique interoperability features by building an EVM compatible DApp that interacts with a CosmWasm smart contract.
14-
We will use [ethers.js](https://docs.ethers.org/v6/) to build a React app that interacts with a CosmWasm smart contract using the Sei [CosmWasm precompile](../precompiles/cosmwasm.mdx).
14+
We will use [ethers.js](https://docs.ethers.org/v6/) to build a React app that interacts with a CosmWasm smart contract using the Sei [CosmWasm precompile](../dev-advanced-concepts/interoperability/precompiles/cosmwasm.mdx).
1515

1616
## Prerequisites
1717
- Complete the tutorial in [cosmwasm-general](./cosmwasm-general.mdx) to deploy a CosmWasm counter contract on our devnet (arctic-1).
@@ -21,7 +21,7 @@ We will use [ethers.js](https://docs.ethers.org/v6/) to build a React app that i
2121
Before starting, ensure you have:
2222

2323
- Node.js & NPM installed
24-
- One of the Sei wallets listed [here](/setting-up-a-wallet)
24+
- One of the Sei wallets listed [here](../dev-ecosystem-providers/wallets.mdx)
2525
- The wallet should be funded with sufficient Sei on our devnet (arctic-1). Refer to the section on [faucets](../dev-ecosystem-providers/faucets.mdx) for instructions on how to get Devnet tokens.
2626

2727
## Creating a React Project

pages/dev-tutorials/evm-cli-tutorial.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
You can query or send transactions to Sei easily via CLI once you have the `seid` command installed (see [Installing Seid](./installing-seid))
33

44
## Queries
5-
If the machine you run these commands from are not running a node of the network, you'll need to append `--node http://url-to-sei-cosmos-rpc` to your command. Refer to the [Tools and Resources](/tools-and-resources) page for a list of RPC endpoints.
5+
If the machine you run these commands from are not running a node of the network, you'll need to append `--node http://url-to-sei-cosmos-rpc` to your command. Refer to the [Tools and Resources](../dev-resources/tools-and-resources.mdx) page for a list of RPC endpoints.
66

77
- `seid q evm sei-addr [some EVM address]`: Gets the associated Sei address of the queried EVM address, if it exists on-chain.
88
- `seid q evm evm-addr [some Sei address]`: Gets the associated EVM address of the queried Sei address, if it exists on-chain.
@@ -14,7 +14,7 @@ For "NATIVE" type, `pointee` would be the native denom name instead.
1414
## Transactions
1515
Sending transactions via CLI requires you to have keys added via `seid keys add`. You can then specify the key you want to use by appending `--from=[key name]` to your command.
1616

17-
If the machine you run these commands from are not a node of the network, you'd need to append `--evm-rpc http://url-to-sei-evm-rpc` to your command. Refer to the [Tools and Resources](/tools-and-resources) page for a list of RPC endpoints.
17+
If the machine you run these commands from are not a node of the network, you'd need to append `--evm-rpc http://url-to-sei-evm-rpc` to your command. Refer to the [Tools and Resources](../dev-resources/tools-and-resources.mdx) page for a list of RPC endpoints.
1818

1919
- `seid tx evm associate-address`: Associates the Sei address and EVM address on-chain for the sending key.
2020
- `seid tx evm send [to EVM address] [amount in wei]`: Sends native tokens to the target EVM address.

pages/dev-tutorials/nft-contract-tutorial.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ Executing this command creates an ERC721 NFT contract and outputs the contract a
304304

305305
<Callout type="info">
306306
Learn more about EVM interoperability and pointer contracts
307-
[here](../interoperability/overview.mdx).
307+
[here](./pointer-contracts.mdx).
308308
</Callout>
309309

310310
</Tabs.Tab>

pages/dev-tutorials/pointer-contracts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This section guides you through the process of deploying a Pointer Contract for
4141

4242
The list of requirements for deploying a pointer is fairly short:
4343

44-
- Sei light client (CLI/daemon) installed on your machine. You can follow the [installation guide](/node-operators) if needed.
44+
- Sei light client (CLI/daemon) installed on your machine. You can follow the [installation guide](./installing-seid.mdx) if needed.
4545
- Address for the relevant contract (the "pointee")
4646

4747
When a pointer is registered for any given contract, the two are mapped and identifiable across both execution environments. This link is immutable and can only be changed by the original address that created it.

pages/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Sei is the first parallelized EVM. This allows Sei to get the best of Solana and
1010
<Card title="User Guide" href="/user-guides/wallet-setup" icon={<Wallet />} />
1111
<Card
1212
title="For Developers"
13-
href="/dev-new-to-crypto"
13+
href="/dev-intro"
1414
icon={<Wrench />}
1515
/>
1616
</Cards>

pages/user-quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ By the end of this guide, you will be ready to dive into the exciting world of a
2525
- A compatible non-custodial wallet, such as [MetaMask](https://metamask.io/), or [Compass](https://compasswallet.io/).
2626
- Sei tokens [from an exchange](/user-guides/getting-tokens), or stablecoins in your personal wallet.
2727

28-
For help with wallet apps, see our [Setting up a Wallet](https://www.docs.sei.io/setting-up-a-wallet) guide.
28+
For help with wallet apps, see our [Setting up a Wallet](./user-guides/wallet-setup.mdx) guide.
2929

3030
## Connecting Your Wallet to the Sei Network
3131

0 commit comments

Comments
 (0)