@xdcs-protocol/ui-kit 1.3.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,8 @@ export default function useRightPanel(): {
2
2
  xdcSupply: string | null;
3
3
  xdcSupplyRaw: number | null;
4
4
  tvlUSD: string | null;
5
+ prfiSupply: string | null;
6
+ prfiSupplyRaw: number | null;
5
7
  apys: {
6
8
  LSD_APY?: string;
7
9
  ANCHOR_APY?: string;
@@ -9,5 +11,6 @@ export default function useRightPanel(): {
9
11
  PRIVATE_APY?: string;
10
12
  PRFI_LIQUID_APY?: string;
11
13
  XDC_TO_USD_RATE?: string;
14
+ PRFI_TO_USD_RATE?: string;
12
15
  };
13
16
  };
@@ -38,6 +38,7 @@ export interface WalletStoreState {
38
38
  };
39
39
  docsUrl?: string;
40
40
  validBackendUrl: string;
41
+ prfiBackendUrl: string;
41
42
  validGraphqlUrl: string;
42
43
  isSupported: boolean;
43
44
  appType: AppType;
@@ -5,5 +5,6 @@ export declare const AppTypeEnum: {
5
5
  readonly Private: "Private";
6
6
  readonly Native: "Native";
7
7
  readonly PrFi: "PrFi";
8
+ readonly DeFi: "DeFi";
8
9
  };
9
10
  export type AppType = (typeof AppTypeEnum)[keyof typeof AppTypeEnum];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xdcs-protocol/ui-kit",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "Common React components library.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",