diff --git a/app/package.json b/app/package.json index a523ab8d4..3b4f91954 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "app", - "version": "2.14.21", + "version": "2.14.22", "private": true, "scripts": { "bump": "bump patch --tag --commit 'testnet release '", diff --git a/app/src/hooks/usePoolStats.ts b/app/src/hooks/usePoolStats.ts index 2de553bdb..ab9ba2d6a 100644 --- a/app/src/hooks/usePoolStats.ts +++ b/app/src/hooks/usePoolStats.ts @@ -52,6 +52,7 @@ export interface PoolStat { nativeCustody: string; nativeLiability: string; interestRate: string; + pairedApr: number; } export interface Headers { diff --git a/app/src/views/PoolPage/PoolItem.tsx b/app/src/views/PoolPage/PoolItem.tsx index a0ef668ef..8aeae9850 100644 --- a/app/src/views/PoolPage/PoolItem.tsx +++ b/app/src/views/PoolPage/PoolItem.tsx @@ -398,12 +398,25 @@ export default defineComponent({ : "..."}
+ Annualized reward rate, paid in Rowan. Rowan APR = Total rewards
+ distributed in current program / (Total blocks passed in current program
+ * Current pool balance) * (Total blocks per year)
+
+ ),
},
{
- id: "apy",
- name: "Reward APR",
+ id: "pairedApr",
+ name: "Paired APR",
class: "w-[128px] text-right justify-end whitespace-nowrap",
sortable: true,
help: (
- Pool reward APR = Total rewards distributed in current program / (Total
- blocks passed in current program * Current pool balance) * (Total blocks
- per year)
+ Annualized reward rate, paid in the paired token.
),
},
diff --git a/app/src/views/StatsPage/StatsPage.tsx b/app/src/views/StatsPage/StatsPage.tsx
index 69c8810b8..d0d46c83b 100644
--- a/app/src/views/StatsPage/StatsPage.tsx
+++ b/app/src/views/StatsPage/StatsPage.tsx
@@ -31,7 +31,7 @@ export default defineComponent({
{
name: "Token",
sortBy: "asset",
- class: "min-w-[120px] text-left",
+ class: "min-w-[170px] text-left",
ref: ref
- Pool reward APR = Total rewards distributed in current program /
- (Total blocks passed in current program * Current pool balance) *
- (Total blocks per year)
+ Annualized reward rate, paid in Rowan. Pool rowan APR = Total
+ rewards distributed in current program / (Total blocks passed in
+ current program * Current pool balance) * (Total blocks per year)
+
+ ),
+ },
+ {
+ name: "Paired APR",
+ sortBy: "pairedApr",
+ class: "min-w-[80px] text-right",
+ ref: ref
+ Annualized reward rate, paid in the paired token.
),
},
@@ -261,6 +272,9 @@ export default defineComponent({