diff --git a/docs/fassets/8-reference.mdx b/docs/fassets/8-reference.mdx
index 2b5c011b..595380e5 100644
--- a/docs/fassets/8-reference.mdx
+++ b/docs/fassets/8-reference.mdx
@@ -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. |
diff --git a/docs/fassets/guides/1-deploy-fassets-agent.mdx b/docs/fassets/guides/1-deploy-fassets-agent.mdx
index a68721a3..9899edf3 100644
--- a/docs/fassets/guides/1-deploy-fassets-agent.mdx
+++ b/docs/fassets/guides/1-deploy-fassets-agent.mdx
@@ -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:
-
## Access the Agent Frontend
diff --git a/docs/fassets/guides/8-infrastructure.mdx b/docs/fassets/guides/8-infrastructure.mdx
index 38bb2bd9..b39582c4 100644
--- a/docs/fassets/guides/8-infrastructure.mdx
+++ b/docs/fassets/guides/8-infrastructure.mdx
@@ -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
{
@@ -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"
+ ]
}
}
}
@@ -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.
-
diff --git a/docs/fassets/guides/_restart_docker.mdx b/docs/fassets/guides/_restart_docker.mdx
index dfadf5eb..067b63cb 100644
--- a/docs/fassets/guides/_restart_docker.mdx
+++ b/docs/fassets/guides/_restart_docker.mdx
@@ -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
```