Skip to content

Commit 85640f1

Browse files
authored
fix(docs): update references from Flare Labs to Flare Foundation in FAssets documentation (#694)
1 parent be20101 commit 85640f1

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

docs/fassets/8-songbird.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ The test on Songbird Canary-Network will have the following characteristics:
1313
| Parameters | Description |
1414
| ----------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1515
| FAsset Sequence | XRP will be tested first, followed by either BTC or DOGE. |
16-
| Agent Whitelisting | FAssets agents must be whitelisted by Flare Labs to perform their roles. |
17-
| Caps and Losses | Flare Labs will underwrite up to \$300,000 in FAsset issuance to cover any losses resulting from system issues, while imposing a cap of $2 million in issuance per asset. |
16+
| Agent Whitelisting | FAssets agents must be whitelisted by Flare Foundation to perform their roles. |
17+
| Caps and Losses | Flare Foundation will underwrite up to \$300,000 in FAsset issuance to cover any losses resulting from system issues, while imposing a cap of $2 million in issuance per asset. |
1818
| Duration of the Test | Each FAsset will be tested on Songbird for at least 6 weeks until no issues have been found. |
1919
| FAssets Minting dApps | FAssets system users can access the frontend web interface for minting and redeeming: <br/> - [`https://fasset.oracle-daemon.com/sgb`](https://fasset.oracle-daemon.com/sgb) <br /> - [`https://fassets.au.cc/`](https://fassets.au.cc/) |
2020
| System Integrity and FAsset Pricing | During the Songbird test, restrictions and incentives may cause the FAsset price to deviate from the underlying currency's value. The current focus is on testing system integrity, not price alignment. |

docs/fassets/guides/1-deploy-fassets-agent.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Follow these steps to set up the FAssets agent using Docker:
5858
1. Clone the repository in your Linux server:
5959

6060
```bash
61-
git clone https://github.com/flare-labs-ltd/fasset-bots-deploy
61+
git clone https://github.com/flare-foundation/fasset-bots-deploy
6262
cd fasset-bots-deploy
6363
```
6464

@@ -143,8 +143,8 @@ sudo chown 1000:1000 log -R
143143
## Whitelist the Management Address
144144

145145
:::info
146-
Given our current insurance mechanisms to protect users, Flare Labs will not add any more agents to the FAssets protocol on Songbird.
147-
As covered in this [blog](https://flare.network/fxrp-is-live-on-songbird/), Flare Labs will cover losses up to \$100,000 per asset, for a total coverage of $300,000.
146+
Given our current insurance mechanisms to protect users, Flare Foundation will not add any more agents to the FAssets protocol on Songbird.
147+
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.
148148
We appreciate the interest received and look forward to onboarding agents once we have launched FAssets on Flare mainnet.
149149
:::
150150

docs/fassets/guides/4-custom-handshake.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ The `url` field represents the web service link, while the `api_key` field is se
2828

2929
:::info
3030

31-
You can check [`HandshakeAddressVerifier.ts`](https://github.com/flare-labs-ltd/fasset-bots/blob/main/packages/fasset-bots-core/src/actors/plugins/HandshakeAddressVerifier.ts) for implementation details related to the `ChainalysisClient` class in the [fasset-bots](https://github.com/flare-labs-ltd/fasset-bots) repo.
31+
You can check [`HandshakeAddressVerifier.ts`](https://github.com/flare-foundation/fasset-bots/blob/main/packages/fasset-bots-core/src/actors/plugins/HandshakeAddressVerifier.ts) for implementation details related to the `ChainalysisClient` class in the [fasset-bots](https://github.com/flare-foundation/fasset-bots) repo.
3232

3333
:::

docs/fassets/reference/IAssetManager.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ keywords: [fassets, xrp, bitcoin, dogecoin, flare-network]
66

77
Command line reference for managing and interacting with FAssets `IAssetManager`.
88

9-
Sourced from `IAssetManager.sol` on [GitHub](https://github.com/flare-labs-ltd/fassets/blob/main/contracts/userInterfaces/IAssetManager.sol).
9+
Sourced from `IAssetManager.sol` on [GitHub](https://github.com/flare-foundation/fassets/blob/main/contracts/userInterfaces/IAssetManager.sol).
1010

1111
## Functions
1212

1313
### `getSettings`
1414

15-
Returns the complete asset manager settings as the [`AssetManagerSettings`](https://github.com/flare-labs-ltd/fassets/blob/main/contracts/userInterfaces/data/AssetManagerSettings.sol) struct.
15+
Returns the complete asset manager settings as the [`AssetManagerSettings`](https://github.com/flare-foundation/fassets/blob/main/contracts/userInterfaces/data/AssetManagerSettings.sol) struct.
1616

1717
You can find detailed explanations of each parameter in the [FAssets Operational Parameters](/fassets/operational-parameters/#asset-manager-operational-parameters) documentation.
1818

@@ -24,7 +24,7 @@ function getSettings()
2424

2525
### `getAgentInfo`
2626

27-
Returns detailed information about an agent as the [`AgentInfo`](https://github.com/flare-labs-ltd/fassets/blob/main/contracts/userInterfaces/data/AgentInfo.sol) struct.
27+
Returns detailed information about an agent as the [`AgentInfo`](https://github.com/flare-foundation/fassets/blob/main/contracts/userInterfaces/data/AgentInfo.sol) struct.
2828

2929
Need to provide the agent vault address.
3030

@@ -189,7 +189,7 @@ function redeem(
189189

190190
### `redemptionQueue`
191191

192-
Returns the redemption queue in the form of an array of [`RedemptionTicketInfo`](https://github.com/flare-labs-ltd/fassets/blob/main/contracts/userInterfaces/data/RedemptionTicketInfo.sol) structs.
192+
Returns the redemption queue in the form of an array of [`RedemptionTicketInfo`](https://github.com/flare-foundation/fassets/blob/main/contracts/userInterfaces/data/RedemptionTicketInfo.sol) structs.
193193

194194
Parameters:
195195

@@ -211,7 +211,7 @@ function redemptionQueue(
211211

212212
### `agentRedemptionQueue`
213213

214-
Returns the redemption queue for specific agent in the form of an array of [`RedemptionTicketInfo`](https://github.com/flare-labs-ltd/fassets/blob/main/contracts/userInterfaces/data/RedemptionTicketInfo.sol) structs.
214+
Returns the redemption queue for specific agent in the form of an array of [`RedemptionTicketInfo`](https://github.com/flare-foundation/fassets/blob/main/contracts/userInterfaces/data/RedemptionTicketInfo.sol) structs.
215215

216216
Parameters:
217217

docs/fassets/reference/IAssetManagerEvents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords: [fassets, xrp, bitcoin, dogecoin, flare-network]
66

77
`IAssetManagerEvents` is an interface that defines the events emitted by the [`IAssetManager`](/fassets/reference/IAssetManager) contract.
88

9-
Sourced from `IAssetManagerEvents.sol` on [GitHub](https://github.com/flare-labs-ltd/fassets/blob/main/contracts/userInterfaces/IAssetManagerEvents.sol).
9+
Sourced from `IAssetManagerEvents.sol` on [GitHub](https://github.com/flare-foundation/fassets/blob/main/contracts/userInterfaces/IAssetManagerEvents.sol).
1010

1111
// ... existing code ...
1212

docs/fassets/reference/agent-bot.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords: [fassets, xrp, bitcoin, dogecoin, flare-network]
66

77
Command line reference for managing and interacting with FAssets agent bots.
88

9-
Sourced from `agent-bot.ts` on [GitHub](https://github.com/flare-labs-ltd/fasset-bots/blob/main/packages/fasset-bots-cli/src/cli/agent-bot.ts).
9+
Sourced from `agent-bot.ts` on [GitHub](https://github.com/flare-foundation/fasset-bots/blob/main/packages/fasset-bots-cli/src/cli/agent-bot.ts).
1010

1111
## Setup
1212

docs/fassets/reference/user-bot.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords: [fassets, xrp, bitcoin, dogecoin, flare-network]
66

77
Command line reference for managing and interacting with FAssets user bot. It allows users to mint and redeem FAssets, manage collateral pools, and query system information.
88

9-
Sourced from `user-bot.ts` on [GitHub](https://github.com/flare-labs-ltd/fasset-bots/blob/main/packages/fasset-bots-cli/src/cli/user-bot.ts).
9+
Sourced from `user-bot.ts` on [GitHub](https://github.com/flare-foundation/fasset-bots/blob/main/packages/fasset-bots-cli/src/cli/user-bot.ts).
1010

1111
## Setup
1212

0 commit comments

Comments
 (0)