Skip to content

Commit

Permalink
feat: add stake distribution and block verification (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
dineshpinto authored Jul 23, 2024
2 parents 28da7b0 + d676a39 commit de6ff3e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/network/0-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@ Several desktop, browser and mobile app based wallets support Flare. Discover su

- **Supported opcodes:** All [opcodes](https://www.evm.codes/?fork=london) up to the London hard fork are supported.

## Block verification

- **Header:** [Verifying block header in Go](https://github.com/flare-foundation/go-flare/blob/main/coreth/consensus/dummy/consensus.go#L187).

- **Body:** [Validating block body in Go](https://github.com/flare-foundation/go-flare/blob/main/coreth/core/block_validator.go#L62).

- **Verify transaction in block:** Merkle Patricia Trie verification against the receipt root.

## Consensus

- **Sybil resistance mechanism:** Proof-of-Stake (PoS)
Expand All @@ -143,6 +151,8 @@ Several desktop, browser and mobile app based wallets support Flare. Discover su

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

- **Stake distribution:** Network comprises [over 90 validators](https://flarescan.com/validators) with a median stake of ≈0.7% and a maximum stake of ≈3.3%. This includes both self-bonded and delegated stakes.

:::note Adding Flare's native token FLR to your exchange

Flare is just like Ethereum. To add it to your exchange:
Expand Down

0 comments on commit de6ff3e

Please sign in to comment.