Skip to content

Commit a3e14ae

Browse files
committed
fix(docs): delist gcp marketplace nodes
1 parent e3b5527 commit a3e14ae

File tree

4 files changed

+11
-16
lines changed

4 files changed

+11
-16
lines changed

docs/ftso/0-overview.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import useBaseUrl from "@docusaurus/useBaseUrl";
2020
import YouTubeEmbed from "@site/src/components/YouTubeEmbed";
2121

2222
The **F**lare **T**ime **S**eries **O**racle **(FTSO)** is an [enshrined oracle](/support/terminology#enshrined-oracle) that provides decentralized data feeds to the Flare network.
23-
Since the release of FTSOv1 two years ago, users and applications on Flare have enjoyed consistent and reliable pricing, with zero downtime or failures.
23+
Since the release of FTSOv1, users and applications on Flare have enjoyed consistent and reliable pricing.
2424
FTSOv2 builds on the robust foundation laid by its predecessor, offering several enhancements:
2525

2626
- **Secure.** Enshrined into Flare's core protocol, every oracle feed in FTSOv2 inherits the economic security of the entire network.
@@ -31,7 +31,7 @@ FTSOv2 builds on the robust foundation laid by its predecessor, offering several
3131

3232
- **Decentralized.** Each FTSOv2 feed is supported by around 100 independent data providers, who are selected by Flare users through their delegated stake, imposing a strict economic cost for misbehavior.
3333

34-
- **Cost-effective.** Block-latency feeds in FTSOv2 are completely free to query. Feeds from Scaling are also free to query and verify locally, with minimal gas costs for onchain verification.
34+
- **Cost-effective.** Block-latency feeds in FTSOv2 are free to use onchain. Feeds from Scaling are also free to query and verify locally, with minimal gas costs for onchain verification.
3535

3636
## Architecture
3737

@@ -74,7 +74,7 @@ For a detailed explanation of the FTSOv2 mechanism, read the [FTSOv2 whitepaper]
7474

7575
Every block on Flare, generated approximately every 1.8 seconds, initiates the selection of a sample of data providers to deliver the next feed update.
7676
This selection process leverages a stake-weighted verifiable randomness function (VRF), where the likelihood of each data provider being chosen is proportional to their stake.
77-
The expected sample size is one, and data providers have no control over, nor knowledge of, when they will be selected.
77+
The expected sample size (average) is `1.5`, and data providers have no control over, nor knowledge of, when they will be selected.
7878

7979
In detail, each block has a unique seed value, used by FTSOv2 data providers to generate a personal random score.
8080
This score, coupled with a cryptographic proof, ensures its authenticity and verifiability.
@@ -142,7 +142,7 @@ Importantly, only the expected sample size increases, not the actual sample size
142142
FTSOv2's block-latency feeds are designed to be statistically self-correcting.
143143
To further ensure their long-term accuracy, FTSOv2 uses the anchor feeds from [Scaling](/ftso/scaling/overview).
144144
Anchor feeds utilize a full commit-reveal process across all data providers with an inter-quartile range (IQR) band calculation, and update once every voting epoch (i.e. 90 seconds).
145-
Data providers are rewarded when the block-latency feeds remains within `±0.25%` of the anchor feeds every voting epoch.
145+
Data providers are rewarded when the block-latency feeds remain within `±0.25%` of the anchor feeds every voting epoch.
146146

147147
## Watch the video
148148

docs/network/0-overview.mdx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import BlockNumCoston2Go from "!!raw-loader!/examples/developer-hub-go/coston2/b
2727
import BlockNumSongbirdGo from "!!raw-loader!/examples/developer-hub-go/songbird/block_number.go";
2828
import YouTubeEmbed from "@site/src/components/YouTubeEmbed";
2929

30-
Flare provides four EVM-compatible, permissionless networks designed for different stages of application and protocol development
30+
Flare provides four EVM-compatible, permissionless networks designed for different stages of application and protocol development:
3131

3232
- **Flare Mainnet:** The production network, transactions cost FLR here.
3333
- **Flare Testnet Coston2:** Testnet for dApp development.
@@ -38,7 +38,7 @@ Choose your development track depending on your goals:
3838

3939
1. **Application Development** (Recommended for dApp developers):
4040
- Flare Testnet Coston2 → Flare Mainnet
41-
2. **Protocol Development** (Required for all protocol level changes):
41+
2. **Protocol Development** (Required for all protocol-level changes):
4242
- Songbird Testnet Coston → Songbird Canary-Network → Flare Testnet Coston2 → Flare Mainnet
4343

4444
## Configuration
@@ -339,9 +339,8 @@ Discover suitable options for your needs on the [Flare Wallets](https://flare.ne
339339

340340
- **Transaction fees:**
341341
- **Type0** (Legacy) - Fee is calculated as `gasUsed * gasPrice`.
342-
343342
- **Type2** (EIP-1559) - Fee is calculated as `(baseFee + priorityFee) * gas`.
344-
- In both cases, the transaction fee is burned.
343+
- In both cases, all transaction fees are burned.
345344

346345
## Smart contracts
347346

@@ -368,15 +367,15 @@ Discover suitable options for your needs on the [Flare Wallets](https://flare.ne
368367
- **Participants (Validators):**
369368
- Nodes must meet a [minimum self-bond requirement](https://proposals.flare.network/FIP/FIP_5.html) (defined by governance) to become validators.
370369
- Validators participate in consensus voting and are randomly selected as leaders to propose new blocks, weighted by their total stake (self-bond + delegated stake).
371-
- The network currently has [over 100 validators](https://flare-systems-explorer.flare.network/validators) (median stake ≈0.6%, max stake ≈2%).
370+
- Validator count and stake distribution are viewable live on the [Flare Systems Explorer](https://flare-systems-explorer.flare.network/validators).
372371

373372
- **Enshrined protocols:** In addition to consensus, Flare validators are also data providers for [FTSO](/ftso/overview) and [FDC](/fdc/overview).
374373

375374
## Block verification
376375

377-
- **Block Header Verification:** [Example Go implementation](https://github.com/flare-foundation/go-flare/blob/main/coreth/consensus/dummy/consensus.go#L187).
376+
- **Block Header Verification:** [Example Go implementation](https://github.com/flare-foundation/go-flare/blob/main/coreth/consensus/dummy/consensus.go).
378377

379-
- **Block Body Validation:** [Example Go implementation](https://github.com/flare-foundation/go-flare/blob/main/coreth/core/block_validator.go#L62).
378+
- **Block Body Validation:** [Example Go implementation](https://github.com/flare-foundation/go-flare/blob/main/coreth/core/block_validator.go).
380379

381380
- **Verify transaction in block:** Verified using Merkle Patricia Trie proofs against the receipts root included in the block header.
382381

docs/run-node/1-system-requirements.mdx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,3 @@ If behind a firewall or NAT, configure port forwarding for these default TCP por
144144
- **Port `9651` (P2P/Staking):** Required by **all nodes** for P2P peer discovery/communication. Additionally used by validators for P-Chain consensus communication. Must be publicly reachable.
145145

146146
A static public IP address is highly recommended for validators to ensure consistent uptime and reliability, potentially impacting rewards.
147-
148-
## On a Cloud Provider
149-
150-
Pre-configured Flare nodes are available on [Google Cloud Platform Marketplace](/run-node/gcp-marketplace-nodes).
151-
These nodes do not require installing dependencies or managing configuration files, they also come with a local database copy which can reduces bootstrap times.

docs/run-node/6-GCP-marketplace-nodes.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ slug: gcp-marketplace-nodes
44
tags: [quickstart, infrastructure]
55
title: GCP Marketplace Nodes
66
description: Pre-configured blockchain nodes in GCP marketplace
7+
unlisted: true
78
---
89

910
import Step1 from "/static/img/docs/run-node/gcp-node-step1.png";

0 commit comments

Comments
 (0)