Skip to content

Commit 152fc6d

Browse files
committed
feat(reference-data): update asset addresses and add guides for FXRP asset manager
1 parent 1c3ce9f commit 152fc6d

File tree

2 files changed

+26
-10
lines changed

2 files changed

+26
-10
lines changed

src/components/FAssets/Reference.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,15 @@ export default function Reference() {
3535
"-"
3636
)}
3737
</td>
38-
<td>{item.description}</td>
38+
<td>
39+
{item.description}
40+
{item.guide && (
41+
<>
42+
<br />
43+
<Link to={item.guide.link}>{item.guide.title}</Link>
44+
</>
45+
)}
46+
</td>
3947
</tr>
4048
))}
4149
</tbody>
@@ -45,7 +53,7 @@ export default function Reference() {
4553

4654
return (
4755
<Tabs
48-
defaultValue="songbird"
56+
defaultValue="flare"
4957
values={[
5058
{ label: "Flare Mainnet", value: "flare" },
5159
{ label: "Flare Testnet Coston2", value: "coston2" },

src/components/FAssets/reference-data.ts

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ export const reference = [
77
coston: "AssetManagerController",
88
},
99
address: {
10-
flare: "",
11-
coston2: "0x0f575c6eC54176a5681cD5500fc770e9133b8982",
10+
flare: "0x097B93eEBe9b76f2611e1E7D9665a9d7Ff5280B3",
11+
coston2: "0x1C772F700308aF4c13897cc7b9c41EFfB82c50C0",
1212
songbird: "0x04025BBf6Be30d6cB6ad412c2958c712c6B2BCbA",
1313
coston: "0x572DeF121DC83332887E25e34aD51C2f5f40BC97",
1414
},
@@ -23,13 +23,17 @@ export const reference = [
2323
coston: "AssetManager Testnet XRP",
2424
},
2525
address: {
26-
flare: "",
27-
coston2: "0xDeD50DA9C3492Bee44560a4B35cFe0e778F41eC5",
26+
flare: "0x2a3Fe068cD92178554cabcf7c95ADf49B4B0B6A8",
27+
coston2: "0xc1Ca88b937d0b528842F95d5731ffB586f4fbDFA",
2828
songbird: "0x299d678f67e7ADD4efdf295Ebe0E92FCb4f75C4c",
2929
coston: "0x56728e46908fB6FcC5BCD2cc0c0F9BB91C3e4D34",
3030
},
3131
description:
32-
"Smart contract that can mint and burn FXRP while managing collateral and backing funds.",
32+
"Smart contract that can mint and burn FXRP while managing collateral and backing funds. Added to the Flare contracts registry.",
33+
guide: {
34+
title: "Learn how to get the FXRP asset manager address.",
35+
link: "/fassets/developer-guides/fassets-asset-manager-address-contracts-registry",
36+
},
3337
},
3438
{
3539
name: {
@@ -39,11 +43,15 @@ export const reference = [
3943
coston: "FTestXRP",
4044
},
4145
address: {
42-
flare: "",
43-
coston2: "0x8b4abA9C4BD7DD961659b02129beE20c6286e17F",
46+
flare: "0xAd552A648C74D49E10027AB8a618A3ad4901c5bE",
47+
coston2: "0x0b6A3645c240605887a5532109323A3E12273dc7",
4448
songbird: "0xF9a84f4ec903F4EaB117A9c1098BeC078BA7027d",
4549
coston: "0x36be8f2e1CC3339Cf6702CEfA69626271C36E2fd",
4650
},
47-
description: "The FAsset-wrapped XRP token, ready for use on Songbird.",
51+
description: "The FAsset-wrapped XRP token.",
52+
guide: {
53+
title: "Learn how to get the FXRP address.",
54+
link: "/fassets/developer-guides/fassets-fxrp-address",
55+
},
4856
},
4957
];

0 commit comments

Comments
 (0)