Skip to content

Commit 30f9d0e

Browse files
committed
fix(docs): update FAsset descriptions to prepare for DOGE launch
1 parent b2edcb3 commit 30f9d0e

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

docs/fassets/8-reference.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ import SolidityReference from "@site/src/components/DataTables/SolidityReference
4747
| **Contract** | **Address** | **Description** |
4848
| -------------------: | ------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------- |
4949
| `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. |
50-
| `FXRP` | [`0xF9a84f4ec903F4EaB117A9c1098BeC078BA7027d`](https://songbird-explorer.flare.network/address/0xF9a84f4ec903F4EaB117A9c1098BeC078BA7027d) | The FAsset-wrapped TestXRP token, ready for use on Songbird. |
50+
| `FXRP` | [`0xF9a84f4ec903F4EaB117A9c1098BeC078BA7027d`](https://songbird-explorer.flare.network/address/0xF9a84f4ec903F4EaB117A9c1098BeC078BA7027d) | The FAsset-wrapped XRP token, ready for use on Songbird. |
51+
| `FDOGE` | [`0xaa25ee3B68c515e69A463876Ab262bc4e8339030`](https://songbird-explorer.flare.network/address/0xaa25ee3B68c515e69A463876Ab262bc4e8339030) | The FAsset-wrapped DOGE token, ready for use on Songbird. |
5152
| `USDX` | [`0x4A771Cc1a39FDd8AA08B8EA51F7Fd412e73B3d2B`](https://songbird-explorer.flare.network/address/0x4A771Cc1a39FDd8AA08B8EA51F7Fd412e73B3d2B) | ERC-20 token used by FAssets. |
5253

5354
</TabItem>

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,6 @@ docker compose --profile cli run user-bot info --fasset FASSET
227227

228228
### Update the FAssets Agent
229229

230-
To restart and update the FAssets agent, run the following commands:
231-
232230
<RestartDocker />
233231

234232
## Access the Agent Frontend

docs/fassets/guides/8-infrastructure.mdx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This guide explains how to configure it to utilize your own infrastructure for e
3030

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

3535
```json
3636
{
@@ -45,6 +45,12 @@ This guide explains how to configure it to utilize your own infrastructure for e
4545
"Verifier URL",
4646
"https://fdc-verifiers-mainnet.flare.network/verifier/xrp"
4747
]
48+
},
49+
"FDOGE": {
50+
"indexerUrls": [
51+
"Verifier URL",
52+
"https://fdc-verifiers-mainnet.flare.network/verifier/doge"
53+
]
4854
}
4955
}
5056
}
@@ -73,6 +79,4 @@ This guide explains how to configure it to utilize your own infrastructure for e
7379

7480
3. Restart Docker Containers
7581

76-
After updating the configuration files, make sure to restart the Docker containers to apply the changes.
77-
7882
<RestartDocker />
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
To restart and update the FAssets agent, execute the following commands, replacing `FASSET` with the name of the FAsset (FXRP, FDOGE, or FBTC):
2+
13
```bash
24
docker compose down
35
git pull
46
docker compose pull
5-
docker compose --profile cli run agent-bot listAgents --fasset FXRP
7+
docker compose --profile cli run agent-bot listAgents --fasset FASSET
68
docker compose up -d
79
```

0 commit comments

Comments
 (0)