You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 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. |
18
18
| Duration of the Test | Each FAsset will be tested on Songbird for at least 6 weeks until no issues have been found. |
19
19
| 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/)|
20
20
| 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. |
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.
148
148
We appreciate the interest received and look forward to onboarding agents once we have launched FAssets on Flare mainnet.
Copy file name to clipboardExpand all lines: docs/fassets/guides/4-custom-handshake.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,6 @@ The `url` field represents the web service link, while the `api_key` field is se
28
28
29
29
:::info
30
30
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.
Command line reference for managing and interacting with FAssets `IAssetManager`.
8
8
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).
10
10
11
11
## Functions
12
12
13
13
### `getSettings`
14
14
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.
16
16
17
17
You can find detailed explanations of each parameter in the [FAssets Operational Parameters](/fassets/operational-parameters/#asset-manager-operational-parameters) documentation.
18
18
@@ -24,7 +24,7 @@ function getSettings()
24
24
25
25
### `getAgentInfo`
26
26
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.
28
28
29
29
Need to provide the agent vault address.
30
30
@@ -189,7 +189,7 @@ function redeem(
189
189
190
190
### `redemptionQueue`
191
191
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.
193
193
194
194
Parameters:
195
195
@@ -211,7 +211,7 @@ function redemptionQueue(
211
211
212
212
### `agentRedemptionQueue`
213
213
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.
`IAssetManagerEvents` is an interface that defines the events emitted by the [`IAssetManager`](/fassets/reference/IAssetManager) contract.
8
8
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).
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.
8
8
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).
0 commit comments