Skip to content

Commit e139c36

Browse files
authored
fix(docs): minor typos (#704)
2 parents 93d6b7e + bc2461b commit e139c36

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

automations/solidity_reference.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,10 @@
513513
{
514514
"name": "PollingManagementGroup",
515515
"address": "0x142a8DbC8410deFd989dA27177986ac66aE9fCA8"
516+
},
517+
{
518+
"name": "FtsoV2PriceStore",
519+
"address": "0x8707442a5f40a17cee2Ae0555620a3ab6fEf60A4"
516520
}
517521
],
518522
"SongbirdCanaryNetwork": [
@@ -893,6 +897,14 @@
893897
{
894898
"name": "PollingManagementGroup",
895899
"address": "0x4CBEE91ed327e41d1AfcDF7AA99d2696c8D56849"
900+
},
901+
{
902+
"name": "AssetManagerController",
903+
"address": "0x572DeF121DC83332887E25e34aD51C2f5f40BC97"
904+
},
905+
{
906+
"name": "FtsoV2PriceStore",
907+
"address": "0x14150aEeced5c1b318b0a78b0bBd8ca73ac891e4"
896908
}
897909
]
898910
}

docs/network/guides/flare-contracts-registry.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const contracts = ["FlareContractRegistry"];
2323

2424
Flare provides a registry of enshrined protocol contracts such as `FtsoV2`, `FdcHub`, and `RandomNumberV2`.
2525
To ensure reliability, these contract addresses should **always be retrieved dynamically** via the **Flare Contract Registry** rather than hardcoding them.
26-
Using the registry ensures your contracts, and dApps are resistant to future upgrades and cannot be misled by off-chain or unverified sources.
26+
Using the registry ensures your contracts, and dApps are resistant to future upgrades and cannot be misled by offchain or unverified sources.
2727

2828
## Flare Contract Registry Address
2929

docs/network/guides/gasless-usdt0-transfers.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import USD0 from "!!raw-loader!/examples/developer-hub-javascript/USD0.json";
1515
Flare's USD₮0 integration enables native, gasless USDT transfers (also known as meta-transactions) on the Flare network, allowing your end-users to avoid paying gas fees directly.
1616
In this guide, you will build a system for gasless USD₮0 transfers:
1717

18-
1. A **frontend application** where users authorize token transfers by signing a message, without needing to submit an on-chain transaction themselves.
18+
1. A **frontend application** where users authorize token transfers by signing a message, without needing to submit an onchain transaction themselves.
1919
2. A **backend relayer service** that takes this signed authorization and submits the actual transaction to the Flare network, covering the gas fees on the user's behalf.
2020

2121
This powerful pattern significantly enhances user experience by abstracting away the complexities and costs of network gas fees.
@@ -40,8 +40,8 @@ This ensures transparent offchain signing.
4040
### EIP-3009: Transfer with Authorization
4141

4242
[EIP-3009](https://eips.ethereum.org/EIPS/eip-3009) extends the ERC-20 token standard to include support for meta-transactions.
43-
It allows a token holder to sign an authorization message offchain, which can then be relayed by another account (the relayer) to execute the transfer on-chain.
44-
The relayer pays the gas fees for this on-chain execution.
43+
It allows a token holder to sign an authorization message offchain, which can then be relayed by another account (the relayer) to execute the transfer onchain.
44+
The relayer pays the gas fees for this onchain execution.
4545

4646
EIP-3009 introduces two key functions, including:
4747

docs/support/whitepapers.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ Explore Flare's whitepapers, research, and analytics to gain deeper insights int
3131
<CustomCard
3232
title="The Flare Data Connector"
3333
href="/pdf/whitepapers/20240224-FlareDataConnector.pdf"
34-
description="A protocol using network consensus to securely and reliably import offchain event data onto Flare, publishing confirmed attestations on-chain every 90 seconds."
34+
description="The Flare Data Connector (FDC) enables users to register external events on Flare by submitting attestation requests, which are then validated by Flare's data providers and published on-chain every 90 seconds for use by dApps."
3535
date="Jan 14, 2025"
3636
/>
3737
<CustomCard
3838
title="FTSOv2: more data feeds and faster updates to the FTSO"
3939
href="/pdf/whitepapers/20240223-FlareTimeSeriesOracleV2.pdf"
40-
description="An upgraded Flare Time Series Oracle delivering faster updates via block-latency feeds alongside 90-second anchor feeds, while efficiently handling over 1,000 feeds."
40+
description="An upgraded Flare Time Series Oracle (FTSO) delivering faster updates via block-latency feeds alongside 90-second anchor feeds, while efficiently handling over 1,000 feeds."
4141
date="Sep 9, 2024"
4242
/>
4343
<CustomCard
4444
title="Consensus learning: A novel decentralised ensemble learning paradigm"
4545
href="/pdf/whitepapers/20240225-ConsensusLearning.pdf"
46-
description="A distributed ML paradigm integrating ensemble methods with P2P consensus for data privacy and Byzantine fault tolerance."
46+
description="A distributed Machine Learning paradigm integrating ensemble methods with P2P consensus for data privacy and Byzantine fault tolerance."
4747
date="Feb 25, 2024"
4848
/>
4949
</div>

examples/developer-hub-javascript/GaslessApp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export default function App() {
8787
throw new Error(errorData.error || "Relayer request failed.");
8888
}
8989
const { txHash } = await response.json();
90-
alert("✅ Sent! On-chain tx hash:\n" + txHash);
90+
alert("✅ Sent! Onchain tx hash:\n" + txHash);
9191
}
9292

9393
return (

0 commit comments

Comments
 (0)