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
3 changes: 2 additions & 1 deletion docs/fassets/8-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ import SolidityReference from "@site/src/components/DataTables/SolidityReference
| **Contract** | **Address** | **Description** |
| -------------------: | ------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `AgentOwnerRegistry` | [`0xa7f5d3C81f55f2b072FB62a0D4A03317BFd1a3c0`](https://songbird-explorer.flare.network/address/0xa7f5d3C81f55f2b072FB62a0D4A03317BFd1a3c0) | Manages agent whitelisting and allows setting and retrieving details such as work and management addresses, name, description, and icon. |
| `FXRP` | [`0xF9a84f4ec903F4EaB117A9c1098BeC078BA7027d`](https://songbird-explorer.flare.network/address/0xF9a84f4ec903F4EaB117A9c1098BeC078BA7027d) | The FAsset-wrapped TestXRP token, ready for use on Songbird. |
| `FXRP` | [`0xF9a84f4ec903F4EaB117A9c1098BeC078BA7027d`](https://songbird-explorer.flare.network/address/0xF9a84f4ec903F4EaB117A9c1098BeC078BA7027d) | The FAsset-wrapped XRP token, ready for use on Songbird. |
| `FDOGE` | [`0xaa25ee3B68c515e69A463876Ab262bc4e8339030`](https://songbird-explorer.flare.network/address/0xaa25ee3B68c515e69A463876Ab262bc4e8339030) | The FAsset-wrapped DOGE token, ready for use on Songbird. |
| `USDX` | [`0x4A771Cc1a39FDd8AA08B8EA51F7Fd412e73B3d2B`](https://songbird-explorer.flare.network/address/0x4A771Cc1a39FDd8AA08B8EA51F7Fd412e73B3d2B) | ERC-20 token used by FAssets. |

</TabItem>
Expand Down
2 changes: 0 additions & 2 deletions docs/fassets/guides/1-deploy-fassets-agent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,6 @@ docker compose --profile cli run user-bot info --fasset FASSET

### Update the FAssets Agent

To restart and update the FAssets agent, run the following commands:

<RestartDocker />

## Access the Agent Frontend
Expand Down
10 changes: 7 additions & 3 deletions docs/fassets/guides/8-infrastructure.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This guide explains how to configure it to utilize your own infrastructure for e

- Substitute the Data Availability Layer URL with the URL for your Data Access Layer.
- Update the Songbird RPC URL with your RPC endpoint.
- Replace your verifier URL with your verifier endpoint.
- Replace your verifier URL with your verifier endpoint both for FXRP and FDOGE.

```json
{
Expand All @@ -45,6 +45,12 @@ This guide explains how to configure it to utilize your own infrastructure for e
"Verifier URL",
"https://fdc-verifiers-mainnet.flare.network/verifier/xrp"
]
},
"FDOGE": {
"indexerUrls": [
"Verifier URL",
"https://fdc-verifiers-mainnet.flare.network/verifier/doge"
]
}
}
}
Expand Down Expand Up @@ -73,6 +79,4 @@ This guide explains how to configure it to utilize your own infrastructure for e

3. Restart Docker Containers

After updating the configuration files, make sure to restart the Docker containers to apply the changes.

<RestartDocker />
4 changes: 3 additions & 1 deletion docs/fassets/guides/_restart_docker.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
To restart and update the FAssets agent, execute the following commands, replacing `FASSET` with the name of the FAsset (FXRP, FDOGE, or FBTC):

```bash
docker compose down
git pull
docker compose pull
docker compose --profile cli run agent-bot listAgents --fasset FXRP
docker compose --profile cli run agent-bot listAgents --fasset FASSET
docker compose up -d
```
Loading