Skip to content

Commit 131115d

Browse files
committed
Add keywords to multiple documentation files for improved SEO and discoverability
1 parent f7c0962 commit 131115d

File tree

4 files changed

+51
-4
lines changed

4 files changed

+51
-4
lines changed

basics/assets/the-fil-token.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
description: >-
33
FIL is the cryptocurrency that powers the Filecoin network. This page explains
44
what FIL is, how it can be used, and its denominations.
5+
keywords: "FIL token, FIL cryptocurrency, Filecoin token, what is FIL, FIL coin, get FIL"
56
---
67

78
# The FIL token

networks/calibration/README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,49 @@ description: >-
1010
Also see [Calibration RPCs](rpcs.md) and [Calibration Explorers](explorers.md).
1111
{% endhint %}
1212

13+
The calibration network is the most realistic testnet simulation of the Filecoin mainnet.
14+
15+
## Quick Start Commands
16+
17+
### Download Latest Snapshot
18+
```bash
19+
# Fast download with aria2c (recommended)
20+
aria2c -x5 https://forest-archive.chainsafe.dev/latest/calibnet/
21+
22+
# Alternative: wget method
23+
wget https://forest-archive.chainsafe.dev/latest/calibnet/
24+
```
25+
26+
### Connect to Calibration Network
27+
28+
```bash
29+
# Lite node (fastest startup)
30+
FULLNODE_API_INFO=wss://wss.calibration.node.glif.io/apigw/lotus lotus daemon --lite
31+
32+
# Full node with snapshot import
33+
lotus daemon --import-snapshot <snapshot-file>
34+
35+
# Connect to RPC endpoint
36+
curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"Filecoin.ChainHead","params":[],"id":1}' https://api.calibration.node.glif.io/rpc/v1
37+
```
38+
39+
### Get Test FIL
40+
41+
Quick access to faucets:
42+
43+
* **Chainsafe**: https://faucet.calibnet.chainsafe-fil.io
44+
* **Zondax**: https://beryx.zondax.ch/faucet/
45+
* **Forest**: https://forest-explorer.chainsafe.dev/faucet/calibnet
46+
47+
### Essential Network Info
48+
49+
* **Chain ID**: `314159` (for MetaMask/wallets)
50+
* **RPC**: `https://api.calibration.node.glif.io/rpc/v1`
51+
* **WebSocket**: `wss://wss.calibration.node.glif.io/apigw/lotus/rpc/v1`
52+
* **Minimum Power**: `32 GiB`
53+
54+
## About Calibration
55+
1356
Prospective storage providers can experience more realistic sealing performance and hardware requirements using final proofs constructions and parameters. Storage clients can store and retrieve _real data_ on the network. Clients can also participate in deal-making workflows and storage and retrieval functionality. The sector size on the Calibration testnet is the same as on the Filecoin mainnet; 32 GiB and 64 GiB sectors are supported. This testnet also includes the Filecoin EVM-runtime features found on the Filecoin mainnet.
1457

1558
Developers can reference pre-existing deals that are already available on the network. See the [`#fil-net-calibration-discuss` channel in the Filecoin Slack](https://filecoinproject.slack.com/archives/C01D42NNLMS) for support.

smart-contracts/filecoin-evm-runtime/how-gas-works.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ description: >-
33
Instead of assigning a fixed gas cost in each instruction, the Filecoin EVM
44
runtime charges FIL gas based on the WASM code execution of the Filecoin EVM
55
runtime interpreter.
6+
keywords: "filecoin gas, gas calculation, gas estimation, gas fees, how gas works, EVM gas"
7+
68
---
79

810
# How gas works
@@ -35,13 +37,13 @@ Let’s take a transaction as an example. Our gas parameters are:
3537
The total fee is `(GasUsage × BaseFee) + (Gaslimit x GasPremium)`:
3638

3739
```plaintext
38-
1000
40+
1000
3941
x 20
4042
= 20000
4143
42-
2000
43-
x 5
44-
= 10000
44+
2000
45+
x 5
46+
= 10000
4547
4648
20000
4749
+ 10000

storage-providers/basics/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ description: >-
33
This page will help you understand how to plan a profitable business, design a
44
suitable storage provider architecture, and make the right hardware
55
investments.
6+
keywords: "earn FIL, Filecoin rewards, storage provider rewards, stake FIL, staking FIL, Filecoin staking, become storage provider, FIL staking alternative"
67
---
78

89
# Basics

0 commit comments

Comments
 (0)