Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/fassets/guides/1-deploy-fassets-agent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ sudo chown 1000:1000 log -R

:::info
Given our current insurance mechanisms to protect users, Flare Foundation will not add any more agents to the FAssets protocol on Songbird.
As covered in this [blog](https://flare.network/fxrp-is-live-on-songbird/), Flare Foundation will cover losses up to \$100,000 per asset, for a total coverage of $300,000.
As covered in this [blog](https://flare.network/news/fxrp-is-live-on-songbird-mint-trade-and-get-rewarded), Flare Foundation will cover losses up to \$100,000 per asset, for a total coverage of $300,000.
We appreciate the interest received and look forward to onboarding agents once we have launched FAssets on Flare mainnet.
:::

Expand Down
6 changes: 3 additions & 3 deletions docs/ftso/scaling/2-getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ To fetch the feed values for FLR/USD, BTC/USD, and ETH/USD at the latest voting

The response contains JSON objects for each feed, with the following fields:

- `votingRoundId`: The voting round ID (each round lasts 90 seconds; see the [Flare Systems Explorer](https://flare-systems-explorer.flare.network/voting-epoch)).
- `votingRoundId`: The voting round ID (each round lasts 90 seconds; see the [Flare Systems Explorer](https://flare-systems-explorer.flare.network/voting-round)).
- `id`: The feed ID (refer to the [list of anchor feeds](/ftso/scaling/anchor-feeds)).
- `value`: The integer value of the feed.
- `turnoutBIPS`: The percentage of voting weight (in basis points) that contributed to the finalized value.
Expand Down Expand Up @@ -188,8 +188,8 @@ curl -X 'GET' \

The response indicates that:

- The **currently active voting round** has `voting_round_id` [839641](https://flare-systems-explorer.flare.network/voting-epoch/839641), which **started at** `1733997690`.
- The **most recently finalized FTSO voting round** has `voting_round_id` [839640](https://flare-systems-explorer.flare.network/voting-epoch/839640), which **started at** `1733997600`.
- The **currently active voting round** has `voting_round_id` [839641](https://flare-systems-explorer.flare.network/voting-round/839641), which **started at** `1733997690`.
- The **most recently finalized FTSO voting round** has `voting_round_id` [839640](https://flare-systems-explorer.flare.network/voting-round/839640), which **started at** `1733997600`.

## Verifying proof onchain

Expand Down
2 changes: 1 addition & 1 deletion docs/network/0-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ Discover suitable options for your needs on the [Flare Wallets](https://flare.ne

## Consensus mechanism

- **Consensus Protocol:** Snowman++ (from [Avalanche](https://docs.avax.network)) provides a high-throughput, totally ordered consensus with fast finality. Learn more on the [Consensus](/network/consensus) page.
- **Consensus Protocol:** Snowman++ (from [Avalanche](https://build.avax.network/docs)) provides a high-throughput, totally ordered consensus with fast finality. Learn more on the [Consensus](/network/consensus) page.

- **Sybil resistance mechanism:** Proof-of-Stake (PoS)

Expand Down
2 changes: 1 addition & 1 deletion docs/network/4-consensus.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import CodeBlock from "@theme/CodeBlock";
import ThemedImage from "@theme/ThemedImage";
import useBaseUrl from "@docusaurus/useBaseUrl";

The consensus protocol running on all Flare networks is Snowman++, introduced by [Avalanche](https://docs.avax.network).
The consensus protocol running on all Flare networks is Snowman++, introduced by [Avalanche](https://build.avax.network/docs).
This runs on both the P- and C-chains.

<div style={{ textAlign: "center", margin: "30px 0" }}>
Expand Down
2 changes: 1 addition & 1 deletion docs/network/8-flare-tx-sdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ network.setRpc(

### Custom wallets

If you are not using a standard wallet, you can create your own [`Wallet`](https://github.com/flare-foundation/flare-tx-sdk/blob/HEADsrc/wallet/wallet.ts) object.
If you are not using a standard wallet, you can create your own [`Wallet`](https://github.com/flare-foundation/flare-tx-sdk/blob/HEAD/src/wallet/wallet.ts) object.
Your wallet will need to implement a few required methods:

#### Supporting only C-Chain
Expand Down
9 changes: 9 additions & 0 deletions docs/run-node/5-flare-entity.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -976,3 +976,12 @@ Consistent monitoring is key to maintaining performance and reward eligibility.
To opt-out of receiving all future FlareDrops, you need to call the [`optOutOfAirdrop`](/network/solidity-reference/IDistributionToDelegators#optoutofairdrop) method on the [`DistributionToDelegators`](/network/solidity-reference) contract with your `Identity` address.

</details>

<details>
<summary>F6. How do I get real-time Slack/Discord/Telegram alerts for my Flare Entity?</summary>

Try out the alpha version of the [flare-foundation/fsp-observer](https://github.com/flare-foundation/fsp-observer) to receive instant notifications about critical misbehaviors - like FTSO or FDC reveal offenses, registration failures, and more - that could cost rewards.

We would appreciate feature requests to direct development of the tool, please raise them on the [issues page](https://github.com/flare-foundation/fsp-observer/issues).

</details>