Skip to content

Commit 4d5b23a

Browse files
committed
tools docs
1 parent da204b0 commit 4d5b23a

File tree

8 files changed

+169
-28
lines changed

8 files changed

+169
-28
lines changed

docs/tools/block-explorers.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1-
# Block Explorers
1+
# Status Network Testnet Explorer
2+
3+
The Status Network block explorer is available at [sepoliascan.status.network](https://sepoliascan.status.network).
4+
5+
### Features
6+
- View transaction details and status
7+
- Track token transfers and balances
8+
- Verify smart contract source code
9+
- Monitor gas prices and network activity
10+
- View and interact with verified smart contracts
11+
- Track token holdings for any address
12+
13+
## Sepolia Explorer (Layer 1)
14+
15+
For tracking transactions on Sepolia (Layer 1), use [Sepolia Etherscan](https://sepolia.etherscan.io).
16+
17+
This is particularly useful for:
18+
- Monitoring bridge transactions from L1 to L2
19+
- Tracking token deposits and withdrawals
20+
- Verifying L1 contract interactions
21+
22+
## Contract Verification
23+
24+
To verify your smart contract on Status Network Explorer:
25+
26+
1. Navigate to [Contract Verification](https://sepoliascan.status.network/contract-verification)
27+
2. Enter your contract address
28+
3. Upload your source code and provide compilation details
29+
4. Submit for verification
30+
31+
Once verified, your contract's source code will be publicly visible and users can interact with it directly through the explorer.
32+
33+
## API Access
34+
35+
The Status Network Explorer provides API endpoints for developers. Documentation for the API will be available soon.

docs/tools/bridge.md

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,46 @@
1-
# Bridge
1+
# Status Network Testnet Bridge
2+
3+
The Status Network Testnet Bridge allows users to transfer tokens between Sepolia (Layer 1) and Status Network testnet (Layer 2). The bridge interface is available at [bridge.status.network](https://bridge.status.network).
4+
5+
## Overview
6+
7+
The bridge serves as a crucial infrastructure component that enables:
8+
- Token transfers from Sepolia to Status Network testnet
9+
- Token withdrawals from Status Network testnet to Sepolia
10+
- Message passing between L1 and L2
11+
12+
## Bridge Contracts
13+
14+
### Layer 1 (Sepolia)
15+
- **Token Bridge**: [`0x01b44C5Ea321f921D93476cf54Aa8460db17a548`](https://sepolia.etherscan.io/address/0x01b44C5Ea321f921D93476cf54Aa8460db17a548)
16+
17+
### Layer 2 (Status Network)
18+
- **Token Bridge**: [`0xbC7f9571152a8e21942b2aEa4831a27f1149af19`](https://sepoliascan.status.network/address/0xbC7f9571152a8e21942b2aEa4831a27f1149af19)
19+
20+
## Features
21+
22+
- **Token Bridging**: Transfer ERC-20 tokens between networks
23+
- **ETH Bridging**: Bridge ETH between Sepolia and Status Network
24+
- **Transaction Tracking**: Monitor the status of your bridge transactions
25+
- **Gas Estimation**: See estimated gas costs before bridging
26+
27+
## Supported Tokens
28+
29+
For the most up-to-date list of supported tokens and their contract addresses, please refer to our [Token List Repository](https://github.com/status-im/status-network-token-list).
30+
31+
## Using the Bridge
32+
33+
For detailed instructions on how to use the bridge, including step-by-step guides and important security considerations, please refer to our [Bridging Guide](../general-info/bridge/bridging-testnet.md).
34+
35+
## Monitoring Bridge Transactions
36+
37+
You can monitor your bridge transactions using:
38+
- [Status Network Explorer](https://sepoliascan.status.network) for L2 transactions
39+
- [Sepolia Etherscan](https://sepolia.etherscan.io) for L1 transactions
40+
41+
## Support
42+
43+
If you encounter any issues while using the bridge:
44+
- Check our [Bridging Guide](../general-info/bridge/bridging-testnet.md) for common solutions
45+
- Join our [Telegram Community](https://t.me/+k04A_OZbhIs1Mzc9) for assistance
46+
- Monitor [Network Status](https://health.status.network) for any ongoing issues

docs/tools/rpc.md

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,53 @@
1-
# RPC
1+
# RPC Endpoints
2+
3+
The Status Network provides public RPC (Remote Procedure Call) endpoints that allow you to interact with the network.
4+
5+
## Public RPC URL
6+
7+
```
8+
https://public.sepolia.rpc.status.network
9+
```
10+
11+
## Using the RPC
12+
13+
### Adding to MetaMask
14+
For instructions on adding Status Network to your wallet using this RPC, see our [Add Network guide](../general-info/add-status-network.md).
15+
16+
### Web3 Library Configuration
17+
18+
```javascript
19+
// Web3.js
20+
const web3 = new Web3('https://public.sepolia.rpc.status.network');
21+
22+
// Ethers.js v5
23+
const provider = new ethers.providers.JsonRpcProvider('https://public.sepolia.rpc.status.network');
24+
```
25+
26+
## Available Methods
27+
28+
The RPC endpoint supports standard Ethereum JSON-RPC methods, including:
29+
30+
- `eth_blockNumber`: Get the latest block number
31+
- `eth_getBalance`: Get account balance
32+
- `eth_sendRawTransaction`: Send signed transactions
33+
- `eth_call`: Execute a call without creating a transaction
34+
- `eth_getLogs`: Get event logs
35+
- `eth_getTransactionByHash`: Get transaction details
36+
- `eth_getBlockByNumber`: Get block information
37+
38+
For a complete list of supported RPC methods and detailed specifications, refer to the [Linea API Reference](https://docs.linea.build/api/reference), as Status Network is based on Linea technology.
39+
40+
## Rate Limits
41+
42+
The public RPC endpoint has rate limiting to ensure fair usage:
43+
- 10 requests per second per IP
44+
- 100,000 requests per day per IP
45+
46+
For higher limits, get in touch with us on Telegram.
47+
48+
## Support
49+
50+
If you experience issues with the RPC endpoint:
51+
- Check [Network Status](https://health.status.network) for any ongoing problems
52+
- Join our [Telegram Community](https://t.me/+k04A_OZbhIs1Mzc9) for support
53+
- Consider implementing a fallback RPC strategy in your application

docs/tools/testnet-faucets.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1-
# Testnet Faucets
1+
# Testnet Faucets
2+
3+
To get started on Status Network testnet, you'll need both Sepolia ETH and Status Network testnet ETH.
4+
5+
## Status Network Testnet Faucet
6+
7+
The Status Network testnet faucet is available at [faucet.status.network](https://faucet.status.network).
8+
9+
### Details
10+
- **Faucet Contract**: [`0x06338B70F1eAbc60d7A82C083e605C07F78bb878`](https://sepoliascan.status.network/address/0x06338B70F1eAbc60d7A82C083e605C07F78bb878)
11+
- **Amount**: 0.1 ETH per request
12+
- **Cooldown**: One request per address per day
13+
14+
### How to Get Testnet ETH
15+
16+
1. Visit [faucet.status.network](https://faucet.status.network)
17+
2. Connect your wallet
18+
3. Click "Request Funds"
19+
4. Confirm the transaction in your wallet
20+
5. Wait for the ETH to appear in your wallet (usually takes a few seconds)
21+
22+
## Sepolia ETH (Required for Bridging)
23+
24+
To bridge assets to Status Network testnet, you'll first need Sepolia ETH. You can get it from:
25+
26+
2. [Alchemy Sepolia Faucet](https://www.alchemy.com/faucets/ethereum-sepolia)
27+
3. [Metamask Sepolia Faucet](https://docs.metamask.io/developer-tools/faucet/)
28+
29+
Once you have Sepolia ETH, you can bridge it to Status Network testnet using the [Status Network Bridge](https://bridge.status.network).
30+
31+
## Support
32+
33+
If you encounter any issues with the faucet:
34+
- Check [Network Status](https://health.status.network) for any ongoing problems
35+
- Join our [Telegram Community](https://t.me/+k04A_OZbhIs1Mzc9) for support

docs/tutorials/deploying-contracts/using-thirdweb.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/tutorials/verifying-contracts/using-foundry.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/tutorials/verifying-contracts/using-hardhat.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

sidebars.ts

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,6 @@ const sidebars: SidebarsConfig = {
129129
id: 'tutorials/deploying-contracts/using-hardhat',
130130
label: '🎩 Using Hardhat',
131131
},
132-
{
133-
type: 'doc',
134-
id: 'tutorials/deploying-contracts/using-thirdweb',
135-
label: '🌐 Using Thirdweb',
136-
},
137132
{
138133
type: 'doc',
139134
id: 'tutorials/deploying-contracts/using-foundry',
@@ -146,22 +141,6 @@ const sidebars: SidebarsConfig = {
146141
},
147142
],
148143
},
149-
{
150-
type: 'category',
151-
label: '🔍 Verifying Your Smart Contract',
152-
items: [
153-
{
154-
type: 'doc',
155-
id: 'tutorials/verifying-contracts/using-hardhat',
156-
label: '🎩 Using Hardhat',
157-
},
158-
{
159-
type: 'doc',
160-
id: 'tutorials/verifying-contracts/using-foundry',
161-
label: '⚒️ Using Foundry',
162-
},
163-
],
164-
},
165144
],
166145
},
167146
{

0 commit comments

Comments
 (0)